An open API service indexing awesome lists of open source software.

https://github.com/koushik-elite/image-segmentation

Image Segmentation Sample using pytorch
https://github.com/koushik-elite/image-segmentation

computer-vision deep-learning deep-neural-networks image-recognition image-segmentation object-detection python3 pytorch rcnn

Last synced: 2 months ago
JSON representation

Image Segmentation Sample using pytorch

Awesome Lists containing this project

README

        

# Image Segmentation
Image Segmentation using pytorch

Setup Information
### maskrcnn_benchmark and coco api dependencies
pip install ninja yacs cython matplotlib tqdm opencv-python

### follow PyTorch installation in https://pytorch.org/get-started/locally/
### we give the instructions for CUDA 9.0
pip install -c pytorch pytorch-nightly torchvision cudatoolkit=9.0

git clone https://github.com/cocodataset/cocoapi.git
cd cocoapi/PythonAPI
python setup.py build_ext install
cd ../../

### install apex
rm -rf apex
git clone https://github.com/NVIDIA/apex.git
cd apex
git pull
python setup.py install --cuda_ext --cpp_ext
cd ../

### install PyTorch Detection
git clone https://github.com/facebookresearch/maskrcnn-benchmark.git
cd maskrcnn-benchmark

### the following will install the lib with
### symbolic links, so that you can modify
### the files if you want and won't need to
### re-build it
python setup.py build develop

Reference

https://github.com/facebookresearch/maskrcnn-benchmark