Azzera filtri
Azzera filtri

Find area from binary image.

2 visualizzazioni (ultimi 30 giorni)
Naseeb Gill
Naseeb Gill il 1 Nov 2017
Commentato: darova il 27 Apr 2019
Hello,
I have this binary image:
I want to encircle it with ellipse or any kind of boundary like below:
After this, I have to fill the area inside the boundary and want to found out the area of this boundary. How to do so?
Thanks.

Risposta accettata

Image Analyst
Image Analyst il 1 Nov 2017
Try this:
binaryImage = bwconvhull(binaryImage, 'union');
area = bwarea(binaryImage);
% or for a simple sum of pixels:
area = sum(binaryImage(:));

Più risposte (1)

Naga Sai Anupoju
Naga Sai Anupoju il 24 Apr 2019
binaryImage = bwconvhull(binaryImage, 'union');
area = bwarea(binaryImage);
% or for a simple sum of pixels:
area = sum(binaryImage(:));
  2 Commenti
Image Analyst
Image Analyst il 27 Apr 2019
??? This answer is identical to the one I posted a year and a half ago.
darova
darova il 27 Apr 2019
Use special button for code inserting please
Untitled.png

Accedi per commentare.

Categorie

Scopri di più su Image Processing Toolbox in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by