Malic -- Malib with csuFaceIdEval (and OpenCV)

English | Japanese

Malic is an opensource face recognition software which uses gabor wavelet.

Malic contains forrow programs

other program

download

Install

    Malic needs malib and open cv, if you install them pathed library. Type like this.

      $ ./configure
      $ make
      $ make install

    If you install them not pathed library, and install malic to local directory. Configure like this

      $ CFLAGS="-I/usr/local/malib/include -I/usr/local/opencv/include/opencv" \
      LDFLAGS="-L/usr/local/malib/lib -L/usr/local/opencv/lib" \
      ./configure --prefix=/usr/local/malic

Install to Debian Sarge
You should install malib and opencv to local directory

How to install malib

#you should install forrow packages
$ apt-get install libglib1.2 libglib1.2-dev libgtk1.2-dev gdk-imlib1-dev libgd-dev

#after move to malib directory
$ ./configure --prefix=/usr/local/malib
$ make
$ make install

How to install opencv

# you should install forrow packages
$ apt-get install libgtk2.0 libgtk2.0-dev swig python-dev

ffmpeg and libavcodec-dev packages cause some compile error so remove
(make them your self is more better)
$ apt-get remove ffmpeg libavcodec-dev

#after move to opencv directory
$ ./configure --prefix=/usr/local/opencv
$ make
$ make install
 
How to install malic

# move to malic directory
$ CFLAGS="-I/usr/local/malib/include -I/usr/local/opencv/include" \ LDFLAGS="-L/usr/local/malib/lib -L/usr/local/opencv/lib" \
./configure --prefix=/usr/local/malic

$ make
$ make install

note:
In old version (earlyer than malic-0.0.8.1) type include path as forrow
-I/usr/local/opencv/include/opencv

Tutorial


SourceForge.net Logo