Showing posts with label Scilab. Show all posts

How To Install Scilab Toolbox: SIVP (Scilab Image and Video Processing) toolbox

I think, first read my post before: http://tutorial.jaringankantor.com/2012/01/how-to-install-scilab-toolbox-sip-tool.html

OK firs download sivp:
http://sourceforge.net/projects/sivp/files/

and then extract and copy to your contrib Scilab example: /home/software/scilab-5.3.3/share/scilab/contrib

and then install requrement software:
# yum install opencv opencv-devel

open your scilab and type:
--> cd SCI/contrib/sivp-0.5.3/
--> exec('builder.sce')

If no error, sivp will appears in Toolbox menu after re-run (close and then open again) Scilab.

How To Install Scilab Toolbox: SIP Tool Box (siptoolbox)

Scilab is Matlab for linux, maybe you know :-)


Example your scilab at: /home/anwar/Sofware/Linux/scilab-5.3.3
# cd /home/anwar/Sofware/Linux/scilab-5.3.3
# yum install ImageMagick ImageMagick-devel

Download Packet
# git clone git://siptoolbox.git.sourceforge.net/gitroot/siptoolbox/animal
# git clone git://siptoolbox.git.sourceforge.net/gitroot/siptoolbox/siptoolbox


Setting ldconfig
# vim /etc/ld.so.conf
And content is:

include ld.so.conf.d/*.conf
/usr/local/lib
/home/anwar/Sofware/Linux/scilab-5.3.3/lib/scilab
/home/anwar/Sofware/Linux/scilab-5.3.3/lib/thirdparty

Save your ld.so.conf with type :wq
# ldconfig


Install Animal
# cd animal
Make sure you have installed automake, autoconf, and libtool. The following command bootstraps the build system
# ./autogen.sh
# ./configure
# make
# make install

Install Sip Tool Box

cd ../siptoolbox
./autogen.sh
./configure
make
sudo make install

FINISH ^_^