Borrar filtros
Borrar filtros

how to split a gray image into dark, middle and bright pixels

1 visualización (últimos 30 días)
how to split a gray image into dark, middle and bright pixels

Respuesta aceptada

Image Analyst
Image Analyst el 14 de Jul. de 2014
You would have to know the algorithm they're using because there are quite a few gray levels that seem to be in all three classes. I think there is quite a bit of overlap in what they call dark, middle, and bright.
  2 comentarios
Elysi Cochin
Elysi Cochin el 14 de Jul. de 2014
can you tell any simple method...
Image Analyst
Image Analyst el 14 de Jul. de 2014
Simple method is thresholding
darkPixels = grayImage(grayImage < 100));
middlePixels = grayImage((grayImage >= 100) & (grayImage <= 200));
brightPixels = grayImage(grayImage > 200));

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Image Processing Toolbox en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by