mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
pythonPackages.mask-rcnn: init at 2.1
This commit is contained in:
parent
fee1cee0ac
commit
e34636737c
52
pkgs/development/python-modules/mask-rcnn/default.nix
Normal file
52
pkgs/development/python-modules/mask-rcnn/default.nix
Normal file
@ -0,0 +1,52 @@
|
||||
{ buildPythonPackage
|
||||
, cython
|
||||
, fetchFromGitHub
|
||||
, h5py
|
||||
, imgaug
|
||||
, ipython
|
||||
, Keras
|
||||
, lib
|
||||
, matplotlib
|
||||
, numpy
|
||||
, opencv3
|
||||
, pillow
|
||||
, scikitimage
|
||||
, scipy
|
||||
, tensorflow
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "mask-rcnn";
|
||||
version = "2.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "matterport";
|
||||
repo = "Mask_RCNN";
|
||||
rev = "3deaec5d902d16e1daf56b62d5971d428dc920bc";
|
||||
sha256 = "13s3q9yh2q9m9vyksd269mww3bni4q2w7q5l419q70ca075qp8zp";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cython ];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
h5py
|
||||
imgaug
|
||||
ipython
|
||||
Keras
|
||||
matplotlib
|
||||
numpy
|
||||
opencv3
|
||||
pillow
|
||||
scikitimage
|
||||
scipy
|
||||
tensorflow
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Mask R-CNN for object detection and instance segmentation on Keras and TensorFlow";
|
||||
homepage = "https://github.com/matterport/Mask_RCNN";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ rakesh4g ];
|
||||
};
|
||||
}
|
||||
|
@ -878,6 +878,8 @@ in {
|
||||
|
||||
markerlib = callPackage ../development/python-modules/markerlib { };
|
||||
|
||||
mask-rcnn = callPackage ../development/python-modules/mask-rcnn { };
|
||||
|
||||
matchpy = callPackage ../development/python-modules/matchpy { };
|
||||
|
||||
maxminddb = callPackage ../development/python-modules/maxminddb { };
|
||||
|
Loading…
Reference in New Issue
Block a user