How to quantize the output?
8 views (last 30 days)
Show older comments
Jyothi Alugolu
on 21 Apr 2017
Commented: Jyothi Alugolu
on 24 Apr 2017
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....
0 Comments
Accepted Answer
Walter Roberson
on 21 Apr 2017
Supposing you have a routine QUANTIZE, then
output = complex( QUANTIZE(real(E0)), QUANTIZE(imag(E0)) )
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!