06 2018 档案

摘要:全局直方图均衡化 直方图均衡化通过调整图像的直方图来增强图像的对比度,经常使用在医学图像分析中。 例如一幅8*8图像像素值如下: 对各个像素值进行计数: 得到累计概率分布: 其中均衡化后的像素值计算公式为: 前面的标题全局直方图均衡化,代表着直方图在整个图像计算,这样会有一个缺点,图像的部分区域会显 阅读全文
posted @ 2018-06-28 20:27 VincentCheng 阅读(9611) 评论(0) 推荐(0)
摘要:Augmentor和imgaug——python图像数据增强库 Tags: ComputerVision Python 介绍两个图像增强库:Augmentor和imgaug,Augmentor使用比较简单,只有一些简单的操作。 imgaug实现的功能更多,可以对keypoint, bounding 阅读全文
posted @ 2018-06-15 11:24 VincentCheng 阅读(18984) 评论(0) 推荐(0)
摘要:Tags: Caffe Categories: Tools/Wheels 1. 将caffe训练时将屏幕输出定向到文本文件 caffe中自带可以画图的工具,在caffe路径下: ./tools/extra/parse_log.sh ./tools/extra/extract_seconds.py . 阅读全文
posted @ 2018-06-13 21:33 VincentCheng 阅读(260) 评论(0) 推荐(0)
摘要:Tags: Paper 总结几篇看过的语义分割论文,FCN, DeconvNet, SegNet, U Net,后面会再总结DeepLab的论文. [TOC] FCN Abstract 提出end to end FCN,输入arbitrary size image, 输出同样大小的label map 阅读全文
posted @ 2018-06-13 21:29 VincentCheng 阅读(739) 评论(0) 推荐(1)
摘要:Tags: ComputerVision [TOC] 编译 1. src/caffe/layers/contrastive_loss_layer.cpp:56:30: error: no matching function for call to ‘max(double, float)’ Dtype 阅读全文
posted @ 2018-06-13 20:17 VincentCheng 阅读(2274) 评论(0) 推荐(0)