How can I make automatic crop?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
wisam kh
am 24 Jun. 2018
Kommentiert: wisam kh
am 25 Jun. 2018
Hello
How can I make automatic crop around core? like
.
2 Kommentare
Rik
am 24 Jun. 2018
Have a read here (or here for more general advice) and here. It will greatly improve your chances of getting an answer.
Akzeptierte Antwort
Image Analyst
am 24 Jun. 2018
Why do you need to crop it?
Anyway, if you do for some reason, you can just binarize and look for the min and max row and column.
binaryImage = imbinarize(grayImage);
[rows, columns] = find(binaryImage);
row1 = min(rows);
row2 = max(rows);
col1 = min(columns);
col2 = max(columns);
croppedGrayImage = grayImage(row1:row2, col1:col2);
imshow(croppedImage);
5 Kommentare
Image Analyst
am 24 Jun. 2018
Bearbeitet: Image Analyst
am 24 Jun. 2018
Well there's the problem. You totally ignored my code in my answer, and did it your own (wrong) way. Why?
Weitere Antworten (0)
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!