separating objects in an image

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

2 Comments

How about imcrop?
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.

Sign in to comment.

Answers (1)

Ameer Hamza
Ameer Hamza on 17 Oct 2020
See bwconncomp(): https://www.mathworks.com/help/images/ref/bwconncomp.html from image processing toolbox.

1 Comment

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');

Sign in to comment.

Products

Asked:

on 17 Oct 2020

Commented:

on 18 Oct 2020

Community Treasure Hunt

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

Start Hunting!