jatin-tec commited on
Commit
01e5efb
·
1 Parent(s): 30e12dc
main.py CHANGED
@@ -1,13 +1,13 @@
1
  import gradio as gr
2
  from PIL import Image
3
 
 
4
  #Set the Working Cloned directory - To find local version of the library
5
  sys.path.append('/home/user/app/Mask_RCNN')
6
 
7
  import mrcnn.model as modellib
8
  from mrcnn.config import Config
9
  import pickle
10
- import sys
11
 
12
 
13
  def get_predictions_from_mask_rcnn(mask_model, image):
 
1
  import gradio as gr
2
  from PIL import Image
3
 
4
+ import sys
5
  #Set the Working Cloned directory - To find local version of the library
6
  sys.path.append('/home/user/app/Mask_RCNN')
7
 
8
  import mrcnn.model as modellib
9
  from mrcnn.config import Config
10
  import pickle
 
11
 
12
 
13
  def get_predictions_from_mask_rcnn(mask_model, image):
mask_rcnn.egg-info/PKG-INFO ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Metadata-Version: 2.1
2
+ Name: mask-rcnn
3
+ Version: 2.1
4
+ Summary: Mask R-CNN for object detection and instance segmentation
5
+ Home-page: https://github.com/matterport/Mask_RCNN
6
+ Author: Matterport
7
+ Author-email: waleed.abdulla@gmail.com
8
+ License: MIT
9
+ Keywords: image instance segmentation object detection mask rcnn r-cnn tensorflow keras
10
+ Classifier: Development Status :: 5 - Production/Stable
11
+ Classifier: Environment :: Console
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Intended Audience :: Information Technology
14
+ Classifier: Intended Audience :: Education
15
+ Classifier: Intended Audience :: Science/Research
16
+ Classifier: License :: OSI Approved :: MIT License
17
+ Classifier: Natural Language :: English
18
+ Classifier: Operating System :: OS Independent
19
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
20
+ Classifier: Topic :: Scientific/Engineering :: Image Recognition
21
+ Classifier: Topic :: Scientific/Engineering :: Visualization
22
+ Classifier: Topic :: Scientific/Engineering :: Image Segmentation
23
+ Classifier: Programming Language :: Python :: 3.4
24
+ Classifier: Programming Language :: Python :: 3.5
25
+ Classifier: Programming Language :: Python :: 3.6
26
+ Requires-Python: >=3.4
27
+
28
+ This is an implementation of Mask R-CNN on Python 3, Keras, and TensorFlow.
29
+ The model generates bounding boxes and segmentation masks for each instance of an object in the image.
30
+ It's based on Feature Pyramid Network (FPN) and a ResNet101 backbone.
mask_rcnn.egg-info/SOURCES.txt ADDED
File without changes
mask_rcnn.egg-info/dependency_links.txt ADDED
@@ -0,0 +1 @@
 
 
1
+
mask_rcnn.egg-info/top_level.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ mrcnn