-
matlab_source_code_design_examples_from_the_measur
matlab源码设计距离测算源码实例matlab source code design examples from the measurement source(matlab source code design examples from the measurement source matlab source code design examples from the measurement source)
- 2010-08-02 10:08:51下载
- 积分:1
-
Petitcolas035-ch03
matlab porgram for license plate
- 2011-10-03 17:54:23下载
- 积分:1
-
LightingColorFilterTest
Lighting Color Filter Test extends Test Case Source Code for Andriod.
- 2013-12-16 10:59:15下载
- 积分:1
-
复杂网络中基本网络模型的matlab实现
说明: 多种复杂网络的仿真代码,小世界网络,无标度网络等等(Simulation code of multiple complex networks)
- 2020-03-12 14:56:53下载
- 积分:1
-
Car_hist
Drulhe S. - Hue M. -- dec 2003
Demo to compute the histogram features.
Some functions used here require Image Processing Toolbox
(Drulhe S.- Hue M. -- dec 2003
Demo to compute the histogram features.
Some functions used here require Image Processing Toolbox
)
- 2009-10-19 19:58:40下载
- 积分:1
-
poly
Poly alphabetic cipher in C
- 2010-10-03 17:22:00下载
- 积分:1
-
matla50cases
matlab编程实例,共50个,对学习MATLAB的同学大有益处(matlab programming examples, a total of 50, to learn the students a great advantage MATLAB)
- 2010-03-14 15:23:26下载
- 积分:1
-
chazhi
matlab插值的数学建模课件,第13讲(matlab interpolation)
- 2012-10-14 15:57:32下载
- 积分:1
-
DataCameraCal_random
generation of random data for camera calibration
- 2010-12-02 06:33:40下载
- 积分:1
-
Blocks
clc
close all
clear all
I=imread( desert.jpg )
[r c]=size(I)
bs=16 Block Size (8x8)
nob=(r/bs)*(c/bs) Total number of 8x8 Blocks
Dividing the image into 8x8 Blocks
kk=0
for i=1:(r/bs)
for j=1:(c/bs)
Block(:,:,kk+j)=I((bs*(i-1)+1:bs*(i-1)+bs),(bs*(j-1)+1:bs*(j-1)+bs))
end
kk=kk+(r/bs)
end
Accessing individual Blocks
figure imshow(Block(:,9,1)) This shows u the fist 8x8 Block in a figure window
figure imshow(Block(:,:,2))
- 2013-03-17 15:01:05下载
- 积分:1