-
dwtwat
DWT的彩色水印嵌入算法,而且嵌入的水印附图像是彩色的。(DWT color watermark embedding algorithm, and the embedded watermark such as color drawings.)
- 2007-08-14 20:08:16下载
- 积分:1
-
strtok
strtok(char s[], const char *delim) 用来将字符串分割成一个个片段。参数s指向欲分割的字符串,参数delim则为分割字符串中包含的所有字符。当strtok()在参数s的字符串中发现参数delim中包涵的分割字符时,则会将该字符改为
- 2013-05-06 14:36:34下载
- 积分:1
-
pzernike
说明: 伪Zernike矩特征提取,Zernike矩特征提取,供参考,很有用(Pseudo-Zernike moment feature extraction, Zernike moment feature extraction, for reference, very useful)
- 2008-10-16 19:41:20下载
- 积分: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
-
xinhaochuli
近期成果,与大家分享:奇异值分解、小波降噪、zoom细化 谱峭度 和滤波器设计,共勉(Recent achievements to share with you: singular value decomposition, wavelet noise reduction, zoom refined spectral kurtosis and filter design, encouragement)
- 2013-10-10 10:26:51下载
- 积分:1
-
guiyihua
这个是把图像归一化的程序,原始的图片可以随意设置,效果比较好。(This is the image of the normalized program, the original pictures can freely set, the effect is good.
)
- 2012-04-27 16:52:29下载
- 积分:1
-
5120
新浪邮箱注册易语言源码,程序结合易语言第三方云外归鸟的图像处理支持库和易语言模块彗星HTTP应用模块.ec,实现新浪邮箱的注册。(Sina mail registration easy language source code , the program combined with easy language to third parties outside the cloud of birds of image processing and easy language support library module Comet HTTP application modules .ec, realize Sina-mail registration .)
- 2016-06-14 17:13:51下载
- 积分:1
-
water_hammer
本程序采用了特征线法计算管道阀门关闭时的水锤(This program uses a water hammer characteristic line method to calculate the pipe when the valve is closed)
- 2020-10-16 10:17:28下载
- 积分:1
-
pre_processing
用于指纹识别中,对指纹图象的预处理,包括分割、二值化、细化等。(for fingerprint identification, the fingerprint image preprocessing, including segmentation, two values, such as thinning.)
- 2007-05-09 16:42:37下载
- 积分:1
-
icpCpp
ICP是用来匹配两组未知点,可以用于图像处理等方面,速度快,但需要选择好初始参数(ICP is used to match two sets of unknown points can be used in areas such as image processing speed, but need to select a good initial parameters)
- 2009-02-05 20:28:58下载
- 积分:1