how can compute the frequency of given gray scale image?...

조회 수: 6 (최근 30일)
sumi
sumi 2014년 3월 19일
댓글: sumi 2014년 3월 20일
I am using biomodality detection algorithm. In that algorithm using d frequency of gray image..
n_s=freqz2(Ps);
i am using this coding.. but i got 64x64 matrix.. i want one output from this coding..

답변 (1개)

Margreet
Margreet 2014년 3월 19일
[H, f1, f2] = freqz2(h, n1, n2) returns H, the n2-by-n1 frequency response of h, and the frequency vectors f1 (of length n1) and f2 (of length n2). h is a two-dimensional FIR filter, in the form of a computational molecule. f1 and f2 are returned as normalized frequencies in the range -1.0 to 1.0, where 1.0 corresponds to half the sampling frequency, or π radians.
So if you put n1 = 1 and n2= 1, you should get a 1-by-1 frequency response H. Hope that helps.

카테고리

Help CenterFile Exchange에서 Digital Filter Design에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by