From: ImageAnalyst on
I forgot to mention imread(). imread() is in the base MATLAB package
and the Image Processing Toolbox is not required for that, despite its
prefix.
From: Oleg Komarov on
ImageAnalyst <imageanalyst(a)mailinator.com> wrote in message <e357ab44-a25b-4902-a506-6fb334bbd2d4(a)v20g2000yqv.googlegroups.com>...
> Nothing in there really requires that you have the Image Processing
> Toolbox. I used imshow() only for the demo - you wouldn't use it,
> you'd just use whatever method you're currently using to display/plot
> figures. And for imresize() that's just to get the matrices the same
> size. You could replace that either by just padding out the array, or
> using interp2() or some other method.

Thank you for the explanations, as soon as I'll adapt the script I'll give you my feedback.

Oleg