Borrar filtros
Borrar filtros

i need to calculate certain parameters for chromosome in the image. how can i select region of chromosome alone from the background to calculate parameters.

1 visualización (últimos 30 días)

Respuesta aceptada

Image Analyst
Image Analyst el 25 de En. de 2013
Threshold:
binaryImage = grayImage > thresholdValue;
measurements = regionprops(binaryImage, 'all');
  2 comentarios
manoj m
manoj m el 26 de En. de 2013
sir,i want to calculate statistical parameters like variance,entropy,mean to the chromosome region in the image. these parameters are not available in regionprops. Is there any other way by which i can get the pixel values in the chromosome region and calculate those parameters.
Image Analyst
Image Analyst el 26 de En. de 2013
regionprops() will return the pixel values, as will
pixelValues = grayImage(binaryImage);

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Image Processing and Computer Vision 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