-
code
本代码是基于MATLAB环境下的一种基于DWT的数字水印的嵌入与提取,本算法对各种噪声具有一定的抗鲁棒性。(The code is based on the MATLAB environment based DWT digital watermark embedding and extraction, the algorithm has certain anti robustness of various noise.)
- 2021-04-05 12:49:03下载
- 积分:1
-
path
对图像进行高通滤波和低通滤波处理,包括图片和测试程序。(High-pass filter the image and low-pass filter, including pictures and test procedures.)
- 2011-09-28 10:28:30下载
- 积分: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
-
get_file_icon
vc获取指定文件的图标的程序源码,希望对大家有所帮助(vc for the specified source file' s icon in the program, we hope to help)
- 2011-06-05 22:26:56下载
- 积分:1
-
pi-pei-gen_zong
有关目标的匹配跟踪代码,简单易懂,里面含有丰富的测试图片,和最终的测试效果图(The target matching tracking code, easy to understand, which contains a wealth of test images, and the final test renderings)
- 2013-12-04 12:44:04下载
- 积分:1
-
fenge
图像分割的matlab程序,以及其他的一些程序。希望能对大家有用,如有错误请谅解。(Matlab image segmentation procedures and other procedures. We hope that it can be useful if there is an error, please understanding.)
- 2009-05-21 08:17:14下载
- 积分:1
-
bmpLoader--STL
VTK读取BMP序列图片实现MC算法面绘制,并且将绘制结果保存为STL格式。(VTK read BMP image sequences to achieve MC surface rendering algorithm, and the results will be drawn saved as STL format.)
- 2021-03-12 08:29:25下载
- 积分:1
-
FreeImage380Chinese
一个自由、开源的图形库--FreeImage3.92最新版的中文参考(支持位图构件―例如调色板和数据位―的便易访问;将位图从一种位深度转换到另一种位深度;当有多幅位图页―例如TIFF―时访问位图的不同页;基本的位图处理,如旋转、翻转(flipping)和重采样,或点操作,如亮度和对比度调整;Alpha混合与合成(Compositing and blending);FreeImage不支持:高级图象处理操作,如回卷(Convolution)和变换(Transform);位图绘制; 矢量图形。)(a free, revenue graphics library-- the latest version FreeImage3 .92 reference to the Chinese (support bitmap elements- such as transfer shade and data spaces- the easy access; will be from a bitmap-depth conversion to another kind of depth; When a number of bitmap page- such as TIFF- Bitmap to visit the different pages; basic bitmap processing, such as rotation, Upset (flipping) and resampling, or point operations, such as brightness and contrast adjustments; Alpha mixed with the synthetic (Compositing and blending); FreeImage not support : Advanced image processing operation, If the response (Convolution) and transform (Transform); bitmap rendering; Vector graphics.))
- 2007-02-12 14:25:21下载
- 积分:1
-
GRABCUT
matlab与C++混编的grabcut分割程序,只需画框即可提取目标(grabcut algorithm)
- 2020-11-25 23:39:32下载
- 积分:1
-
VQ-in-wavelet-domain
图像压缩相关代码,基于小波域的矢量量化算法实现图像编码功能(Image compression code image coding, wavelet-based vector quantization algorithm)
- 2013-05-13 22:34:01下载
- 积分:1