how to detect border irregularity?
Mostrar comentarios más antiguos
I have traced exterior boundaries of this region. now i want to have boundary box and centre of mass around it. How can I do this?

1 comentario
joynob ahmed
el 20 de Mzo. de 2020
Respuestas (1)
KSSV
el 20 de Mzo. de 2020
If (x,y) are your boundary points.
% Get bounding box
x0 = min(x) ; x1 = max(x) ;
y0 = min(y) ; y1 = max(y) ;
%
A = [x0,y0] ;
B = [x1,y1] ;
Also to get the center, you can find mean.
iwant = [mean(x) mean(y)] ;
9 comentarios
joynob ahmed
el 20 de Mzo. de 2020
B = cell2mat(B) ; % assuming B is two columns
x = B(:,2) ; y = B(:,1) ;
joynob ahmed
el 21 de Mzo. de 2020
Editada: joynob ahmed
el 21 de Mzo. de 2020
joynob ahmed
el 25 de Mzo. de 2020
KSSV
el 26 de Mzo. de 2020
Attach your original image.
joynob ahmed
el 26 de Mzo. de 2020
KSSV
el 26 de Mzo. de 2020
Attach B and L into mat file and share.
joynob ahmed
el 28 de Mzo. de 2020
joynob ahmed
el 2 de Abr. de 2020
Categorías
Más información sobre Image Arithmetic en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


