7 stdenv.mkDerivation (finalAttrs: {
9 version = "0-unstable-2020-08-06";
11 src = fetchFromGitHub {
12 owner = "laurentkneip";
14 rev = "91f4b19c73450833a40e463ad3648aae80b3a7f3";
15 hash = "sha256-LfnylJ9NCHlqjT76Tgku4NwxULJ+WDAcJQ2lDKGWSI4=";
27 (lib.cmakeFeature "CMAKE_BUILD_TYPE" "Release")
31 description = "Collection of computer vision methods for solving geometric vision problems";
32 homepage = "https://github.com/laurentkneip/opengv";
33 license = lib.licenses.bsd2;
34 longDescription = ''OpenGV is a collection of computer vision methods for solving
35 geometric vision problems. It contains absolute-pose, relative-pose,
36 triangulation, and point-cloud alignment methods for the calibrated
37 case. All problems can be solved with central or non-central cameras,
38 and embedded into a random sample consensus or nonlinear optimization
39 context. Matlab and Python interfaces are implemented as well. The link
40 to the above pages also shows links to precompiled Matlab mex-libraries.
41 Please consult the documentation for more information.'';
42 maintainers = [ lib.maintainers.locochoco ];
43 platforms = lib.platforms.all;