Frei0r is a minimalistic plugin API for video effects. Note that the 0 in the name is a zero, not a capital letter o.
This package is known to build and work properly using an LFS-7.10 platform.
Download (HTTP): https://files.dyne.org/frei0r/releases/frei0r-plugins-1.5.0.tar.gz
Download MD5 sum: afdaa90dc70453c91bb60e0f71e701fd
Download size: 1.4 MB
Estimated disk space required: 39 MB
Estimated build time: 0.5 SBU
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/frei0r
Install Frei0r by running the following commands:
mkdir -vp build &&
cd        build &&
cmake -DCMAKE_INSTALL_PREFIX=/usr    \
      -DCMAKE_BUILD_TYPE=Release     \
      -DOpenCV_DIR=/usr/share/OpenCV \
      -Wno-dev ..                    &&
make
        This package does not come with a test suite.
          Now, as the root user:
        
make install
          -DOpenCV_DIR=/usr/share/OpenCV: This
          parameter helps the make procedure to find the libippicv.a library, installed under that
          directory tree.
        
          -DWITHOUT_GAVL=ON: This option
          instructs the make procedure to disable building plugins dependent
          upon gavl.
        
          -DWITHOUT_OPENCV=ON: This option
          instructs the make procedure to disable building plugins dependent
          upon OpenCV.
        
Last updated on 2016-08-29 20:28:42 -0700