separating objects in an image

is there any way to separate object in an image based on white space bettween them.

2 commentaires

KSSV
KSSV le 17 Oct 2020
How about imcrop?
Edo Wijaya
Edo Wijaya le 18 Oct 2020
imcrop using coordinates. It means i must know the coordinates first. The problem is i don't know how to get coordinates from this picture.

Connectez-vous pour commenter.

Réponses (1)

Ameer Hamza
Ameer Hamza le 17 Oct 2020

0 votes

See bwconncomp(): https://www.mathworks.com/help/images/ref/bwconncomp.html from image processing toolbox.

1 commentaire

Edo Wijaya
Edo Wijaya le 18 Oct 2020
I'm already trying using regionprops but i don't know how to continue it.
A = imread('E:\Dataset\Crop\Contoh honocoroko.jpg');
level = graythresh(A);
b = im2bw(A,level);
CC = bwconncomp(b);
stats = regionprops(CC,'All');

Connectez-vous pour commenter.

Produits

Commenté :

le 18 Oct 2020

Community Treasure Hunt

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

Start Hunting!

Translated by