随笔分类 -  Computer Vision

computer vision, computer graphics, face detection, 3D reconstruction
摘要: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)
摘要:一、基础概念 1. projective transformation = homography = collineation. 2. 齐次坐标:使用N+1维坐标来表示N维坐标,例如在2D笛卡尔坐标系中加上额外变量w来形成2D齐次坐标系$(x,y) \Rightarrow (x,y,w)$ 齐次坐标 阅读全文
posted @ 2017-08-10 10:07 VincentCheng 阅读(11686) 评论(0) 推荐(0)
摘要:一、基本概念 角点corner:可以将角点看做两个边缘的交叉处,在两个方向上都有较大的变化。具体可由下图中分辨出来: 兴趣点interest point:兴趣点是图像中能够较鲁棒的检测出来的点,它不仅仅局限于角点. 也可以是灰度图像极大值或者极小值点等 二、Harris角点检测 Harris 算子是 阅读全文
posted @ 2017-07-11 17:21 VincentCheng 阅读(4885) 评论(0) 推荐(0)
摘要:一、 global descriptors and local descriptors 1. golbal descriptors: 描述的是图像的整体特征,也就是将衣服图像作为一个征集来计算特征。常见的全局描述子有:contour representation(轮廓表示), shape,textu 阅读全文
posted @ 2017-06-05 20:43 VincentCheng 阅读(1261) 评论(0) 推荐(0)