Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 3 Oct 2020 01:49:59 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r551248 - in head/graphics: . dbow2
Message-ID:  <202010030149.0931nx5I096396@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Sat Oct  3 01:49:58 2020
New Revision: 551248
URL: https://svnweb.freebsd.org/changeset/ports/551248

Log:
  New port: graphics/dbow2: C++ Library for converting images into a bag-of-word representation

Added:
  head/graphics/dbow2/
  head/graphics/dbow2/Makefile   (contents, props changed)
  head/graphics/dbow2/distinfo   (contents, props changed)
  head/graphics/dbow2/pkg-descr   (contents, props changed)
  head/graphics/dbow2/pkg-plist   (contents, props changed)
Modified:
  head/graphics/Makefile

Modified: head/graphics/Makefile
==============================================================================
--- head/graphics/Makefile	Sat Oct  3 01:20:04 2020	(r551247)
+++ head/graphics/Makefile	Sat Oct  3 01:49:58 2020	(r551248)
@@ -106,6 +106,7 @@
     SUBDIR += cuttlefish
     SUBDIR += darktable
     SUBDIR += dataplot
+    SUBDIR += dbow2
     SUBDIR += dc20pack
     SUBDIR += dcmtk
     SUBDIR += dcp2icc

Added: head/graphics/dbow2/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/dbow2/Makefile	Sat Oct  3 01:49:58 2020	(r551248)
@@ -0,0 +1,27 @@
+# $FreeBSD$
+
+PORTNAME=	dbow2
+DISTVERSIONPREFIX=	v
+DISTVERSION=	1.1-free-23
+DISTVERSIONSUFFIX=	-g3924753
+CATEGORIES=	graphics
+
+MAINTAINER=	yuri@FreeBSD.org
+COMMENT=	C++ Library for converting images into a bag-of-word representation
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+LIB_DEPENDS=	libopencv_photo.so:graphics/opencv \
+		libopencv_core.so:graphics/opencv-core
+
+USES=		cmake compiler:c++11-lang
+USE_LDCONFIG=	yes
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	dorian3d
+GH_PROJECT=	DBoW2
+
+CMAKE_OFF=	BUILD_Demo
+
+.include <bsd.port.mk>

Added: head/graphics/dbow2/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/dbow2/distinfo	Sat Oct  3 01:49:58 2020	(r551248)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1601689019
+SHA256 (dorian3d-DBoW2-v1.1-free-23-g3924753_GH0.tar.gz) = cc56a75fab644786f3caf72c50af7e3af731cec2d59ea4a8dbb8402282f469b1
+SIZE (dorian3d-DBoW2-v1.1-free-23-g3924753_GH0.tar.gz) = 581096

Added: head/graphics/dbow2/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/dbow2/pkg-descr	Sat Oct  3 01:49:58 2020	(r551248)
@@ -0,0 +1,8 @@
+DBoW2 is an improved version of the DBow library, an open source C++ library for
+indexing and converting images into a bag-of-word representation. It implements
+a hierarchical tree for approximating nearest neighbours in the image feature
+space and creating a visual vocabulary. DBoW2 also implements an image database
+with inverted and direct files to index images and enabling quick queries and
+feature comparisons.
+
+WWW: https://github.com/dorian3d/DBoW2

Added: head/graphics/dbow2/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/dbow2/pkg-plist	Sat Oct  3 01:49:58 2020	(r551248)
@@ -0,0 +1,14 @@
+include/DBoW2/BowVector.h
+include/DBoW2/DBoW2.h
+include/DBoW2/DBoW2Config.cmake
+include/DBoW2/FBrief.h
+include/DBoW2/FClass.h
+include/DBoW2/FORB.h
+include/DBoW2/FSurf64.h
+include/DBoW2/FeatureVector.h
+include/DBoW2/QueryResults.h
+include/DBoW2/ScoringObject.h
+include/DBoW2/TemplatedDatabase.h
+include/DBoW2/TemplatedVocabulary.h
+lib/cmake/DBoW2/DBoW2Config.cmake
+lib/libDBoW2.so



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202010030149.0931nx5I096396>