Skip to content

How to use pycocotools

JihunJung edited this page Nov 11, 2019 · 6 revisions
  • pycocotools setting

    • python library 설치
    $ git clone https://github.com/cocodataset/cocoapi.git
    $ cd cocoapi
    $ cd PythonAPI
    $ python setup.py build_ext install --record uninstall.txt
    $ pip show pycocotools
    • python library 설치(setup.py)를 통해 설치 한 경우 삭제 방법
    $ cd cocoapi/PythonAPI
    $ cat uninstall.txt | xargs rm -rf
    • library 설치 없이 source level로 사용
    import sys
    sys.path.insert(0, 'path to cocoapi')
  • MSCoCo Dataset Format

  • pycocotools 사용해서 GT bbox display : BBox Visualize

  • HOME
    1. Environment Setting
      • Install CUDA
      • Install cuDNN
      • Python Setting
        • Install Python
        • virtualenv setting
        • Jupter setting
    2. DeepLearning Basic
      • To do
    3. Object Detection
      • How to use TensorFlow Object Detection API
      • Remote Tensorboard Connection
      • How to use pycocotools for managing dataset(Using coco format)
    4. TensorFlow
      • To do
    5. Ubuntu
      • User management
      • SSH connect(with login message)
      • File Transfer between local and remote
    6. ETC
      • To do

Clone this wiki locally