필터 지우기
필터 지우기

How to use matlab to draw such a diagram?

조회 수: 4 (최근 30일)
guan wang
guan wang 2023년 3월 22일
댓글: guan wang 2023년 3월 22일
This graph is the energy spectrum of wavelet scattering coefficients. How can I draw this graph? How should the energy spectrum of an image be calculated? thank you.

답변 (1개)

Sulaymon Eshkabilov
Sulaymon Eshkabilov 2023년 3월 22일
What are your given parameter values and equation?
You can use similar approach as shown in this example:
[x,y]=meshgrid(linspace(0,2*pi));
R = 5;
X = R*cos(x).*sin(y);
Y = R*sin(x).*sin(y);
Z = -R*cos(y);
surf(X,Y,Z)
colormap jet
axis on; shg
view([180 90])
  댓글 수: 1
guan wang
guan wang 2023년 3월 22일
Thank you.It's very useful to me.
The figure is derived from the Fourier energy spectrum of a certain image.

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

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

태그

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by