-
ImageProcessing
说明: 基于块分割的图像拼接,将图像按块拼接,缺点是速度很慢,算法有待改善(Block-based segmentation of the image mosaic, mosaic images by block, the disadvantage is very slow, the algorithm needs to be improved)
- 2011-03-24 18:22:01下载
- 积分:1
-
Gaussian
打开24位彩色bmp文件, 显示该图像
将图像内容顺时针旋转90度后显示出来
将图像分成等大小的4块,将第1和第3块像素互换后保存
将旋转后的图像转换成灰度图像显示,并保存
对灰度图像求Sobel边缘图,显示出来,并保存
对灰度图像进行Gaussian平滑,并保存(需要体会平滑的作用)
对灰度图像进行2值化(Open 24-bit color bmp files, displays the image will rotate clockwise image content displayed image is divided into four equal-sized 90 degrees, the first and three pixels after swap to save the rotated image conversion ashes of the image display, and save images to grayscale seeking Sobel edge map is displayed, and save the gray image Gaussian smoothing, and save (experience required smoothing effect) grayscale image binarized)
- 2020-06-29 07:40:01下载
- 积分:1
-
src
背景减除的完整算法,《A Statistical Approach for Real-time Robust Background Subtraction and Shadow Detection》作者源代码(The "src" folder contains all of the source code.
To run the program, follow these simple steps:
1. Start MATLAB and ensure the "src" folder is your current working
directory.
2. Edit "bs.m" and "classify.m" so that the file paths point to the
proper directories as specified.
3. In the MATLAB environment type "bs" which will train the background
model from the sequence you specified in (2).
4. In the MATLAB environment type "classify" which will classify the
sequence of images you specified in (2).
5. Now the classified images should be saved to disk in the folder you
specified in (2).)
- 2012-09-20 16:47:35下载
- 积分:1
-
VQ
使用Splitting算法和GLA算法实现对图像的矢量量化及重新编码和重建。(Vector Quantization:To generate a 16-codeword codebook using Splitting Algorithm and GLA,then use this codebook to code the training image and reconstuct it.)
- 2013-11-07 21:32:18下载
- 积分:1
-
matlab背景差分法
利用MATLAB实现图像处理,实现图像背景分离。(Using MATLAB to realize image processing)
- 2017-07-25 11:50:04下载
- 积分:1
-
123
C. Li, C. Xu, C. Gui, M. D. Fox, "Distance Regularized Level Set Evolution and Its Application to Image Segmentation",
IEEE Trans. Image Processing, vol. 19 (12), pp. 3243-3254, 2010.
- 2012-07-27 04:00:46下载
- 积分:1
-
compute_homography
用于求解张正友相机标定过程中的单应性矩阵(Homography matrix for camera calibration)
- 2018-09-06 16:19:49下载
- 积分:1
-
PCA&SVD_Denoising
使用PCA和SVD进行数据去噪,利用数据主要的特征向量进行数据恢复和重建(Using PCA and SVD for data denoising)
- 2018-08-21 09:57:25下载
- 积分:1
-
main
DIX公式优化求解层速度,使得速度变得更加平滑。(DIX formula optimization solution velocity, making speed becomes smoother.)
- 2013-07-23 15:52:06下载
- 积分: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