perform_pyramid_transform_simoncelli.m

来自「我找到的matlab的最新工具箱」· M 代码 · 共 18 行

M
18
字号
function y = perform_pyramid_transform_simoncelli(x, Jmin,options)

% perform_pyramid_transform_simoncelli - Laplacian pyramidal transform
%
%   y = perform_pyramid_transform_simoncelli(x, Jmin);
%
%   This is just a convenient wrapper to the original steerable 
%   matlab toolbox of Simoncelli that can be downloaded from
%       http://www.cns.nyu.edu/~eero/STEERPYR/
%
%   It provide a simpler interface that directly output a cell
%   array of images. Usage :
%
%   M = load_image('lena');
%   MS = perform_pyramid_transform_simoncelli(M, 3); % synthesis
%   M1 = perform_pyramid_transform_simoncelli(MS);   % reconstruction
%   
%   Copyright (c) 2005 Gabriel Peyr

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?