about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/op/opengv/package.nix
blob: ffe10a4d732bbb6a535e5c9ad4831633dfb31949 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{ lib
, stdenv
, eigen
, fetchFromGitHub
, cmake
}:
stdenv.mkDerivation (finalAttrs: {
  pname = "opengv";
  version = "0-unstable-2020-08-06";

  src = fetchFromGitHub {
    owner = "laurentkneip";
    repo = "opengv";
    rev = "91f4b19c73450833a40e463ad3648aae80b3a7f3";
    hash = "sha256-LfnylJ9NCHlqjT76Tgku4NwxULJ+WDAcJQ2lDKGWSI4=";
  };

  nativeBuildInputs = [
    cmake
  ];

  buildInputs = [
    eigen
  ];

  cmakeFlakes = [
    (lib.cmakeFeature "CMAKE_BUILD_TYPE" "Release")
  ];

  meta = {
    description = "A collection of computer vision methods for solving geometric vision problems";
    homepage = "https://github.com/laurentkneip/opengv";
    license = lib.licenses.bsd2;
    longDescription = ''OpenGV is a collection of computer vision methods for solving
        geometric vision problems. It contains absolute-pose, relative-pose,
        triangulation, and point-cloud alignment methods for the calibrated
        case. All problems can be solved with central or non-central cameras,
        and embedded into a random sample consensus or nonlinear optimization
        context. Matlab and Python interfaces are implemented as well. The link
        to the above pages also shows links to precompiled Matlab mex-libraries.
        Please consult the documentation for more information.'';
    maintainers = [ lib.maintainers.locochoco ];
    platforms = lib.platforms.all;
  };
})