?? perform_wavelet_arithmetic_coding.m
字號:
function [y,nbr_bits] = perform_wavelet_arithmetic_coding(x, T, options)
% perform_wavelet_arithmetic_coding - arithmetic code a wavelet transformed image.
%
% Coding:
% [stream,nbr_bits] = perform_wavelet_arithmetic_coding(MW, T, options);
% decoding:
% MW = perform_wavelet_arithmetic_coding(stream, T, options);
%
% This will calls the function perform_arithmetic_coding through the scales.
% * options.coder_type: see perform_arithmetic_coding.
% * options.ordering_mode: specifies the ordering of coefficients
% 1 : zig-zag ordering of each scale (respect both scale and space locality).
% 2 : Pack each band at a time (keep only scale locality).
% 3 : flush in line (destroy scale locality), should not be used.
% * options.coding_mode:
% 1 : code independantly each scale.
% 2 : code at once all the scales.
%
% You should provide options.Jmin
%
% Copyright (c) 2005 Gabriel Peyr
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -