From: Sprinceana on
I solved the error myself in haar_trans excuse me:(

The problem I'm facing is in load_image.m It is placed where it should but it gives this error:

??? Undefined function or method 'image_resize' for input arguments of type 'double'.

Error in ==> load_image at 86
y = image_resize(y,n,n);

On line 86 in load_image.m:

y = image_resize(y,n,n);

I think it's a little bug in load_image.m because it's at the final of the code.

For the moment I don't know how to correct this error in load_image.m.
From: Sprinceana on
I don't know what is the real source of error on file load_image.m in the matlab library. It's weird.
From: Wayne King on
"Sprinceana " <mihaispr(a)yahoo.com> wrote in message <hrrt48$kmu$1(a)fred.mathworks.com>...
> I solved the error myself in haar_trans excuse me:(
>
> The problem I'm facing is in load_image.m It is placed where it should but it gives this error:
>
> ??? Undefined function or method 'image_resize' for input arguments of type 'double'.
>
> Error in ==> load_image at 86
> y = image_resize(y,n,n);
>
> On line 86 in load_image.m:
>
> y = image_resize(y,n,n);
>
> I think it's a little bug in load_image.m because it's at the final of the code.
>
> For the moment I don't know how to correct this error in load_image.m.

Hi,

MATLAB can't find the function image_resize. Wherever you got these functions. You have to make sure that they are in a directory that is in the MATLAB path.

Wayne
From: Sprinceana on
Thanks Wayne it's solved edge detection using HWT algorithm Haar 2D by means of Wavelet Toolbox.

Here is the full source:

http://www.mediafire.com/?tdnzjdzi4nm
First  |  Prev  | 
Pages: 1 2 3
Prev: battery controller
Next: help with unique function