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.
2 views (last 30 days)
Show older comments

Accepted Answer
Image Analyst
on 25 Jan 2013
Threshold:
binaryImage = grayImage > thresholdValue;
measurements = regionprops(binaryImage, 'all');
2 Comments
Image Analyst
on 26 Jan 2013
regionprops() will return the pixel values, as will
pixelValues = grayImage(binaryImage);
More Answers (0)
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!