搜索资源列表
SnakeProfile
- opencv例子里没有提供cvsnakeimage的使用方法,在此整理一个例子,可以形象的看看snake算法的结果,大致做法是: 首先设定域值分割,把基本的轮廓找出来,见图中蓝色轮廓线,再将轮廓点传入cvSnakeImage函数,计算出绿色的snake轮廓线。 其中参数alpha代表点相互靠拢的权值(0-1.0),beta表示弯曲能量(越小越容易弯曲)(0-1.0),gamma表示整体能量(0-1.0)。其中参数我自己也不确定具体的范围,最好自己更改不同的范围试试. -o
opencv2.0-lib-dll-h
- opencv2.0的.lib,.dll,.h文件。opencv2全部安装要几百mb。懒得安装的话可以直接将引用库文件。使用方法同一般的库文件引用方式。-opencv2.0' s. lib,. dll,. h file. opencv2 full installation to a few hundred mb. Too lazy to install, then you can directly reference library file. To use the same library
CxCore
- opencv的cxcore的各個函數的使用方法和解釋-opencv of cxcore use the various functions and interpretation of
OPenCVdetails
- 关于OPenCV的详细使用手册,讲述了OPenCV的使用方法。-Detailed manual on OPenCV, tells OPenCV is used.
OpenCV
- opencV教程,提供详细的opencv使用方法。并有丰富的例程代码供参考。-opencV tutorial provides detailed opencv use. And a wealth of sample code for reference.
OpenCV
- 主要介绍Opencv的基础知识,介绍了许多其中的函数使用方法和程序例子-Introduces the basics of Opencv introduced many of which function to use examples of methods and procedures
opencv
- 主要介绍了Opencv各种使用方法,可以使你迅速的学会使用OpenCV。-This code could help you to get how to use the OpenCV!
Chinese-opencv-learning
- 描述了opencv的主要用途以及其使用方法,适用于新手的教程。-Describes the main purpose of opencv and its use for novice tutorial.
OpenCV
- opencv 中文使用手册,涵盖了所有的函数使用方法,及相应的例子代码-opencv manual covers all the functions and the example code correspond to function.
cornerdectection
- 一种不错的特征点检测算法,用opencv编写,比较适合初学者,使其可以方便的了解到相关函数的使用方法。-a good method of corner dectection using opencv,good for the beginner
OpenCV-tutorial-in-MFC
- 在MFC中应用OpenCV教程,并且通过一个实例演示操作,熟悉到opencv的具体使用方法-In MFC applications OpenCV tutorial
OpenTLD
- OPENTDL算法的C++版,已使用vs2010调通,具体使用方法见工程里的readme文件-OPENTDL C++ version of the algorithm has been used vs2010 transferred through the specific use, see the readme file in the project
Multi-Camera-opencv-library
- opencv多摄象头库:支持dshow的视频采集设备,最多10个,通过回调产生24b的RGB位图。使用前请注册HYSnapshot,关于有些记录avi文件的参数,请忽略。使用方法请看demo 如果要挂接到opencv请创建一个24位的image,请一定注意将数据按行字节拷贝,-Multi-Camera opencv library: dshow video capture device supports up to 10, 24b of RGB bitmap generated by cal
testVideoInput_2
- 对于videoInput这个库在高版本的opencv2.4.3的使用方法,在前面一篇博文《高版本Opencv内置的videoInput库的使用方法》已经介绍过。博文主要介绍了如何利用videoInput库打开多个摄像头-For videoInput use this library in a higher version of opencv2.4.3 in front of the blog post " How to Use a higher version Opencv built
OpenCVdemo
- OpenCV中Harris角点检测相关的知识点 Harris角点检测的cornerHarris函数的使用方法-Harris corner detection in OpenCV related knowledge Use cornerHarris Harris corner detection function
OpenCVdemo12
- 水漫金山:OpenCV漫水填充算法(Floodfill) OpenCV填充算法中漫水填充算法相关的知识点 OpenCV中实现漫水填充算法的两个版本的floodFill函数的使用方法-The water district, OpenCV flood water filling algorithm (Floodfill) OpenCV filling algorithm in flood water filling algorithm related knowledge OpenCV
OpenCVdemo11
- OpenCV霍夫变换:霍夫线变换,霍夫圆变换合辑 OpenCV中霍夫变换相关的知识点 OpenCV中实现霍夫线变换的HoughLines、HoughLinesP函数的使用方法,实现霍夫圆变换的HoughCircles函数的使用方法-OpenCV hough transform: line hough transform, hough transform collection OpenCV hough transform in the relevant knowledge Open
harris
- VS2012+OpenCV2.4.8中实现Harris角点检测,包括cornerHarris函数的使用方法-OpenCV Harris corner detection, including the use of cornerHarris function method
hough
- vs2012+OpenCV2.4.8中关于霍夫变换的应用,包括实现霍夫圆变换的HoughCircles函数的使用方法-Application of Hof transform in vs2012+OpenCV2.4.8, using the HoughCircles function method including the circle Hough transform
Otsu方法
- opencv做的otsu方法,一、Otsu算法原理 Otsu算法(大津法或最大类间方差法)使用的是聚类的思想,把图像的灰度数按灰度级分成2个部分,使得两个部分之间的灰度值差异最大,每个部分之间的灰度差异最小,通过方差的计算来寻找一个合适的灰度级别来划分。 所以可以在二值化的时候采用otsu算法来自动选取阈值进行二值化。otsu算法被认为是图像分割中阈值选取的最佳算法,计算简单,不受图像亮度和对比度的影响。因此,使类间方差最大的分割意味着错分概率最小。 设t为设定的阈值。(otsu made