Effacer les filtres
Effacer les filtres

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 vue (au cours des 30 derniers jours)

Réponse acceptée

Image Analyst
Image Analyst le 25 Jan 2013
Threshold:
binaryImage = grayImage > thresholdValue;
measurements = regionprops(binaryImage, 'all');
  2 commentaires
manoj m
manoj m le 26 Jan 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 le 26 Jan 2013
regionprops() will return the pixel values, as will
pixelValues = grayImage(binaryImage);

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Image Processing and Computer Vision dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by