-
junhengzengqiangsufan
强化细节的自适应直方图均衡化,分块的算法,可以自动调节窗口大小进行局部增强。()
- 2008-05-03 09:10:32下载
- 积分:1
-
coderesult
图像修复中基于一幅图像的改进的Criminisi方法的近,算法的时间大大提高,修改效果也不错。(Time based on the improved image Criminisi near algorithm greatly improve image repair, modify the effect is also good.)
- 2021-03-20 17:59:18下载
- 积分:1
-
tuxiangfenge
利用最大类间方差算法求取自动阈值,实现图像分割(Using the maximum inter class variance algorithm for automatic threshold, image segmentation)
- 2015-06-01 19:57:07下载
- 积分:1
-
matlab编程技术将灰度图像归一
利用matlab编程技术将灰度图像归一化到0-255范围内(Normalize the image to 0-255)
- 2020-06-28 10:40:02下载
- 积分: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
-
shutu1
说明: (1)图像基本操作:不同格式(大于3种)图像的读入与存盘、文字叠加、不同彩色空间的转换、图像的DCT及FFT变换等;
(2)图像增强:包括直方图拉升(线性和非线性)、直方图均衡、平滑与锐化(采用不同的滤镜),美颜(加分项);
(3)图像恢复:几何操作(如旋转、缩放、投影校正等)、模糊恢复(如运动模糊消除等,加分项);
(4)图像合成(加分项):实现换头、换背景、图像拼接等功能。((1) Basic operation of image: reading and saving of images in different formats (more than 3 kinds), text superposition, conversion of different color spaces, DCT and FFT transformation of images, etc;
(2) Image enhancement: including histogram lifting (linear and non-linear), histogram equalization, smoothing and sharpening (using different filters), beauty (bonus item);
(3) Image restoration: geometric operations (such as rotation, scaling, projection correction, etc.), blur restoration (such as motion blur elimination, etc., plus points);
(4) Image synthesis (Bonus): realize the functions of head changing, background changing, image splicing, etc.)
- 2020-03-19 11:47:30下载
- 积分:1
-
alpha-stable-programma
alpha稳定分布,密度函数图形,这较少出现。(alpha-stable distribution,picture of pdf,it s very rare)
- 2021-03-26 11:29:13下载
- 积分:1
-
INSARjiechanchao
INSAR相位解缠绕程序,matlab编的(INSAR phase unwrapping procedures, matlab series)
- 2012-10-29 10:03:05下载
- 积分:1
-
Harris
著名的角点提取算子Harris算子
非常牛!(Well-known corner extraction operator operator very cattle Harris!)
- 2008-03-23 12:30:32下载
- 积分:1
-
image_segment
Random Walker图像分割Matlab源代码,需要安装图形分析工具箱,地址http://eslab.bu.edu/software/graphanalysis/,给出了一个应用例子。(Random Walker Image Segmentation Matlab source code, need to install the graphical analysis toolbox, address http://eslab.bu.edu/software/graphanalysis/, gives an application example.)
- 2010-02-28 00:47:44下载
- 积分:1