
Matlab
adong76
这个作者很懒,什么都没留下…
展开
-
Win8.1 安装 Matlab2012a
新电脑上面安装了win8.1 64位系统,原创 2014-11-24 22:43:56 · 2400 阅读 · 3 评论 -
Matlab在图像中画标记框
Matlab在图像中画标记框Matlab在图像中画标记框 img = imread('M1.JPG'); figure; hold on; imshow(img); hold off; px = 1200; py = 2000; step = 200; x1 = px - step; x2 = px + step;原创 2015-03-05 14:54:38 · 7401 阅读 · 0 评论 -
图像处理之小波变换
Matlab 小波变换img = imread('lena01.bmp');img =rgb2gray(img);[ca1 ch1,cv1,cd1] = dwt2(img,'haar');subplot(2,2,1);imshow(uint8(ca1));subplot(2,2,2);imshow(uint8(ch1));subplot(2,2,3);imsho原创 2014-10-31 16:50:38 · 4644 阅读 · 0 评论