-
ybus
ybus is a code for calculating a bus
- 2010-11-30 00:49:19下载
- 积分:1
-
main
一个程序关于车牌检测的识别,之中包括图像的一系列处理,预处理、图像灰度化、二值化、腐蚀等等(solve about edge!)
- 2012-05-27 17:26:06下载
- 积分:1
-
image_process
matlab image process
- 2015-01-20 10:09:38下载
- 积分:1
-
gmres_m
gmres算法的一个特殊形式,用来求解大型稀疏矩阵方程(gmres algorithm a special form used to solve large sparse matrix equation)
- 2005-04-21 01:03:45下载
- 积分:1
-
97-things-every-software-architect-should-know
This z usful doc for all software engineers on 97-things-every-software-architect-should-know.
- 2014-08-16 13:00:13下载
- 积分:1
-
reverberation
This contains files used for dereverberation algorithm.
- 2011-09-05 23:12:21下载
- 积分:1
-
Untitled
edge detection using gabbis
- 2013-11-16 19:26:40下载
- 积分:1
-
homework2
基于AR模型的burg算法,根据100年间每年12个月记录到的太阳黑子出现次数的平均值求太阳黑子的活动周期。(matlab程序和实验报告)(Burg algorithm based on AR model, according to 100 years, 12 months per year sunspot record to appear and sunspot activity cycle of the average number of times. The (matlab Programs and lab reports))
- 2012-11-14 21:41:52下载
- 积分:1
-
xin1
说明: (1)人脸图像的采集
(2)人脸图像增强:去噪、均衡、尺寸归一化、倾斜校正等
(3)脸部肤色区域分割:采用肤色模型检测与分割人脸肤色区域
(4)脸部五官区域分割:采用算法将人脸分割成眉毛、眼睛、鼻子、嘴巴等多个区域((1) Facial image acquisition
(2) Face Image Enhancement: Denoising, Equalization, Size Normalization, Tilt Correction, etc.
(3) Facial skin color region segmentation: using skin color model to detect and segment face skin color region
(4) Facial Five-sense Region Segmentation: Face is segmented into eyebrows, eyes, nose, mouth and other regions by using the algorithm.)
- 2021-03-17 00:29:21下载
- 积分:1
-
output_of_DCT_in_image_fusion
u can calculate DCT
clc
inp = imread( Im1.jpg )
inp1 = imread( Im2.jpg )
A = double(inp(:,:,1))
B = double(inp1(:,:,1))
A1=double(blkproc(A,[8 8], dct2 ))
B1=double(blkproc(B,[8 8], dct2 ))
[r,c] = size(A1)
r1 = []
for i=1:r
for j=1:c
if A1(i,j) > B1(i,j)
r1(i,j)=A1(i,j)
else
r1(i,j)=B1(i,j)
end
end
end
r1= double(r1(:,:,1))
C=blkproc(r1,[8 8], idct2 )
round(C)
C1=idct2(r1)
figure
imshow(uint8(C))
figure
imshow(uint8(C1))
imwrite(uint8(C), dct8x8min.jpg )
- 2011-01-09 23:26:05下载
- 积分:1