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 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen

Akzeptierte Antwort
Image Analyst
am 25 Jan. 2013
Threshold:
binaryImage = grayImage > thresholdValue;
measurements = regionprops(binaryImage, 'all');
2 Kommentare
Image Analyst
am 26 Jan. 2013
regionprops() will return the pixel values, as will
pixelValues = grayImage(binaryImage);
Weitere Antworten (0)
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!