-
threhold-dealt
关于阈值处理的一部分参考文献,对于图像的二值化等很有帮助,是经过精心选择的参考文件。(References on the part of the processing threshold for image binarization helpful, is carefully selected reference files.)
- 2014-08-25 12:03:43下载
- 积分:1
-
256togray
可以将256色度级的图像转化为灰度图象,挺值得新手学习一下的,希望大家能喜欢(256 chroma level images can be converted to grayscale images, very worth novice to learn about, and I hope you like)
- 2014-04-19 14:48:30下载
- 积分:1
-
SIFT_VC.lib
本系统中VIS欠缺的SIFT_VC.lib文件。。。
http://www.pudn.com/downloads224/sourcecode/math/detail1055031.html(This is lib file, which is used in Video Intelligent System (VIS) based on the Microsoft Visual Studio 2008 compiler environment and OpenCV 2.0 library. It includes foreground detection, motion object detection, motion object tracking, trajectories generation and analysis modules. It realizes a friendly interface based on dialog, which provides a convenient example for new learners.
keywords: opencv, mixture of gaussian model, sift feature and ransac method, mean shift, particle filter, kalman filter, object detection and tracking, video intelligent system.)
- 2010-11-20 20:29:12下载
- 积分:1
-
MedFDTD
计算电磁波辐射的FDTD程序源码,基于C++编写,支持MUR和PML边界条件,能计算SAR及天线辐射方向图(FDTD source code based on C++.Various absorbing boundary, include PEC, Mur, PML Calculate Specific Absorption Rate (SAR) Antenna radiation simulation, calculate radiation power.)
- 2012-05-27 14:10:16下载
- 积分: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
-
Tsharing_Thieh
实现了Thien在他的文章《secret image sharing》中提出的(r,n)门限秘密图像分存方案。
(Thien in his article " secret image sharing" (r, n) Door Threshold Secret Image Sharing Scheme.)
- 2012-07-26 22:35:42下载
- 积分:1
-
fa0d
基于像素标记的连通区域计算程序,只针对二值图像,随附有。(Based on regional connectivity calculation procedure pixel tags, only for the binary image, comes with.)
- 2013-12-13 14:51:32下载
- 积分:1
-
opencv
数字图像处理 opencv 一些基本例子和源码(opencv code)
- 2009-07-12 12:27:37下载
- 积分:1
-
peppernoise-cpp
在图像中加入椒盐噪声的源代码,编译后的可执行文件须带参数运行(the image Salt and Pepper to the noise source, the compiled executable file parameters required to bring Operation)
- 2006-10-13 13:36:45下载
- 积分:1
-
wnrVC6.0
运动模糊图像 图像复原 维纳滤波复原 逆滤波复原 VC++6.0程序 代码(Motion-blurred image restoration image restoration Wiener filtering inverse filtering to recover VC++ 6.0 code)
- 2020-12-12 11:29:17下载
- 积分:1