-
doublemeter
圆形图表的处理,包括大圆套小圆,双指针,针对设计仪表的初学者很有帮助(Treatment of circular charts, including the great circle sets of small round, double pointer, very helpful for beginners instrument design)
- 2010-12-26 13:56:03下载
- 积分: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
-
fuliyebianhuan
能够成功实现傅里叶变换,包括32点 64点 128点 256点 512点 1024点。(Fourier transform can be successfully achieved, including 32 points 64 points 128 points 256 points 512 points 1024 points.)
- 2013-05-31 19:57:28下载
- 积分:1
-
MRF2.0
说明: 在VC++下基于MRF来进行的图像分割源代码(In VC++ For MRF-based image segmentation source code)
- 2008-08-29 14:43:10下载
- 积分:1
-
Computergraphics
英文原本经典计算机图形学教程,PPT格式,很好的学习材料和上课资料(English was the classic computer graphics course, PPT format, good learning materials and school information)
- 2009-06-05 19:45:22下载
- 积分:1
-
基于opencv的Kinect深度图像的去噪,滤波
基于opencv的Kinect深度图像的去噪,滤波(Opencv based Kinect depth image denoising, filtering)
- 2021-03-23 08:59:15下载
- 积分:1
-
aaadfsdlkfjsdklf2008
基于SIFT特征的遥感影像自动配准.rar (SIFT-based remote sensing image characteristics of automatic registration. Rar)
- 2008-06-21 19:50:00下载
- 积分:1
-
FKFilter
FK滤波分析,设计窗口!!!!!!!!!!!(FK filtering analysis, design window! ! ! ! ! ! ! ! ! ! !)
- 2013-01-21 20:24:37下载
- 积分:1
-
CS
说明: SAR-CS成像算法实现,包含运动补偿,速度估计,对0.15m实测数据成过像(SAR-CS imaging algorithms, including motion compensation, the estimated speed of 0.15m measured data into a cross as)
- 2008-02-27 20:27:10下载
- 积分:1
-
Huffman
完成流程编码和huffman编码,适合做图像编码的熵编码,只要调整接口就好。(Complete the process encoding and huffman coding, image coding suitable for entropy coding, as long as the adjustment of the interface is like.)
- 2010-12-24 12:00:13下载
- 积分:1