-
DyBMPMovie
实现“动态”的位图动画,VC++经典编程学习源码,很好的参考资料。(The realization of "dynamic" bitmap animation, VC++ classic learning programming source code, a good reference.)
- 2013-11-25 12:37:28下载
- 积分:1
-
eyeball-detection-in-video
随着视频的播放进行眼球追踪,如果眼镜反光会影响正确率(eyeball tracking in video
p.s. note that the reflection of glasses may influence the performance)
- 2013-08-02 19:33:12下载
- 积分:1
-
jushuSAR
在分析聚束合成孔径雷j盘(SAR)方位向时频关系的基础上,提出了一种新的全孔径分辨率SAR成像算法。
根据SAR在条带与聚束模式下回波信号之间的差别,利用现有成熟的条带SAR成像算法实现先对聚束SAR各方位向子
孔径成像,而后再将各方位子孔径带宽合成为全孔径带宽,以形成具有全孔径分辨率的SAR图像,极大降低了系统PRF
的要求。(In the analysis of spotlight synthetic aperture radar dish j (SAR) azimuth based on the time-frequency relationship, a new full-aperture resolution SAR imaging algorithm. According to SAR in strip and spotlight mode, the difference between the echo signal, the use of existing mature band SAR imaging algorithm first bit of the spotlight SAR the parties to the sub-aperture imaging, and then place then all the bandwidth synthetic aperture the bandwidth for the full aperture to form a full aperture resolution SAR images, greatly reducing the system PRF requirements.)
- 2010-07-07 14:03:19下载
- 积分:1
-
paint
对于vc++中经典的画线画图示例程序.对于类的控制和画线算法的实现.代码简洁明了(For vc++ in a classic example of procedures for drawing a line drawing. The type of control and painting line algorithm. Concise code)
- 2009-04-13 21:09:16下载
- 积分:1
-
VCPP-image-processing-chapter10
VisualC++数字图像处理技术详解第2版光盘,第十章(VisualC++ digital image processing technology Detailed Version 2 discs, Chapter X)
- 2016-04-16 14:01:27下载
- 积分:1
-
bilateralFilter
说明: 平台基于visual studio2015,使用opencv函数实现双边滤波,进行图像处理(bilateral Filter based on opencv)
- 2020-06-20 05:00:01下载
- 积分:1
-
SELF-READING-SYSTEM
针对万工显螺旋显微镜视场图像特点,编写了Matlab 语言的图像处理算法用于万工显自动读数( The program which is developed by MATLAB language can be used for auto-reading of universal tools
microscope measurement result)
- 2011-11-21 16:26:02下载
- 积分:1
-
xiaobo
结合维纳滤波的小波降噪方法,滤波效果很好(Combination of Wiener filtering of wavelet noise reduction method, filter works well)
- 2009-10-24 13:59:40下载
- 积分:1
-
ImgZoom
OPENCV做图像变形的经典代码啊,适合比较初级的同学看看(OPENCV do image warping the classic code ah, suitable for elementary students to see more)
- 2009-12-02 20:06: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