-
BWLabel
二值图像连通域分析,和MATLAB中bwlabel函数功能相似(Connected domain analysis of binary image, and bwlabel similar function in MATLAB)
- 2015-07-27 16:35:25下载
- 积分:1
-
Daima
遥感图像处理源代码,包括遥感影像读入、几何校正、影像重采样等等(Remote sensing image processing code)
- 2020-08-11 16:28:30下载
- 积分:1
-
DCT
该函数用来实现快速离散余弦变换。该函数利用2N点的快速付立叶变换来实现离散余弦变换(This function is used to implement fast discrete cosine transform. 2N points of the function using the fast Fourier transform to achieve the discrete cosine transform)
- 2010-11-15 09:53:27下载
- 积分:1
-
lane-detect
canny边缘检测,还有车道线检测。效果还可以。(canny edge detection, and lane detection. The effect can be.)
- 2014-01-14 16:44:00下载
- 积分:1
-
FillRegion
填充区域图像,设置填充区域,填出图像的颜色(Filled regional images, set fill area, fill in the color of the image)
- 2009-01-18 22:45:33下载
- 积分:1
-
SingleCalibrate
基于opencv的相机单目标定程序,很好的学习资源,做图像矫正的可以看看~(Opencv based on a single target of the camera program)
- 2015-05-06 13:53:42下载
- 积分:1
-
CCD-
采用National Instruments 视觉算法库,雷赛运动控制卡,映美精相机 检测手机LOG(Using National Instruments vision algorithms library, Lemire motion control card, Imaging camera detects the phone LOG)
- 2015-03-25 14:49:56下载
- 积分: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
-
ship
船舶数据处理程序,可以实现船舶任意运动姿态的数据,描绘运动轨迹,从而分析船舶运动姿态(ship data extraction)
- 2020-08-31 19:28:11下载
- 积分:1
-
Watershed-16
分水岭算法的实现,能自动对图像进行分割,任何图像都能够读取(Watershed algorithm, can automatically split the image)
- 2010-07-19 15:33:21下载
- 积分:1