-
Traffic-Statistics-Based-on-Video
该程序基于视频统计车流量。该算法通过识别出交通场景图像中复合车辆特征的像素,进行图像分割,并依据提取出来的特征来匹配前后两幅图像中的车辆,从而计算车流量。(The program is based on the video statistics vehicle traffic. The algorithm calculates the traffic volume by recognizing the pixels of the composite vehicle feature in the traffic scene image, segmenting the image, and matching the vehicles in the two images according to the extracted features.)
- 2016-10-25 12:50:33下载
- 积分:1
-
Dct
主要研究了彩色图像数字水印算法,在DCT域进行了水印的自适应嵌入和提取,并用Matlab进行了仿真实验,测试算法的性能(The main color image watermarking algorithm in the DCT domain adaptive watermark embedding and extraction, and with the Matlab simulation experiment to test the performance of algorithm)
- 2011-06-01 16:15:19下载
- 积分:1
-
matlab.QIyizhifenjie
关于奇异值分解,图像特征融合,图像处理的特征图提取方法(About the singular value decomposition
)
- 2015-03-31 15:10:38下载
- 积分: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
-
SPIHT
spiht 图形程序压缩代码 代码可用 请仔细研读 并适当修改为适合自己的 (SPIHT graphics program to compress code code available, please carefully read and amended as appropriate for their own)
- 2012-07-06 14:06:10下载
- 积分:1
-
Supervised
说明: 遥感信息工程学院遥感原理与应用课程实习监督分类(Supervised of Remote Sensing Principle and Application Course Practice)
- 2019-05-24 08:43:58下载
- 积分:1
-
aam
用AAM算法进行人脸特征点的标定,即对人脸的眼睛,眉毛,嘴巴,鼻子及脸的轮廓进行标记,此代码标记了68个特征点。(AAM algorithm for facial feature points calibration, calibration of this code is the 68 feature points, see the instance document.)
- 2012-10-16 16:12:43下载
- 积分:1
-
MVDR
奇异值分解波束形成,自适应波束形成仿真。由均匀线阵形式,确定阵列的导向矢量;由阵列导向矢量,对接收信号进行建模仿真;根据约束条件,实现自适应波束形成算法;考察算法性能与信噪比,采样率,观测时间等参数的关系。
(SVD beamforming, adaptive beamforming simulation. Form by the ULA to determine the array steering vector by the array steering vector, the received signal modeling and simulation under constraint conditions, adaptive beamforming algorithm examine algorithm performance and signal to noise ratio, sample rate, observation time, etc. parameters.)
- 2013-10-22 18:18:04下载
- 积分:1
-
vcphotoboth
VC++处理图像模糊或柔化的效果示例源程序,类似Photoshop中的图像高斯模糊效果,每点击一次鼠标右键,程序为模糊一次,直到你满意为止。注意程序仅实现了模糊的功能,其它功能比如程序优化和效率方面的考虑还比较少,因此程序运行速度方面可能会欠缺一些(VC++ deal with image blur or soften the effect of sample source code, similar to Photoshop' s image Gaussian Blur effect, each click the right mouse button, the procedures for fuzzy time until you are satisfied. Note that the program is only vague functions, other functions such as process optimization and efficiency considerations is still relatively small, the speed of the program is running may lack some of the)
- 2012-06-25 15:06:57下载
- 积分:1
-
qt数字识别
【实例简介】基于模板匹配的数字图片识别,使用opencv3进行图像处理
- 2021-06-15 00:31:14下载
- 积分:1