How to get a closed boundary of image recognition?
11 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Yongjun Wang
le 9 Août 2017
Commenté : Yongjun Wang
le 31 Août 2017
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
0 commentaires
Réponse acceptée
Plus de réponses (2)
Yongjun Wang
le 25 Août 2017
Modifié(e) : Yongjun Wang
le 25 Août 2017
2 commentaires
Image Analyst
le 25 Août 2017
I could have done it in a few minutes if I had just understood what you wanted. I still don't, actually.
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!