[Scilab-users] command Scilab/Matlab

Dang, Christophe Christophe.Dang at sidel.com
Fri Dec 13 09:07:33 CET 2013


Hello,

> De : daniel souza
> Envoyé : vendredi 13 décembre 2013 02:27
>
> indata=inputdlg({'input filename'});
> a = imread(indata{1});
>
> How can I write these lines in scilab?  

I don't know much Mtlab, but from its documentation
http://www.mathworks.fr/fr/help/matlab/ref/imread.html
it seems you want to read an image.

There are several modules dedicated to picture processing, see
http://atoms.scilab.org/categories/Image_Processing

You may look at

* SIP (Scilab Image Processing toolbox),
* SIVP (Scilab Image and Video Processing toolbox) or
* IPD (Image Processing Design toolbox)

depending on what you want to do.

With SIP and SIVP:
image = imread("file_name")
imshow(image)

With IPD:
image = ReadImage("file_name")
ShowImage(image)

Hope this helps

regards

-- 
Christophe Dang Ngoc Chan
Mechanical calculation engineer

______________________________________________________________________

This e-mail may contain confidential and/or privileged information. If you are not the intended recipient (or have received this e-mail in error), please notify the sender immediately and destroy this e-mail. Any unauthorized copying, disclosure or distribution of the material in this e-mail is strictly forbidden.
______________________________________________________________________



More information about the users mailing list