
计算机视觉
still_learning
爱摄影的AI老博士 | 近年死磕数字人ing……
个人主页:https://yiyuzhuang.github.io/home/
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
visdom js报错修复
错误类型: Failed to load resource: the server responded with a status of 404 (Not Found) glyphicons-halflings-regular.woff:1 Failed to load resource: the server responded with a status of 404 (Not Found) glyphicons-halflings-regular.ttf:1 Failed to load resour原创 2021-06-01 16:40:25 · 881 阅读 · 1 评论 -
opencv histograms-直方图
内容: 计算直方图 画出直方图 学习几个函数cv.calcHist(), np.histogram(), etc 理论 直方图即使统计各个像素值频数的统计图。具体可以百度。 名词解析: BINS: 可以认为这是每个段的像素值的个数,比如设置16,则分别统计的是 0 to 15, then 16 to 31, …, 240 to 255.频数。默认是1。 DIMS:表示的是数据的维度。默认为1。 RANGE:表示的是要统计的强度值的范围。 其他函数 ravel()表示将图片摊平,变成一维的 1.计翻译 2020-06-05 12:00:26 · 463 阅读 · 0 评论