全文搜索
标题搜索
全部时间
1小时内
1天内
1周内
1个月内
默认排序
按时间排序
为您找到相关结果54,840个

react-three/postprocessing库的参数中文含义使用解析_React_脚本之...

exposure={0.6} // 曝光 一个曝光系数。 clampMax={1} // 整体效果的饱和度的上限。 width={Resizer.AUTO_SIZE} // Render width. height={Resizer.AUTO_SIZE} // Render height. kernelSize={KernelSize.SMALL} // 模糊的内核大小。如果模糊功能被禁用,则没有影响。 blur={true} // 雾化效果的光照是...
www.jb51.net/article/2496...htm 2025-2-6

spring boot metrics监控指标使用教程_java_脚本之家

management.endpoints.web.exposure.include=prometheus 开启服务后,会暴露/actuator/prometheus 端点接口服务。 在浏览器中,输入http://localhost:8080/actuator/prometheus 。可以看到内置的指标收集器收集到的监控指标 三、独立的web服务 默认情况下,/actuator/prometheus端点服务跟随应用的web容器一起发布,但是当我们的web...
www.jb51.net/article/2382...htm 2025-1-27

浅析Java 反射机制的用途和缺点_java_脚本之家

内部暴露 Exposure of Internals Since reflection allows code to perform operations that would be illegal in non-reflective code, such as accessing private fields and methods, the use of reflection can result in unexpected side-effects, which may render code dysfunctional and may destroy portability. ...
www.jb51.net/article/1442...htm 2025-1-19

Springboot事件和bean生命周期执行机制实例详解_java_脚本之家

if (earlySingletonExposure) { if (logger.isTraceEnabled()) { logger.trace("Eagerly caching bean '" + beanName + "' to allow for resolving potential circular references"); } addSingletonFactory(beanName, () -> getEarlyBeanReference(beanName, mbd, bean)); } // Initialize the bean instanc...
www.jb51.net/article/2791...htm 2025-2-3

重构与模式 PDF扫描版[27MB] 电子书 下载-脚本之家

4.5 不恰当的暴露(Indecent Exposure) 4.6 解决方案蔓延(Solution Sprawl) 4.7 异曲同工的类(Alternative Classes with DifferentInterfaces) 4.8 冗赘类(Lazy Class) 4.9 过大的类(Large Class) 4.10 分支语句(Switch Statement) 4.11 组合爆炸(Combinatorial Explosion) ...
www.jb51.net/books/3477...html 2025-2-9

Spring中的Actuator使用详解_java_脚本之家

management.endpoints.jmx.exposure.include=* management.endpoints.jmx.exposure.exclude= management.endpoints.web.exposure.include=* management.endpoints.web.exposure.exclude=env,beans 可以通过注解的方式来添加自定义的 Endpoint: @Endpoint @ReadOperation @WriteOperatino @DeleteOperation 例如: 1 2 3 4 5 6...
www.jb51.net/program/297972d...htm 2025-2-9

python数据处理 根据颜色对图片进行分类的方法_python_脚本之家

fromskimageimportexposure#调用调对比度的方法 rescale_intensity、equalize_hist fromskimage.filtersimportgaussian#高斯 fromskimageimportimg_as_float#图片unit8类型到float fromscipy.cluster.vqimportkmeans,vq,whiten#聚类算法 importshutil#文件夹内容删除
www.jb51.net/article/1523...htm 2025-2-9

Spring三级缓存思想解决循环依赖总结分析_java_脚本之家

booleanearlySingletonExposure = (mbd.isSingleton() &&this.allowCircularReferences && isSingletonCurrentlyInCreation(beanName)); if(earlySingletonExposure) { // 添加三级缓存的方法详情在下方 addSingletonFactory(beanName, () -> getEarlyBeanReference(beanName, mbd, bean)); ...
www.jb51.net/program/296631b...htm 2025-2-9

Python中OpenCV Tutorials 20 高动态范围成像的实现步骤_python_脚本之...

defloadExposureSeq(path): images=[] times=[] withopen(os.path.join(path,'list.txt')) as f: content=f.readlines() forlineincontent: tokens=line.split() images.append(cv.imread(os.path.join(path, tokens[0]))) # 便于之后的逆CRF操作 ...
www.jb51.net/article/2518...htm 2025-2-9

python数字图像处理环境安装与配置过程示例_python_脚本之家

因此,我们这里使用python这个脚本语言来进行数字图像处理。 要使用python,必须先安装python,一般是2.7版本以上,不管是在windows系统,还是linux系统,安装都是非常简单的。 要使用python进行各种开发和科学计算,还需要安装对应的包。这和matlab非常相似,只是matlab里面叫工具箱(toolbox),而python里面叫库或包。基于python脚本...
www.jb51.net/article/2533...htm 2025-2-8