资源简介

sar图像处理中的双阈值分割算法的matlab实现代码 )

资源截图

代码片段和文件信息

function t = cutpict(fxy)
% this function is used to get standard 128*128 picture from f
% the start pixel is (xy)

l = 128;
[len hig]= size(f);
if x>len+128 || y>hig+128
    t = uint8(zeros(128128));
else
    t = f(x:x+127y:y+127);
end

close all;
figure;
imshow(t)

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         285  2007-06-14 01:20  双阈值分割算法\cutpict.m
     文件        3013  2007-06-14 01:42  双阈值分割算法\graythresh_n.m
     目录           0  2014-03-05 12:56  双阈值分割算法\

评论

共有 条评论