Files
ports/graphics/poselib/Makefile
T
Robert Clausecker 915ef0a205 graphics/poselib: Minimal solvers for calibrated camera pose estimation
PoseLib provides a collection of minimal solvers for camera pose
estimation.  The focus is on calibrated absolute pose estimation
problems from different types of correspondences (e.g. point-point,
point-line, line-point, line-line).

The goals of this project are to provide

 - Fast and robust implementation of the current state-of-the-art
   solvers.
 - Consistent calling interface between different solvers.
 - Minimize dependencies, both external (currently only Eigen) and
   internal.  Each solver is (mostly) stand-alone, making it easy
   to extract only a specific solver to integrate into other frameworks.
 - Robust estimators (based on LO-RANSAC) that just works out-of-the-box
   for most cases.

WWW: https://github.com/PoseLib/PoseLib
2024-12-10 10:03:00 +01:00

23 lines
459 B
Makefile

PORTNAME= PoseLib
DISTVERSIONPREFIX= v
DISTVERSION= 2.0.4
CATEGORIES= graphics
MAINTAINER= fuz@FreeBSD.org
COMMENT= Minimal solvers for calibrated camera pose estimation
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/eigen3.pc:math/eigen3
USES= cmake pkgconfig
USE_GITHUB= yes
USE_LDCONFIG= yes
OPTIONS_DEFINE= NATIVE
NATIVE_CMAKE_BOOL= MARCH_NATIVE
CMAKE_ON= BUILD_SHARED_LIBS
.include <bsd.port.mk>