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 ビュー (過去 30 日間)
古いコメントを表示
採用された回答
Image Analyst
2013 年 1 月 25 日
Threshold:
binaryImage = grayImage > thresholdValue;
measurements = regionprops(binaryImage, 'all');
2 件のコメント
Image Analyst
2013 年 1 月 26 日
regionprops() will return the pixel values, as will
pixelValues = grayImage(binaryImage);
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
