支持向量机 ~~ How is the optimal hyperplane computed? Let’s introduce the notation used to define formally a hyperplane: where is known as the weight vecto...
分类:
系统相关 时间:
2014-11-27 18:05:24
阅读次数:
322
卷积其实是图像处理中最基本的操作,我们常见的一些算法比如:均值模糊、高斯模糊、锐化、Sobel、拉普拉斯、prewitt边缘检测等等一些和领域相关的算法,都可以通过卷积算法实现,本文则重点描述了任意卷积核的快速实现。
分类:
其他好文 时间:
2014-11-27 18:03:30
阅读次数:
306
>__ 2 #include 3 #include 4 5 using namespace cv; 6 using namespace std; 7 8 int main(){ 9 cv::Mat image = cv::imread("fruits.jpg");10 cv:...
分类:
其他好文 时间:
2014-11-27 17:57:57
阅读次数:
291
1、声明一个表示图像的变量,在OpenCV2中,这个变量是CV::Mat类型 cv::Mat image; //这句话将创建一个宽高都为0的图像;通过调用cv::Mat 的size()方法可以获取该图像的尺寸,该方法的返回值是一个结构体,包含着宽度和高度;std::cout<<"size:"<...
分类:
其他好文 时间:
2014-11-27 15:47:43
阅读次数:
230
Haar Feature-based Cascade Classifier for Object Detection First, a classifier (namely a cascade of boosted classifiers working with haar-like feature...
分类:
其他好文 时间:
2014-11-27 12:38:11
阅读次数:
548
图像处理中经常遇到使用当前像素邻的像素来计算当前像素位置的某些属性值,这样就会导致边界像素处越界访问,一般有两种方法解决这种问题:只对不越界的像素进行处理;对图像边界进行拓展,本文主要介绍如何使用OpenCV简单的对边界进行拓展。...
分类:
其他好文 时间:
2014-11-27 10:47:56
阅读次数:
503
这篇教程其实是上一篇的总结 ,利用 features2d 和 calib3d 模块来发掘场景中的物体 ~~ 1, Create a new console project. Read two input images. Mat img1 = imread(argv[1], CV_LOAD_IMAGE...
分类:
其他好文 时间:
2014-11-27 10:33:36
阅读次数:
215
通过特征检测和单应性匹配来发掘已知物体 ~~ Use the function findHomography to find the transform between matched keypoints. Use the function perspectiveTransform to map t...
分类:
其他好文 时间:
2014-11-27 09:10:48
阅读次数:
399
Extractors of keypoint descriptors in OpenCV have wrappers with a common interface that enables you to easily switch between different algorithms solv...
分类:
其他好文 时间:
2014-11-26 22:31:38
阅读次数:
730
FeatureDetector::detect Detects keypoints in an image (first variant) or image set (second variant). FeatureDetector::create The following detector ty...
分类:
其他好文 时间:
2014-11-26 22:16:39
阅读次数:
190