-
DMC2C80-V1.1
VC development motion control routines, vb development 12 axis motion control routines
- 2013-12-08 21:55:18下载
- 积分:1
-
MedianFilterSmooth
图形图像处理中的平滑处理,可以实现部分的功能,但是还可以继续完善(Graphic image processing smoothing, can achieve some of the functions, but can also continue to improve)
- 2008-06-25 00:14:41下载
- 积分:1
-
zhifangtu
显示BMP图片,并绘制直方图。程序无误,可运行。(Display BMP image, and draw the histogram. Program is correct, you can run.)
- 2011-05-17 08:49:37下载
- 积分:1
-
VCPP-image-processing-chapter05
VisualC++数字图像处理技术详解第2版光盘-第五章(VisualC++ digital image processing technology Detailed Version 2 CD- Chapter V)
- 2016-04-16 13:33:13下载
- 积分: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
-
chaffresearchechnology
箔条干扰的特性与雷达抗箔条技术研究,对雷达制导导引头的干扰技术进行系统研究(Characteristics of the anti-radar chaff and chaff research technology, the interference radar guidance seeker system research)
- 2015-07-14 01:08:07下载
- 积分:1
-
jpeg无失真压缩源代码jpeg_lossless
jpeg无失真压缩源代码(jpeg lossless compression source code)
- 2020-07-09 14:18:55下载
- 积分:1
-
Three-dimensional-algorithm
关于MC三维重建算法的二义性消除的文章,很好的消除了MC算法中的二义性(it s the article about Three-dimensional reconstruction algorithm to eliminate ambiguity in MC)
- 2014-01-17 13:19:26下载
- 积分:1
-
HALCON_CIRCLE
一个简单的HALCON计算圆心坐标的例子,C++代码格式,初学者适用!(A simple example of calculating coordinates HALCON, c++ code format, for beginners!)
- 2021-03-23 10:19:15下载
- 积分:1
-
star
C#处理数字图像集锦,有图像旋转、平移等变换,有图像编码,有图像解码,有数字图像处理那本书里的各种算法(C# processing the digital image gallery, image rotation, translation, transformation, and image coding, image decoding, digital image processing various algorithms in the book)
- 2012-06-12 07:54:36下载
- 积分:1