Mapper used for transform coding
조회 수: 1 (최근 30일)
이전 댓글 표시
After doing the transform of an image i have to do the mapper with this condition
Z_i= 2 y_i 0<=y_i<=b
2|y_i| -1-b <=y_i<=0
b+|y_i| other wise.
where b=y_min, y_i is the wavelet coefficients
I am having following doubts.
1.When i try to give min of the coefficients with command u=min(y_i) i am getting many values.Whats the reason?how to get a single value for b?
2. if true
% for y_i=0:b
Z_i=2 y_i
end
if Y_i= -1-b :0
Z_i=2|y_i
else
Z_i= 0;
end
Is this the way to code the above mapper function in matlab?
Thank you so much for your patience to read my doubt.Expecting a kind reply.
댓글 수: 0
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Denoising and Compression에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!