diff options
author | prlw1 <prlw1@pkgsrc.org> | 2017-03-16 21:59:13 +0000 |
---|---|---|
committer | prlw1 <prlw1@pkgsrc.org> | 2017-03-16 21:59:13 +0000 |
commit | 015525b547f993699603abc354029f21c3bb0cdd (patch) | |
tree | f1973e0f09356606fedc44f4876f86d59d462a5e /graphics/opencv/Makefile | |
parent | de458ab0bb0397ec137ea8b37a534ddb282f439d (diff) | |
download | pkgsrc-015525b547f993699603abc354029f21c3bb0cdd.tar.gz |
Update opencv to 3.2
Many Darwin library handling patches removed because of commit 912592de4ce
Remove "INSTALL_NAME_DIR lib" target property
Full changelog at
https://github.com/opencv/opencv/wiki/ChangeLog
Highlights:
* Results from 11 GSoC 2016 projects have been submitted to the
library, 9 of them have been integrated already, 2 still pending
(the numbers below are the id's of the Pull Requests in opencv or
opencv_contrib repository):
+ Ambroise Moreau (Delia Passalacqua) - sinusoidal patterns for
structured light and phase unwrapping module (711)
+ Alexander Bokov (Maksim Shabunin) - DIS optical flow
(excellent dense optical flow algorithm that is both
significantly better and significantly faster than Farneback's
algorithm - our baseline), and learning-based color constancy
algorithms implementation (689, 708, 722, 736, 745, 747)
+ Tyan Vladimir (Antonella Cascitelli) - CNN based tracking
algorithm (GOTURN) (718, 899)
+ Vladislav Samsonov (Ethan Rublee) - PCAFlow and Global Patch
Collider algorithms implementation (710, 752)
+ Jo o Cartucho (Vincent Rabaud) - Multi-language OpenCV
Tutorials in Python, C++ and Java (7041)
+ Jiri Horner (Bo Li) - New camera model and parallel processing
for stitching pipeline (6933)
+ Vitaliy Lyudvichenko (Anatoly Baksheev) - Optimizations and
improvements of dnn module (707, 750)
+ Iric Wu (Vadim Pisarevsky) - Base64 and JSON support for file
storage (6697, 6949, 7088). Use names like
`"myfilestorage.xml?base64"` when writing file storage to
store big chunks of numerical data in base64-encoded form.
+ Edgar Riba (Manuele Tamburrano, Stefano Fabri) - tiny_dnn
improvements and integration (720: pending)
+ Yida Wang (Manuele Tamburrano, Stefano Fabri) - Quantization
and semantic saliency detection with tiny_dnn
+ Anguelos Nicolaou (Lluis Gomez) - Word-spotting CNN based
algorithm (761: pending)
Diffstat (limited to 'graphics/opencv/Makefile')
-rw-r--r-- | graphics/opencv/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/graphics/opencv/Makefile b/graphics/opencv/Makefile index 7a286cbf9ec..fad3664816f 100644 --- a/graphics/opencv/Makefile +++ b/graphics/opencv/Makefile @@ -1,13 +1,12 @@ -# $NetBSD: Makefile,v 1.69 2017/02/28 15:20:06 ryoon Exp $ +# $NetBSD: Makefile,v 1.70 2017/03/16 21:59:13 prlw1 Exp $ -DISTNAME= opencv-3.1.0 -PKGREVISION= 6 +DISTNAME= opencv-3.2.0 CATEGORIES= graphics devel -MASTER_SITES= ${MASTER_SITE_GITHUB:=Itseez/} +MASTER_SITES= ${MASTER_SITE_GITHUB:=opencv/} EXTRACT_SUFX= .zip MAINTAINER= anthony.mallet@laas.fr -HOMEPAGE= http://code.opencv.org/projects/OpenCV/wiki/WikiStart +HOMEPAGE= http://opencv.org/ COMMENT= Library for computer vision problems LICENSE= modified-bsd @@ -20,7 +19,8 @@ INSTALLATION_DIRS+= share/doc/opencv/papers INSTALLATION_DIRS+= share/doc/opencv/ref/pics INSTALLATION_DIRS+= share/OpenCV/haarcascades -PKGCONFIG_OVERRIDE+= opencv.pc.cmake.in +PKGCONFIG_OVERRIDE+= unix-install/opencv.pc +PKGCONFIG_OVERRIDE_STAGE= post-configure PY_PATCHPLIST= yes REPLACE_PYTHON+= samples/python/*.py |