【发布时间】:2009-12-13 16:41:32
【问题描述】:
如何使用 MATLAB 中的 qtdecomp(Image,threshold) 函数来查找 RGB 图像的四叉树分解?
我试过了:
Ig = rgb2gray(I); % I is the rgb image
S = qtdecomp(I,.27);
但我收到此错误:
??? Error using ==> qtdecomp>ParseInputs
A must be two-dimensional
Error in ==> qtdecomp at 88
[A, func, params, minDim, maxDim] = ParseInputs(varargin{:});
我也收到此错误:
??? Error using ==> qtdecomp>ParseInputs
Size of A is not a multiple of the maximum block dimension
谁能告诉我该怎么做?
【问题讨论】: