All Projects → GothicAi → Instaboost

GothicAi / Instaboost

Code for ICCV2019 paper "InstaBoost: Boosting Instance Segmentation Via Probability Map Guided Copy-Pasting"

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Instaboost

CAP augmentation
Cut and paste augmentation for object detection and instance segmentation
Stars: ✭ 93 (-74.73%)
Mutual labels:  segmentation, augmentation
Ttach
Image Test Time Augmentation with PyTorch!
Stars: ✭ 455 (+23.64%)
Mutual labels:  segmentation, augmentation
Caer
High-performance Vision library in Python. Scale your research, not boilerplate.
Stars: ✭ 452 (+22.83%)
Mutual labels:  segmentation, augmentation
Segmentation
Catalyst.Segmentation
Stars: ✭ 27 (-92.66%)
Mutual labels:  segmentation, augmentation
Albumentations
Fast image augmentation library and an easy-to-use wrapper around other libraries. Documentation: https://albumentations.ai/docs/ Paper about the library: https://www.mdpi.com/2078-2489/11/2/125
Stars: ✭ 9,353 (+2441.58%)
Mutual labels:  segmentation, augmentation
Pytorch Toolbelt
PyTorch extensions for fast R&D prototyping and Kaggle farming
Stars: ✭ 942 (+155.98%)
Mutual labels:  segmentation, augmentation
Torchio
Medical image preprocessing and augmentation toolkit for deep learning
Stars: ✭ 708 (+92.39%)
Mutual labels:  segmentation, augmentation
Edafa
Test Time Augmentation (TTA) wrapper for computer vision tasks: segmentation, classification, super-resolution, ... etc.
Stars: ✭ 107 (-70.92%)
Mutual labels:  segmentation, augmentation
imgcrop
Simple image augmentation library focusing on random geometric cropping
Stars: ✭ 27 (-92.66%)
Mutual labels:  segmentation, augmentation
Cvpods
All-in-one Toolbox for Computer Vision Research.
Stars: ✭ 277 (-24.73%)
Mutual labels:  segmentation
Awesome Iccv
ICCV2019最新录用情况
Stars: ✭ 305 (-17.12%)
Mutual labels:  segmentation
Segmentation models
Segmentation models with pretrained backbones. Keras and TensorFlow Keras.
Stars: ✭ 3,575 (+871.47%)
Mutual labels:  segmentation
Retentioneering Tools
Retentioneering: product analytics, data-driven customer journey map optimization, marketing analytics, web analytics, transaction analytics, graph visualization, and behavioral segmentation with customer segments in Python. Opensource analytics, predictive analytics over clickstream, sentiment analysis, AB tests, machine learning, and Monte Carlo Markov Chain simulations, extending Pandas, Networkx and sklearn.
Stars: ✭ 291 (-20.92%)
Mutual labels:  segmentation
Tianchi Medical Lungtumordetect
天池医疗AI大赛[第一季]:肺部结节智能诊断 UNet/VGG/Inception/ResNet/DenseNet
Stars: ✭ 314 (-14.67%)
Mutual labels:  segmentation
Fastmaskrcnn
Mask RCNN in TensorFlow
Stars: ✭ 3,069 (+733.97%)
Mutual labels:  segmentation
Unet
unet for image segmentation
Stars: ✭ 3,751 (+919.29%)
Mutual labels:  segmentation
Dhsegment
Generic framework for historical document processing
Stars: ✭ 282 (-23.37%)
Mutual labels:  segmentation
Turbo Download Manager
a multi-browser download manager with multi-threading support
Stars: ✭ 282 (-23.37%)
Mutual labels:  segmentation
Deltapy
DeltaPy - Tabular Data Augmentation (by @firmai)
Stars: ✭ 344 (-6.52%)
Mutual labels:  augmentation
Deepcut
A Thai word tokenization library using Deep Neural Network
Stars: ✭ 330 (-10.33%)
Mutual labels:  segmentation

InstaBoost

This repository is implementation of ICCV2019 paper "InstaBoost: Boosting Instance Segmentation Via Probability Map Guided Copy-Pasting". Our paper has been released on arXiv https://arxiv.org/abs/1908.07801.

Install InstaBoost

Easy install version

Note: If you cannot install instaboost successfully using conda, we provide a simpler instaboost that do not need matting. The final results is 0.1 mAP lower than the original one, but we highly recommend it.

pip install instaboostfast
# in python
>>> import instaboostfast as instaboost

Original version

To install original InstaBoost, use this command. If you successfully install and import it in python, you are really lucky!

pip install instaboost

We strongly recommend install it using conda

conda create -n instaboost python=3.6
conda activate instaboost
conda install -c salilab opencv-nopython        # opencv2
conda install -c serge-sans-paille gcc_49       # you need to use conda's gcc instead of system's
ln -s ~/miniconda3/envs/instaboost/bin/g++-4.9 ~/miniconda3/envs/instaboost/bin/g++   #link to bin
ln -s ~/miniconda3/envs/instaboost/bin/gcc-4.9 ~/miniconda3/envs/instaboost/bin/gcc   #link to bin
pip install cython numpy
pip install opencv-mat
pip install instaboost

The detail implementation can be found here.

Because InstaBoost depends on matting package here, we highly recommend users to use python3.5 or 3.6, OpenCV 2.4 to avoid some errors. Envrionment setting instructions can be found here.

Quick Start

Video demo for InstaBoost: https://www.youtube.com/watch?v=iFsmmHUGy0g

  • News: InstaBoost is now officially supported in mmdetection!

Currently we have integrated InstaBoost into three open implementations: mmdetection, detectron and yolact.

Since these frameworks may continue updating, codes in this repo may be a little different from their current repo.

Use InstaBoost In Your Project

It is easy to integrate InstaBoost into your framework. You can refer to instructions of our implementations on mmdetection, detectron and yolact

Setup InstaBoost Configurations

To change InstaBoost Configurations, users can use function InstaBoostConfig.

Model Zoo

Results and models are available in the Model zoo. More models are coming!

Citation

If you use this toolbox or benchmark in your research, please cite this project.

@inproceedings{fang2019instaboost,
  title={Instaboost: Boosting instance segmentation via probability map guided copy-pasting},
  author={Fang, Hao-Shu and Sun, Jianhua and Wang, Runzhong and Gou, Minghao and Li, Yong-Lu and Lu, Cewu},
  booktitle={Proceedings of the IEEE International Conference on Computer Vision},
  pages={682--691},
  year={2019}
}

Please also cite mmdetection, detectron and yolact if you use the corresponding codes.

Acknowledgement

Our detection and instance segmentation framework is based on mmdetecion, detectron and yolact.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].