-
Corner_detection_MATLAB_program_source_program
MATLAB程序角点检测源码程序Corner detection MATLAB program source program(MATLAB process corner detection source program Corner detection MATLAB program source program)
- 2010-08-03 18:03:36下载
- 积分:1
-
MATLAB-grammar-and-function
说明: 这是我从网上摘抄下来的,关于matlab语法与常用函数要点,供大家一起学习。(This is the excerpt from the Internet down, on the matlab function of grammar and common elements for all to learn together.)
- 2009-09-01 20:09:43下载
- 积分:1
-
MATLAB
这个函数,很重要,不是用不行,这是一个泊松分布,是一个一维的,长度是1000的分布,还可以自己添加plot绘图函数,查看泊松分布。(This function is very important, do not use this function, very important, not with no, this is a poisson distribution is a one-dimensional, length is 1000 distribution, still can add your own plot drawing function, check poisson distribution. No, use your Linux will be very smooth.)
- 2011-12-10 15:23:23下载
- 积分:1
-
OOK误码率分析的仿真程序
此程序实现的是在OOK实现光通信中调光控制过程的误码率分析的仿真,内容很精,且很稀少很珍贵!
- 2022-03-21 20:53:04下载
- 积分:1
-
一个好用的利用最小二乘算法实现对三维平面的拟合源码
isodata 迭代自组织的数据分析,是学习PCA特征提取的很好的学习资料,仿真效果非常好,对于初学者具有参考意义,包括广义互相关函数GCC时延估计,用MATLAB实现的压缩传感。
- 2022-12-30 05:10:04下载
- 积分:1
-
IMUtracking
IMU姿态跟踪,利用粒子滤波器实现,可用于机器人姿态确定(IMU orientation tracking algorithm using particle filter.)
- 2009-05-16 03:50:26下载
- 积分:1
-
gao_du_cha
说明: 天文导航高度差法求舰位程序,内附说明文档与理论分析(Height difference between celestial navigation procedures ship method, containing documentation and theoretical analysis)
- 2020-09-29 16:17:45下载
- 积分:1
-
d_de
基于Matlab的 湖泊水温控制模型分析(Based on the Matlab lake water temperature control model analysis
)
- 2012-04-06 13:19:01下载
- 积分:1
-
imageF
好用的图像融合代码,里面有两种融合规则。(image fusion)
- 2014-11-10 16:13:04下载
- 积分: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