计算机视觉讨论群162501053
转载请注明:http://blog.csdn.net/abcd1992719g/article/details/26824529
关于角点检测,我写过两篇文章
openCV2马拉松第19圈——Harris角点检测(自己实现)
OpenCV2马拉松第21圈——形态学操作实现角点检测
有兴趣的童鞋可以去看看~~~...
分类:
其他好文 时间:
2014-06-20 13:39:39
阅读次数:
212
OpenCV Machine Learning 之 K最近邻分类器的应用
{CSDN:CODE:376557}...
分类:
其他好文 时间:
2014-06-20 13:12:23
阅读次数:
177
1.类定义
在ml.hpp中有以下类定义:
[cpp] view
plaincopyprint?
class CV_EXPORTS_W CvNormalBayesClassifier : public CvStatModel
{
public:
CV_WRAP CvNormalBayesClassifier();...
分类:
其他好文 时间:
2014-06-20 12:56:27
阅读次数:
202
《学习opencv》笔记——矩阵和图像操作——cvDet,cvDit,cvDotProduct,cvEigenVV and cvFlip...
分类:
其他好文 时间:
2014-06-20 12:06:14
阅读次数:
247
K-Nearest Neighbors
The algorithm caches all training samples and predicts the response for a new sample by analyzing a certain number (K) of the nearest neighbors of the sample using voting, calcu...
分类:
其他好文 时间:
2014-06-20 11:51:33
阅读次数:
337
《学习opencv》笔记——矩阵和图像操作——cvGEMM,cvGetCol,cvGetCols and cvGetDiag...
分类:
其他好文 时间:
2014-06-20 09:04:24
阅读次数:
322
《学习opencv》笔记——矩阵和图像操作——cvCrossProduct and cvCvtColor...
分类:
其他好文 时间:
2014-06-07 16:17:27
阅读次数:
455
var age=100
//如果年龄不大于50的就会在这里断言,和之前的OC一样的
assert(age>50,"age must >50")
//可以用a..b标识a到b之间的范围,
//我们循环打印五次hello World
var helloWorld="hello world"
for i in 0..5
{
//这个循环的i从0开始到4结束,是不包括范围的最后一个的。
...
分类:
其他好文 时间:
2014-06-07 14:52:38
阅读次数:
218
1 package chap02; 2 3 import static
org.junit.Assert.*; 4 5 import java.util.Arrays; 6 7 import org.junit.Test; 8 9
public class ques2_4...
分类:
其他好文 时间:
2014-06-07 10:46:08
阅读次数:
274
情况是这样的,我在写一个类似于Online-Judge的系统,用python很容易实现,编译源程序,运行程序,最后比较程序输出与标准输出得出成绩。现在有个问题,万一程序运行时崩溃,比如出现除0异常,assert失败等等,则在windows下会出现恼人的crash
window。我想要避免它,因为我一...
分类:
其他好文 时间:
2014-06-07 07:11:28
阅读次数:
253