-
lossless-lwatermarking--model
一种基于可逆信息隐藏的的无损鲁棒数字水印模型的研究(Study on framework model of lossless robust digital watermarking based on reversible data hiding)
- 2020-11-05 16:09:52下载
- 积分:1
-
total8bian
初步的代码,只保存边界的声波逆时偏移 RTM
- 2013-09-16 21:22:17下载
- 积分:1
-
matlab
Matlab图像处理教程简易教程 - /1、图像的读取和显示 /2、图像的点运算 /3、图像的几何变换 /4、空间域图像增强 /5、频率域图像增强 /6、彩色图像(Matlab image processing tutorial Easy Tutorial-/1, read and display image/2 image point operations/3, the image of geometric transformation/4 spatial domain image enhancement/5, the frequency domain image enhancement/6 color image)
- 2012-09-14 15:45:05下载
- 积分: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
-
codes
红外与可见光实时融合算法
------------------------------------
若不能读取xvid视频,请安装XviD-1.1.3-28062007.exe。
-----------------------------------
请双击*.bat文件看程序运行结果。
也可以在命令行下,输入“evs3 参数文件.xml 配准.xml”,以融合指定的多源视频图像。
----------------------------------
首先,离线地时空配准多源视频,并保存结果到xml文件。然后融合配准后的图像。融合过程是,通过分解图像为Laplacian金字塔,分别对图像的高频和低频按照规则合并,最后将Laplacian金字塔重新组合为图像。(Real time fusion algorithm for infrared and visible light------------------------------------If you cannot read XviD video, please install XviD-1.1.3-28062007.exe.-----------------------------------Double-click the*.bat file to see the program running results.Can also be in the command line, " evs3 input parameter file .Xml .Xml registration ", by the fusion of the specified source video image.----------------------------------First of all, offline space-time registration source video, and save the results to a XML file. After registration and fusion image. Through the decomposition of the image fusion process, Laplacian Pyramid, were on the high-frequency and low frequency image in accordance with the rules of the merger, Laplacian Pyramid reassembled for image.)
- 2013-01-09 14:42:39下载
- 积分:1
-
SIFT_wonderful
SIFT 尺度不变特征提取算法 可参考可运行有测试图片(SIFT with test picture and it can work well)
- 2016-01-12 14:29:20下载
- 积分:1
-
MPPT-for-Fuel-cell
光伏最大功率点跟踪模型 希望对大家有用 谢谢(Photovoltaic Maximum Power Point Tracking model I hope useful thanks)
- 2015-01-16 20:20:09下载
- 积分:1
-
yasuo
本文主要是用matlab提供的小波包对图像进行分解、压缩、重构(This article is mainly used to provide matlab wavelet packet decomposition of images, compression, Reconstruction)
- 2007-09-12 11:00:42下载
- 积分:1
-
siftWin32
sift算法的核心,siftWin32.exe的源程序,可执行,可导入Matlab(The core of the SIFT algorithm, the source of siftWin32.exe, executable, can be imported to Matlab)
- 2018-02-08 21:21:57下载
- 积分:1
-
dither
一个图像抖动算法的例子,从被人那里copy来的,希望对大家有帮助。c写的。(An example of image dithering algorithm, from the copy to be there and want to help you. c wrote.)
- 2009-05-07 20:16:23下载
- 积分:1