How can i calculate the ( area ,... ) automatic for gray scale image using Matlab code ??

5 ビュー (過去 30 日間)
Aya Ahmed
Aya Ahmed 2020 年 2 月 21 日
コメント済み: Aya Ahmed 2020 年 3 月 4 日
How can i calculate the
( (i) area , (ii) centriod , (iii) bounding box , (iv) major axis , (v) minor axis , (vi) eccentricity , (vii) orientation ,(viii) convex area and (ix) extrema ) automatic
for gray scale galaxy image like that using Matlab code ??
to make feature extraction for galaxy images ?
Note >>this image after makeing galaxy oriantation horizontal and cropping it >>

回答 (1 件)

Daniel Vieira
Daniel Vieira 2020 年 2 月 21 日
you don't calculate areas in grayscale directly, you need to binarize to indicate which pixels count in the area and which dont.
For that:
bw=imbinarize(I);
R=struct2table(regionprops(bw,{'Area','Centroid','BoundingBox',...
'MajoraxisLength','MinoraxisLength','Eccentricity',...
'Orientation','ConvexArea','Extrema'}))
Note that imbinarize hardly ever yields good results at the default properties, without exploring parameters.
  3 件のコメント
Daniel Vieira
Daniel Vieira 2020 年 2 月 28 日
the imbinarize function takes a grayscale image and automatically sets a threshold, all gray values below it are set to zero and all values above it are set to one. it becomes a purely black and white image, no gray scale, that segments light objects from dark background in your original image.
what regionprops does is take every isolate white region in a black and white image (not grayscale, just black and white) and measure it. it returns a struct or table with the properties measured, one white region per line. So the 1st line of your output contains the properties of a reagion that corresponds to most of your galaxy, since it's the largest region and all others are <10 pixels in area. It is centered in pixel (x,y)=[76.753 49.208], and its excentricity is ~0.72, for example. The other lines are other regions of the image, which are probably just noise, and should be filtered out of your black and white image before applying regionprops, with morphological transformations for example.
Aya Ahmed
Aya Ahmed 2020 年 3 月 4 日
thank you very much ..

サインインしてコメントする。

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by