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 view (last 30 days)

Accepted Answer

Image Analyst
Image Analyst on 25 Jan 2013
Threshold:
binaryImage = grayImage > thresholdValue;
measurements = regionprops(binaryImage, 'all');
  2 Comments
manoj m
manoj m on 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.

Sign in to comment.

More Answers (0)

Categories

Find more on Image Processing and Computer Vision in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!