Borrar filtros
Borrar filtros

How to count area under given surface ?

2 visualizaciones (últimos 30 días)
MMSAAH
MMSAAH el 30 de Abr. de 2020
Comentada: Ameer Hamza el 4 de Mayo de 2020
Hello,
I want to count areas limited by green lines.
So, for my image the result is three areas.
Can anyone help me please.
  1 comentario
darova
darova el 30 de Abr. de 2020
do you have coordinates of green lines?

Iniciar sesión para comentar.

Respuesta aceptada

Ameer Hamza
Ameer Hamza el 30 de Abr. de 2020
Editada: Ameer Hamza el 30 de Abr. de 2020
Try this. It gives the area of three regions in number of pixels
im = im2double(imread('area.jpeg'));
im(:,end-5:end,:) = 0; % remove the white line at right and bottom of image
im(end-5:end,:,:) = 0;
mask = (im(:,:,1)>0.75) & (im(:,:,2)>0.75) & (im(:,:,3)>0.75);
regions = bwconncomp(mask);
areas = cellfun(@(x) numel(x), regions.PixelIdxList);
required_areas = maxk(areas, 3);
  4 comentarios
MMSAAH
MMSAAH el 4 de Mayo de 2020
I'm using R2016a.
I've changed maxk() by :
[val ind] = sort(areas,'descend');
required_areas=val(1:3);
Now, it works.
Is it possible to transform the number of pixels to cm ?
Ameer Hamza
Ameer Hamza el 4 de Mayo de 2020
You will need to specify the pixel per cm to find out the area.

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by