-
bp
说明: bp神经网络在图像压缩中的应用源代码,欢迎下载。(bp neural network in image compression source code, welcome to download.)
- 2008-09-09 15:55:08下载
- 积分:1
-
SuperResolution
图像的超分辨率重建,比利用了三次插值好,matlab代码,初学者(Image super-resolution reconstruction, than the use of three interpolation is good, matlab code, beginners)
- 2017-06-16 10:11:45下载
- 积分: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
-
sandian
ENVI制作散点图可以更改背景颜色 可以显示出R方比以前版本更精细(ENVI make a scatter plot can change the background color can show the R side finer than the previous version)
- 2014-05-26 20:02:18下载
- 积分:1
-
ART2
迭代CT重建血管,希望对大家能够有所帮助(Iterative CT reconstruction of blood vessels, we want to be able to help)
- 2011-10-13 10:51:10下载
- 积分:1
-
work
读取avi视频,并进行帧间差分法运算,检测运动目标(Read the avi video, and make inter-frame difference method for computing, moving target detection)
- 2009-09-28 17:18:01下载
- 积分:1
-
object-detect-and-recogonise
以混合高斯模型为基础,利用背景差分法获得目标图像并有阴影检测的方法进行目标检测(The Gaussian mixture model based on the use of the background difference method to obtain the target image and a shadow detection method for target detection)
- 2012-01-09 18:31:06下载
- 积分:1
-
SIRC_convert_MLC_C3
说明: SAR影像单视数据转为多视数据,数据间相互转化,快捷处理SAR数据(Single-look SAR image data into a more visual data, data inter-conversion, fast processing SAR data)
- 2008-09-19 20:29:08下载
- 积分:1
-
plsda
说明: matlab近红外光谱进行掺假判断,运用plsda建模可以进行真假鉴别(The near infrared spectrum of MATLAB is used to judge the adulteration, and plsda modeling can be used to identify the authenticity)
- 2020-12-29 20:19:01下载
- 积分:1
-
图像去噪
灰度图像简单的去噪方法;MATLAB实现模板操作的方法;空域滤波中常用的平滑滤波器;利用MATLAB程序进行图像去噪。(Simple grayscale image denoising)
- 2018-05-12 11:23:58下载
- 积分:1