-
MATLAB 水印添加程序源代码 KJaBKJ
MATLAB可见水印、不可见水印添加程序源代码,可见水印部分采用中值法,不可见部分采用DWT变换。(MATLAB visible watermark, invisible watermark to add the source code, we can see the watermark part in value method, the invisible part on DWT.)
- 2020-06-28 09:20:02下载
- 积分:1
-
ImageProcess
26个不同影像处理程序,以VC++开发,是了解影像入门好帮手(26 different image processing procedures to VC++ Development is helpful to understand the image entry)
- 2007-12-19 10:28:27下载
- 积分:1
-
fus_segmentmain
图像分割源程序
通过融合处理,% image segmentation based on multispectral image fusion
% and morphology reconstruction watershed
% main program
(image segmentation source through fusion, % image segmentation based on multispectral im age fusion% and morphology reconstruction wat ershed% main program)
- 2007-05-31 16:38:07下载
- 积分:1
-
基于SAR回波信号模型的合成孔径雷达点目标成像仿真程序
基于SAR回波信号模型的合成孔径雷达点目标成像仿真程序,可以取得很好的电成像效果。(Synthetic aperture radar echo point target imaging simulation program.)
- 2018-10-29 10:18:32下载
- 积分:1
-
bemd
BEMD对图像进行分解
Detailed two-dimensional empirical mode decomposition (BEMD decomposition of the image)
- 2011-10-24 12:13:12下载
- 积分:1
-
histogram_balance.zip
说明: 直方图均衡化,matlab做的,大家可以下载分析,便于图象处理编程学习(histogram equalization, Matlab done, we can download analysis, image processing program to facilitate learning)
- 2006-03-03 14:49:09下载
- 积分:1
-
adpmedian
数字图像处理matlab版源码1,adpmedian.m(Matlab source code version of Digital Image Processing 1, adpmedian.m)
- 2009-12-27 19:02:59下载
- 积分:1
-
hsv1
一个颜色直方图的matlab源码,备注非常详细,可以实现(A color histogram matlab source code, notes are very detailed, can be achieved)
- 2012-11-20 17:18:24下载
- 积分:1
-
1-s2.0-S0925753510002559-main.pdf
I WANT SOURCE CODE FOR IMAGE SEGMENTATION
- 2013-07-31 14:23:59下载
- 积分: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