-
graycomatrix
用MATLAB编写的灰度共生矩阵程序代码(matlab gravt level co-occurence matrix)
- 2009-03-05 10:57:01下载
- 积分:1
-
OPENCV_行人流量检测
使用C++ OpenCV库进行行人检测,并且计数人流量个数(Use C++ OpenCV library for pedestrian detection and count the number of human traffic)
- 2018-09-20 12:43:08下载
- 积分:1
-
C#实现批量图片格式转换功能 源码
批量图片格式转换
- 2013-01-14下载
- 积分:1
-
Hessian
hessian矩阵在图像处理中的应用。根据图像所得函数,建立相应的hessian矩阵(hessian matrix in image processing applications. The resulting function according to the image, to establish the corresponding hessian matrix)
- 2013-05-27 18:32:40下载
- 积分:1
-
PROCESS
LabWindows /CVI 大学实验指导书,难度循序渐进,一套下来,基本操作都会了。推荐一下(LabWindows/CVI University experiment instructions, the difficulty of step-by-step, set down, the basic operation will be. You recommend)
- 2013-04-28 00:40:04下载
- 积分:1
-
ICA(1)
ICA独立分量图像特征提取,内含源程序和图片,程序完整、易懂,有很好的参考价值。(The ICA independent component image feature extraction,Contains the source program and pictures, complete, and easy to understand and have a very good reference value.
)
- 2014-03-11 09:14:40下载
- 积分:1
-
matlab
intrans matlab code special effects
- 2017-12-26 05:47:25下载
- 积分:1
-
BicubicHermiteCode
使用Visual C++编写的生成三次Hermite曲线的源代码。(Bicubic Hermite code in Visual C++.)
- 2011-01-07 18:01:47下载
- 积分: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
-
projectcalib_self
这是我们自己做的一套投影仪标定程序,反投影精度在1个象素之内(This is to do our own set of projector calibration procedures, back-projection at a pixel accuracy of)
- 2009-03-22 14:33:36下载
- 积分:1