Trying to find out implementation of the following image

1 回表示 (過去 30 日間)
shahriar sowad
shahriar sowad 2021 年 10 月 18 日
コメント済み: Image Analyst 2021 年 10 月 19 日
I have plotted an magnitude spectrum X(k); now i want to find the value from this image; how do i do that?

回答 (1 件)

Image Analyst
Image Analyst 2021 年 10 月 18 日
You can display X and then call impixelinfo to mouse around over the image and see the values at the cursor location
imshow(X, []);
impixelinfo;
  2 件のコメント
shahriar sowad
shahriar sowad 2021 年 10 月 19 日
i want to find the value for the image that i have added with the question, not for the magnitude
Image Analyst
Image Analyst 2021 年 10 月 19 日
Then this will work on the actual screenshot image you added/attached with your question:
rgbImage = imread('Screenshot 2021-10-18 230205.png');
imshow(rgbImage);
impixelinfo

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

Community Treasure Hunt

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

Start Hunting!

Translated by