├── .gitignore ├── DataHandler.py ├── Export Mask RCNN SavedModel for inference ├── LICENSE ├── README.md ├── Running training and evaluation of Mask RCNN locally ├── Running training and evaluation of Mask RCNN on google ai platform ├── create_coco_tf_record.py ├── image_segmentation_mask_rcnn.ipynb ├── labelmap.pbtxt ├── labelme2coco.py ├── mask_rcnn_inception_resnet_v2_1024x1024_coco17_gpu-8-cloud.config └── mask_rcnn_inception_resnet_v2_1024x1024_coco17_gpu-8.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sniper0110/image-segmentation-with-Mask-RCNN/HEAD/.gitignore -------------------------------------------------------------------------------- /DataHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sniper0110/image-segmentation-with-Mask-RCNN/HEAD/DataHandler.py -------------------------------------------------------------------------------- /Export Mask RCNN SavedModel for inference: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sniper0110/image-segmentation-with-Mask-RCNN/HEAD/Export Mask RCNN SavedModel for inference -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sniper0110/image-segmentation-with-Mask-RCNN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sniper0110/image-segmentation-with-Mask-RCNN/HEAD/README.md -------------------------------------------------------------------------------- /Running training and evaluation of Mask RCNN locally: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sniper0110/image-segmentation-with-Mask-RCNN/HEAD/Running training and evaluation of Mask RCNN locally -------------------------------------------------------------------------------- /Running training and evaluation of Mask RCNN on google ai platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sniper0110/image-segmentation-with-Mask-RCNN/HEAD/Running training and evaluation of Mask RCNN on google ai platform -------------------------------------------------------------------------------- /create_coco_tf_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sniper0110/image-segmentation-with-Mask-RCNN/HEAD/create_coco_tf_record.py -------------------------------------------------------------------------------- /image_segmentation_mask_rcnn.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sniper0110/image-segmentation-with-Mask-RCNN/HEAD/image_segmentation_mask_rcnn.ipynb -------------------------------------------------------------------------------- /labelmap.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sniper0110/image-segmentation-with-Mask-RCNN/HEAD/labelmap.pbtxt -------------------------------------------------------------------------------- /labelme2coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sniper0110/image-segmentation-with-Mask-RCNN/HEAD/labelme2coco.py -------------------------------------------------------------------------------- /mask_rcnn_inception_resnet_v2_1024x1024_coco17_gpu-8-cloud.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sniper0110/image-segmentation-with-Mask-RCNN/HEAD/mask_rcnn_inception_resnet_v2_1024x1024_coco17_gpu-8-cloud.config -------------------------------------------------------------------------------- /mask_rcnn_inception_resnet_v2_1024x1024_coco17_gpu-8.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sniper0110/image-segmentation-with-Mask-RCNN/HEAD/mask_rcnn_inception_resnet_v2_1024x1024_coco17_gpu-8.config --------------------------------------------------------------------------------