-
zernike
利用Zernike方法对圆形标志点中心进行提取(The circular mark center is extracted by Zernike method.)
- 2018-07-09 22:40:52下载
- 积分:1
-
guangliufa
光流法是动态背景目标检测的重要方法,介绍了光流法的原理(Optical flow method is a dynamic background target detection method, introduced the principle of optical flow method)
- 2012-09-22 23:46:39下载
- 积分:1
-
hucai
水表图像识别 图像预处理 哈哈就不懂四周(Water Meter Image Recognition)
- 2019-06-19 18:27:49下载
- 积分:1
-
bear-only-tracking3
方向检测的粒子滤波程序,内含重采样算法。(The direction of the particle filter detection procedures, including re-sampling algorithm.)
- 2007-12-06 16:49:13下载
- 积分:1
-
HighlightFeatures_Object
用IDl编写的,用IDL图像处理。已调试好的程序。(Prepared using IDL with IDL image processing. Debugging process has been good.)
- 2009-03-02 15:46:54下载
- 积分:1
-
bandfilter
一个计算频率域的带通滤波器,图像处理中常用的滤波方式之一。(Computes frequency domain band filters)
- 2014-11-10 00:48:44下载
- 积分: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
-
epipolar_line
同名核线的提取,完整的c++代码,注释详细易懂,并且已经验证过(Line of the same name as the nuclear extract, complete c++ code, comments, detailed and easy to understand, and have been verified)
- 2020-07-21 18:18:45下载
- 积分:1
-
quyueshengzhang
遗传算法/大津法/区域生长法/迭代法分割图像,有详细注释,适合学习(Genetic algorithm/dajin method/area growth method/iteration method image segmentation, and have the detailed notes, suitable for learning
)
- 2012-03-30 20:37:08下载
- 积分:1
-
Segmentacion_Watershed
Watershed Segmentation
- 2016-07-25 08:59:25下载
- 积分:1