12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- # Tanım: OpenCV (Açık Kaynaklı Bilgisayar Vizyon Kütüphanesi) açık kaynaklı bir bilgisayar görme ve makine öğrenme yazılımı kütüphanesi.
- # URL: http://opencv.org/
- # Paketçi: milisarge
- # Gerekler: libjpeg-turbo libtiff jasper libpng ffmpeg28 gstreamer xine-lib v4l-utils xorg-mesa python3-numpy python-numpy gtkglext libgphoto2
- # Grup: kütüphane
- _pybin=python2
- _pydir=python2.7
- isim=opencv
- surum=3.3.0
- devir=2
- kaynak=(http://downloads.sourceforge.net/opencvlibrary/$isim-$surum.zip
- https://raw.githubusercontent.com/opencv/opencv_3rdparty/a62e20676a60ee0ad6581e217fe7e4bada3b95db/ippicv/ippicv_2017u2_lnx_intel64_20170418.tgz
- https://github.com/opencv/opencv_contrib/archive/$surum.tar.gz::opencv_contrib-$surum.tar.gz)
-
- derle() {
- cd $isim-$surum
-
- ipp_surum=ippicv_2017u2_lnx_intel64_20170418.tgz
- ipp_file=$DERLEME_KAYNAKDIZIN/$ipp_surum &&
- ipp_hash=$(md5sum $ipp_file | cut -d" " -f1) &&
- ipp_dir=.cache/ippicv &&
- mkdir -p $ipp_dir &&
- cp $ipp_file $ipp_dir/$ipp_hash-$ipp_surum
-
- mkdir build
- cd build
- cmake -D WITH_OPENCL=ON \
- -DWITH_OPENGL=ON \
- -DWITH_TBB=ON \
- -DWITH_XINE=ON \
- -DWITH_GSTREAMER=OFF \
- -DBUILD_WITH_DEBUG_INFO=OFF \
- -DBUILD_TESTS=OFF \
- -DBUILD_PERF_TESTS=OFF \
- -DBUILD_EXAMPLES=ON \
- -DINSTALL_C_EXAMPLES=ON \
- -DINSTALL_PYTHON_EXAMPLES=ON \
- -DCMAKE_BUILD_TYPE=Release \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DCMAKE_SKIP_RPATH=ON \
- -DOPENCV_EXTRA_MODULES_PATH="$SRC/opencv_contrib-$surum/modules" \
- ..
- make
- make DESTDIR=$PKG install
- cd "$PKG/usr/share"
- if [[ -d OpenCV/samples ]]; then
- mv OpenCV/samples "$SRC/$isim-samples"
- mv OpenCV $isim #dizini ismi tutarlı olması için
- elif [[ ! -d OpenCV ]]; then
- echo "Dizin adlandırma hatası!"
- fi
-
- }
|