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 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti

Risposta accettata
Image Analyst
il 25 Gen 2013
Threshold:
binaryImage = grayImage > thresholdValue;
measurements = regionprops(binaryImage, 'all');
2 Commenti
Image Analyst
il 26 Gen 2013
regionprops() will return the pixel values, as will
pixelValues = grayImage(binaryImage);
Più risposte (0)
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!