How to crop image after regionprops
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Kong
am 18 Mär. 2020
Bearbeitet: Sai Bhargav Avula
am 25 Mär. 2020
Hello.
I found the centroid of an image like this. I want to crop the image using the centroid.

clear all
close all
I = imread('kong.jpg') ;
Ibw = im2bw(I);
Ibw = imfill(Ibw,'holes');
Ilabel = bwlabel(Ibw);
stat = regionprops(Ilabel,'centroid');
imshow(I); hold on;
for x = 1: numel(stat)
plot(stat(x).Centroid(1),stat(x).Centroid(2),'ro');
end
0 Kommentare
Akzeptierte Antwort
Sai Bhargav Avula
am 23 Mär. 2020
Bearbeitet: Sai Bhargav Avula
am 25 Mär. 2020
Hi,
You can use imcrop to crop the image. The answer in the following link gives a detailed explanation on how to crop the image around the given centriod.
Hope this helps!
0 Kommentare
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!