ExplanationCreate a visualization window.Show coordinate axes in the window using CoordinateSystemWidget.Display a line representing the axis (1,1,1)....
分类:
其他好文 时间:
2014-11-28 16:13:50
阅读次数:
167
ExplanationExtend Widget3D class to create a new 3D widget.Assign a VTK actor to the widget.Set color of the widget.Construct a triangle widget and di...
分类:
其他好文 时间:
2014-11-28 16:13:07
阅读次数:
185
将关于人类视网膜的发现应用于图像处理 ~spectral whitening 频谱白化 that has 3 important effects: high spatio-temporal frequency signals canceling (noise), mid-frequencies de...
分类:
其他好文 时间:
2014-11-28 16:11:39
阅读次数:
180
ExplanationCreate a window.Start event loop. This event loop will run until user terminates it by pressing e, E, q, Q.Access same window via its name....
分类:
其他好文 时间:
2014-11-28 16:04:41
阅读次数:
140
ExplanationCreate a visualization window.Get camera pose from camera position, camera focal point and y direction.Obtain transform matrix knowing the ...
分类:
其他好文 时间:
2014-11-28 15:53:14
阅读次数:
217
与上一篇类似 ~~ 只不过是非线性数据 #include "stdafx.h" #include #include #include #include #define NTRAINING_SAMPLES 100 // Number of training samples per class
#def...
分类:
系统相关 时间:
2014-11-27 22:01:20
阅读次数:
305
一、(1) 浅拷贝: Mat B; B = image // 第一种方式 Mat C(image); // 第二种方式这两种方式称为浅copy,是由于它们有不同的矩阵头,但是它们共享内存空间,即指向一个矩阵。当图像矩阵发生变化时,两者相关联,都会变化。(2)深拷贝Mat B,C; B = image...
分类:
其他好文 时间:
2014-11-27 22:01:20
阅读次数:
544
卷积其实是图像处理中最基本的操作,我们常见的一些算法比如:均值模糊、高斯模糊、锐化、Sobel、拉普拉斯、prewitt边缘检测等等一些和领域相关的算法,都可以通过卷积算法实现。只不过由于这些算法的卷积矩阵的特殊性,一般不会直接实现它,而是通过一些优化的手段让计算量变小。但是有些情况下卷积矩阵...
分类:
其他好文 时间:
2014-11-27 22:00:06
阅读次数:
483
卷积其实是图像处理中最基本的操作,我们常见的一些算法比如:均值模糊、高斯模糊、锐化、Sobel、拉普拉斯、prewitt边缘检测等等一些和领域相关的算法,都可以通过卷积算法实现。...
分类:
其他好文 时间:
2014-11-27 18:32:01
阅读次数:
219
原理是很简单的, 在OpenCV实现的是R-HOG, 即对图像img->窗口window->块block->细胞单元cell进行向量统计
首先看描述器的构造函数, 我用
HOGDescriptor *desc=new HOGDescriptor(cvSize(40,80),cvSize(10,20),cvSize(5,10),cvSize(5,5),9);
进行测...
分类:
其他好文 时间:
2014-11-27 18:24:56
阅读次数:
220