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

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Build Interactive Tools에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by