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
Image Analyst 2013 年 1 月 25 日
Threshold:
binaryImage = grayImage > thresholdValue;
measurements = regionprops(binaryImage, 'all');
  2 件のコメント
manoj m
manoj m 2013 年 1 月 26 日
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.
Image Analyst
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!

Translated by