Borrar filtros
Borrar filtros

find maximum and minimum value from a segmented portion...

1 visualización (últimos 30 días)
i have segmented image... the unwanted portions are replaced by zero...
now i wanted to find the maximum and minimum value of the segmented regions...
but as i have assigned unwanted portions as zero, everytime minimum value comes as zero... but for some images the segmented portion contains value zero, so how to take the minimum and maximum value from the segmented portion only...

Respuesta aceptada

Walter Roberson
Walter Roberson el 20 de Mayo de 2015
roi = repmat(binaryImage, [1,1, size(origImage,3)]);
origImage(~roi) = 0;
max(origImage(roi))
min(origImage(roi))

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