-
VCmeanshift
自己毕业设计做的改进的基于某vc视频处理框架代码的重心多目标跟踪代码(The center of gravity of a vc video processing framework code-based target tracking code own graduation design improvements do)
- 2013-01-23 09:50:30下载
- 积分:1
-
yuyanjiaozheng
实现对鱼眼图像的校正 我自己执行过 可以使用(it can realise the rectification of the fish eye image )
- 2010-06-04 17:26:26下载
- 积分:1
-
zengqiang
图像增强里的小程序,有中值滤波,平滑处理还有频域增强(Image Enhancement in the small procedures, median filtering, smoothing also enhanced the frequency domain)
- 2010-06-15 20:54:02下载
- 积分:1
-
VC-PH
球面坐标定位法校正鱼眼图像畸变,使用visual studio 2008 编写,需要OpenCV的支持(Spherical coordinates locating fish eye image distortion correction, prepared using visual studio 2008, requires the support of OpenCV)
- 2010-05-15 11:42:48下载
- 积分:1
-
binocular_stereo_measuring
通过两台相机拍摄的立体像对完成对目标的快速实时测量,用于构建道路交通等数据快速采集系统。(Through two three-dimensional camera for the completion of the goal as fast real-time measurement, used to build road traffic, such as rapid data acquisition system.)
- 2007-09-27 22:36:56下载
- 积分:1
-
Otsu image processing
说明: 利用大津算法对图片进行处理,得到满意的处理效果。(The image is processed by Otsu algorithm and satisfactory results are obtained.)
- 2019-04-12 15:45:15下载
- 积分:1
-
lane-detect
canny边缘检测,还有车道线检测。效果还可以。(canny edge detection, and lane detection. The effect can be.)
- 2014-01-14 16:44:00下载
- 积分:1
-
PCA
主成分分析PCA源代码(C++,matlab)主成分分析PCA源代码(C++,matlab)(Principal Component Analysis PCA source code (C++, Matlab), principal component analysis PCA source code (C++, Matlab))
- 2012-05-31 15:03:39下载
- 积分:1
-
chenggongchengxu
rgb to HSV,很有用,调试成功,可以应用(rgb to HSV,#include "stdafx.h"
#include <iostream.h>
void main(float R, float G, float B, float& H, float& S, float&V)
{
// r,g,b values are from 0 to 1
// h = [0,360], s = [0,1], v = [0,1]
// if s == 0, then h =-1 (undefined)
float min, max, delta,tmp
tmp = R>G?G:R
min = tmp>B?B:tmp
tmp = R>G?R:G
max = tmp>B?tmp:B
V = max // v
delta = max- min
if( max != 0 )
S = delta/max // s
else
{
// r = g = b = 0 // s = 0, v is undefined
S = 0
H = 0
return
}
if (delta == 0){
H = 0
return
}
else if(R == max){
if (G >= B)
H = (G- B)/delta // between yellow & magenta
else
H = (G- B)/delta+ 6
}
else if( G == max )
H = 2+ ( B- R )/delta // between cyan & yellow
else if (B == ma)
- 2011-12-02 10:09:24下载
- 积分:1
-
BIAODING
RAC法标定程序,适用于单目摄像机的线结构光的标定(The RAC calibration method procedure applies to line structured light calibration)
- 2012-10-11 21:38:13下载
- 积分:1