-
diffration
超高斯光束在自由空间中的衍射传播,利用角谱理论。(Super-Gaussian beam diffraction propagation in free space, the use of the angular spectrum theory.)
- 2014-05-25 22:18:33下载
- 积分:1
-
RGB颜色选择器
RGB 颜色选择器,可以自由选择颜色,也可以用吸管吸取屏幕颜色色值,便于程序员们开发(RGB color picker, you can choose colors freely, or you can suck the color value of the screen with a straw, which is easy for programmers to develop)
- 2017-06-24 12:30:48下载
- 积分:1
-
untitled
图像倒频谱生成并分析,可以用于运动模糊图像的PSF参数估计(Cepstrum image generation and analysis, can be used for motion-blurred image PSF parameter estimation)
- 2021-02-04 17:59:57下载
- 积分:1
-
SimpleGrab
图像处理C程序,利用CCD捕获图像,通过网络接口传输到电脑中。(Image processing C )
- 2012-12-03 09:32:53下载
- 积分: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
-
laplace
说明: 本代码采用的是opencv,有视频采集和对采集的视频帧进行laplace处理的功能!(This code uses a opencv, with video capture and the capture of video frames laplace processing capabilities!)
- 2009-08-24 09:50:35下载
- 积分:1
-
图像配准C++版
图像配准C++版
- 2020-11-30下载
- 积分:1
-
SRCNN-Tensorflow
SRCNN Superresolution imteplated by tensorflow SRCNN tensorflow 实现(SRCNN Superresolution imteplated by tensorflow)
- 2020-11-28 11:19:30下载
- 积分:1
-
jpeg2k
说明: JPEG2000 的一个实现,期中,wavelet.dll是提供的功能接口。(An implementation of JPEG2000, period, wavelet.dll is to provide a functional interface.)
- 2010-05-04 17:00:01下载
- 积分:1
-
ImageWarping实验报告
用matlab实现图像变形的实验实例,采用idw 和 rbf 算法(imagewarping using idw&rbf algorithms in matlab)
- 2017-08-01 15:48:28下载
- 积分:1