How to get a closed boundary of image recognition?

1 次查看(过去 30 天)
The boundaries of the graphics are identified. Now I need to get a closed boundary with a gray scale greater than 200, and the x, y coordinates of each boundary are known.
%plot code
% code
clear all;
clear;
clc;
load('imagdata.mat');
load('imgx.mat');
load('imgy.mat');
load('org_dataisld.mat');
imagesc(imgx,imgy,imagdata);
colormap(flipud(gray));
colorbar('northoutside');
set(gca,'YDir','reverse')
caxis(gca,[0.5 256])
len = length(org_dataisld);
hold on;
for i = 1:len
self_data = org_dataisld{i}(:,:);
plot(imgx(self_data(:,1)),imgy(self_data(:,2)),'-g');
end
hold off

采纳的回答

Yongjun Wang
Yongjun Wang 2017-8-9
Starting from the data body org_dataisld.mat

更多回答(2 个)

Yongjun Wang
Yongjun Wang 2017-8-10
The funciton bwboundaries can solve this problem.

Yongjun Wang
Yongjun Wang 2017-8-25
编辑:Yongjun Wang 2017-8-25
This problem has been solved which takes me a month.
  2 个评论
Image Analyst
Image Analyst 2017-8-25
I could have done it in a few minutes if I had just understood what you wanted. I still don't, actually.

请先登录,再进行评论。

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!