-
dashline
一个简单的虚线类,绘制各种虚线的C++类库,请看效果截图,可绘制出各种彩色的虚线效果。画横向或竖向虚线,以及对角线的虚线框效果,都是可以的,带有一个演示程序。(A simple dashed class, draw various dashed C++ library, see the effects shots, you can draw a variety of color dotted effect. Draw horizontal or vertical dashed line, as well as the effect of diagonal dashed box, are possible with a demo program.)
- 2021-05-14 14:30:02下载
- 积分:1
-
Thinit
一个很不错的指纹分析算法源代码,可以从采集的指纹图片中进行二次黑白化,平滑图像处理。可以对指纹图像特征信息提取,比对,以轮廓显示以及色彩覆膜特显等技术算法。主要的分析速度很快,值得学习的算法。要在指纹信息处理中比较不错,本站隆重推荐。(A very good fingerprint analysis algorithm source code, from the collection of fingerprint images, the second black and white, smooth image processing. Fingerprint image feature information extraction, compared to the contour display and color coated special significant technical algorithm. Analysis fast, it is worth learning algorithm. Fingerprint information processing site is highly recommended.)
- 2012-08-10 14:55:22下载
- 积分:1
-
miyao
本文提出了基于二维混沌映射的数字图像水印算法,混沌具有随机性、似噪声及对初始条件的极端敏感性等特点。将经过二维混沌映射置乱后的数字水印信号嵌入图像小波域的低频系数,实现了数字水印的隐蔽性、保密性和稳固性;利用二维混沌映射Arnold变换对水印信号进行置乱,不仅增强了水印信号保密性,同时有效提高了视觉上抵抗图像剪切攻击的能力。(In this paper, two-dimensional chaotic map based on digital image watermarking algorithm, Chaos with random noise and the likelihood of extreme sensitivity to initial conditions and so on. Two-dimensional chaotic map will be scrambling after the digital watermark embedded image signal of the low-frequency coefficients in wavelet domain, the realization of a digital watermark hidden, security and stability the use of two-dimensional chaotic map on Arnold transform scrambling watermark signal, not only enhances the confidentiality of the watermark signal at the same time improve the visual image shear resistance attacks.)
- 2009-06-28 10:11:45下载
- 积分:1
-
Basic-knowledge-of-image-processing3
This program contains some basic image processing things, such as: 256 colors to grayscale, contrast stretching, anti-color, brightness change, etc.
- 2012-01-20 12:37:56下载
- 积分:1
-
infusimage
红外图像的亚像素边缘检测,检测边缘,用于图像配准。(Infrared image of the sub-pixel edge detection, edge detection for image registration.)
- 2010-09-29 10:18:15下载
- 积分: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
-
cximage600_demo
方便实现图像的 处理,功能强大的算法文件,可以较好的实现图像的处理(Facilitate the realization of image processing, powerful algorithm files, you can better realize the image processing)
- 2017-06-13 15:19:10下载
- 积分:1
-
MyDialog
AutoCAD二次开发的图像处理代码,对彩色图像进行区域生长,然后提取边界,实现图像分割.(AutoCAD second development of image processing code, color images of regional growth, and then extract the boundary, realize image segmentation.)
- 2007-09-18 14:18:42下载
- 积分:1
-
sar
sar图像的基于R-D模型的几何纠正,主要是利用RD模型的数学公式进行相关的几何纠正(Geometric rectification based on RD model of SAR)
- 2020-06-28 18:40:02下载
- 积分:1
-
MARK_Dehaze
2009年CVPR最佳论文《Single image haze removal using dark channel prior》暗原色图像去雾的算法实现。与原文不同的是本程序没有完成最后matting细化效果的部分,但仍能够达到视觉上可以接受的去雾效果。计算机视觉课程作业。工程运行于VS2008环境,需要OpenCV支持。Debug目下exe文件可以直接双击运行查看结果。(CVPR 2009 Best Paper " Single image haze removal using dark channel prior" to the dark fog of the primary image algorithm. The difference is that with the original program did not complete the final matting refinement part,yet haze-removal result is visually acceptable. Visual course work. This project runs under VS2008 with OpenCV. Double click the exe file under Debug folder to check the final result.)
- 2011-08-10 16:46:35下载
- 积分:1