-
EllipseCir
椭圆拟合,输入中心坐标及椭圆长半轴和短半轴即可画出相应椭圆(ellipse fitting)
- 2013-12-18 23:49:16下载
- 积分:1
-
tuxiangchuli
Visual C++ 数字图像处理 光盘源码(Visual C++ Digital image processing, CD-ROM source)
- 2009-01-12 20:23:19下载
- 积分:1
-
water-pot
基于小波变换的使用SPIHT算法进行图像压缩,并对原有的算法进行优化(Based on wavelet transform using the SPIHT algorithm for image compression, and the original algorithm to optimize)
- 2012-06-12 08:07:39下载
- 积分:1
-
Vista
说明: 位图分析转换软件
可以分析8,16,24,32位BMP图
输出可选16位,18位,24位RGB格式
同时支持串行下载(Bitmap analysis of 8,16,24,32-bit conversion software can map out the optional 16-bit BMP, 18 bit, 24-bit RGB format also supports serial download)
- 2010-04-24 17:24:09下载
- 积分:1
-
mesh_simplification
网格简化,
将复杂的带有很多细节的物体的三维立体网格进行任意比例的简化,使得其减少点和面片的数量并保持物体的基本特征,以达到加快图像显示及压缩文件的效果。(Mesh simplification, the complex three-dimensional grid with many of the details of the object simplified in any proportion, such that it reduce the number of points and surfaces of the sheet and keep the basic characteristics of the object, in order to achieve the speed up of the image display and the effect of the compressed file .)
- 2014-12-21 14:36:07下载
- 积分:1
-
mom
经典矩量法点匹配程序,重推导,注释说明详细(Classical point matching moment method procedure)
- 2011-05-12 23:00:16下载
- 积分:1
-
人脸识别系统设计—毕业设计
说明: 本课题的主要内容是图像预处理,它主要从摄像头中获取人脸图像然后进行处理,以便提高定位和识别的准确率.该模块主要包含光线补偿、图像灰度化、高斯平滑、均衡直方图、图像对比度增强,图像预处理模块在整个系统中起着极其关键的作用,图像处理的好坏直接影响着后面的定位和识别工作,内有源代码和全部论文资料(this issue is the major content of image preprocessing, mainly from the camera to obtain images Face then, in order to improve the recognition and positioning accuracy. The module consists mainly of light compensation, Grayhound, Gaussian smoothing, balanced histogram, image contrast enhancement, image pre- processing module in the system plays a crucial role in image processing will have a direct impact behind the positioning and identification, within Active code and all papers information)
- 2005-11-10 23:36:52下载
- 积分:1
-
SITFbasedmatch
包括基于SIFTGPU的sift特征提取,sift匹配,基于ransac误匹配点剔除等(SIFTGPU based sift feature extraction, sift matching, mismatching points based ransac removed, etc.)
- 2021-04-09 22:38:59下载
- 积分:1
-
shuzishuiyinzongshu
:数字水印将感觉不到的信号嵌入到声频、视频和图像中以实现不同的目的。例如: 添加标题和版权保护。首先介绍
了有关数字水印的基本原理、重要属性及其主体框架。然后,将数字水印按不同角度划分为不同种类。讨论了各种各样的数
字水印算法以及数字水印在不同领域的应用,并简要介绍了对数字水印的攻击。最后,给出了数字水印当前的研究现状和发
展形式及前景。(: Digital watermark embedding imperceptible signals to the audio, video and images to achieve different purposes. Example: Add a title and copyright protection. Firstly, the basic principle about digital watermarking, and the main framework of the important attributes. Then, the digital watermark according to different angles into different types. Discussed a wide range of digital watermarking algorithms and digital watermarking applications in different fields, and a brief introduction of the digital watermarking attacks. Finally, the digital watermark of the current situation and development in the form of research and prospects.)
- 2015-03-18 16:12:36下载
- 积分: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