Skip to content
Snippets Groups Projects
Commit 59ca00a5 authored by Arnaud Degroote's avatar Arnaud Degroote
Browse files

[wip/histodet] Introduce histodet-1.0

HistoDet (Histogram Detector) is a fast object detector based
on histograms (luminance, hue, or composite).
parent 84b103ab
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,7 @@ SUBDIR+= gladys
SUBDIR+= hatpconsole
SUBDIR+= hatponboard-lib
SUBDIR+= hatptester
SUBDIR+= histodet
SUBDIR+= hyper
SUBDIR+= hyper_genom
SUBDIR+= icu-genom
......
HistoDet (Histogram Detector) is a fast object detector based on histograms
(luminance, hue, or composite).
# robotpkg Makefile for: image/histodet
# Created: Arnaud Degroote on Thu, 12 Sep 2013
#
DISTNAME= histodet-${VERSION}
VERSION= 1.0
CATEGORIES= image
MASTER_SITES= ${MASTER_SITE_OPENROBOTS:=histodet/}
MASTER_REPOSITORY= ${MASTER_REPOSITORY_OPENROBOTS}histodet
MAINTAINER= robotpkg@laas.fr
COMMENT= Fast object detector based on histogram
LICENSE= 2-clause-bsd
PKG_SUPPORTED_OPTIONS+= demo
PKG_OPTION_DESCR.demo?= Install demo histodet tool, including the learning tool
define PKG_OPTION_SET.demo
CMAKE_ARGS+= -DBUILD_DEMO=ON
// requiere opencv_highgui
endef
define PKG_OPTION_UNSET.doc
CMAKE_ARGS+= -DBUILD_DEMO=OFF
endef
include ../../image/opencv/depend.mk
include ../../mk/sysdep/cmake.mk
include ../../mk/language/c.mk
include ../../mk/language/c++.mk
include ../../mk/robotpkg.mk
@comment Wed Sep 11 14:23:34 CEST 2013
${PLIST.demo}bin/histodet_demo
${PLIST.demo}bin/histodet_demo_action
include/histodet/bucketer.hpp
include/histodet/detectorHistogram.hpp
include/histodet/distance.hpp
include/histodet/histodet.hpp
include/histodet/histogramAbstract.hpp
include/histodet/histogramBruteforce.hpp
include/histodet/histogramDistributive.hpp
include/histodet/hsv.hpp
include/histodet/labelReader.hpp
include/histodet/object.hpp
include/histodet/objectExtractor.hpp
include/histodet/predefinedDetectors.hpp
include/histodet/refinerAbstract.hpp
include/histodet/refinerCorrelation.hpp
include/histodet/refinerHueBlobs.hpp
include/histodet/stretcher.hpp
lib/libhistodet.so
lib/pkgconfig/histodet.pc
# robotpkg depend.mk for: image/histodet
# Created: Arnaud Degroote on Thu, 12 Sep 2013
#
DEPEND_DEPTH:= ${DEPEND_DEPTH}+
HISTODET_DEPEND_MK:=${HISTODET_DEPEND_MK}+
ifeq (+,$(DEPEND_DEPTH))
DEPEND_PKG+= histodet
endif
ifeq (+,$(HISTODET_DEPEND_MK))
PREFER.histodet?= robotpkg
DEPEND_USE+= histodet
DEPEND_ABI.histodet?= histodet>=1.0
DEPEND_DIR.histodet?= ../../wip/histodet
SYSTEM_SEARCH.histodet=\
bin/histodet_demo \
include/histodet/hsv.hpp \
lib/libhistodet.so \
'lib/pkgconfig/histodet.pc:/Version/s/[^0-9.]//gp'
endif
DEPEND_DEPTH:= ${DEPEND_DEPTH:+=}
SHA1 (histodet-1.0.tar.gz) = dbe40cf4b98d9e2e70c04fe344ebe01454e1bd80
RMD160 (histodet-1.0.tar.gz) = 1f060a91517708850e1911dedfbec7ed73d621a9
Size (histodet-1.0.tar.gz) = 35996 bytes
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment