フィルターのクリア

How to quantize the output?

4 ビュー (過去 30 日間)
Jyothi Alugolu
Jyothi Alugolu 2017 年 4 月 21 日
コメント済み: Jyothi Alugolu 2017 年 4 月 24 日
Hello, in gaborconvolve.m code,the output EO consists of real and imaginary components(where real part is the result of convolving with the even symmetric filter, the imaginary part is the result from convolution with the odd symmetric filter). Now, the function must be phase quantized to get output in the form of 0-1 binary matrix...How do i change the code to phase quantize the EO output....

採用された回答

Walter Roberson
Walter Roberson 2017 年 4 月 21 日
Supposing you have a routine QUANTIZE, then
output = complex( QUANTIZE(real(E0)), QUANTIZE(imag(E0)) )
  13 件のコメント
Walter Roberson
Walter Roberson 2017 年 4 月 24 日
Result = cellfun( @(M) angle(M) >= 0, EO, 'uniform', 0)
Jyothi Alugolu
Jyothi Alugolu 2017 年 4 月 24 日
thank you soo much..

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

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by