Skip to content

Repo for most of CV problems, such as image classification, object detection, pose estimation, segmentation, and so on.

License

Notifications You must be signed in to change notification settings

janicevidal/PyTorchCV

 
 

Repository files navigation

Source code for Deep Learning Based CV Problems(Pytorch)

@misc{CV2018,
  author =       {Donny You (youansheng@gmail.com)},
  howpublished = {\url{https://github.com/CVBox/PytorchCV}},
  year =         {2018}
}

This repository provides source code for some deep learning based cv problems. We'll do our best to keep this repository up to date. If you do find a problem about this repository, please raise it as an issue. We will fix it immediately.

Details:

  • Pose Estimation

    • Convolutional Pose Machines
    • Realtime Multi-Person 2D Pose Estimation using Part Affinity Fields
    • Associative Embedding: End-to-End Learning for Joint Detection and Grouping
  • Object Detection

    • SSD: Single Shot MultiBox Detector
  • Semantic Segmentation

    • Efficient ConvNet for Real-time Semantic Segmentation
  • Image Classification

    • Densely Connected Convolutional Networks

Examples

  • Train the openpose model
python main.py  --hypes hypes/pose/coco/op_coco_pose.json \
                --base_lr 0.001 \
                --phase train
  • Finetune the openpose model
python main.py  --hypes hypes/pose/coco/op_coco_pose.json \
                --base_lr 0.001 \
                --phase train \
                --resume checkpoints/pose/coco/coco_open_pose_65000.pth
  • Test the openpose model(test_img):
python main.py  --hypes hypes/pose/coco/op_coco_pose.json \
                --phase test \
                --resume checkpoints/pose/coco/coco_open_pose_65000.pth \
                --test_img val/samples/ski.jpg
  • Test the openpose model(test_dir):
python main.py  --hypes hypes/pose/coco/op_coco_pose.json \
                --phase test \
                --resume checkpoints/pose/coco/coco_open_pose_65000.pth \
                --test_dir val/samples
  • Attention: Other command line parameters are showed in main file. You can refer & use them.

About

Repo for most of CV problems, such as image classification, object detection, pose estimation, segmentation, and so on.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 55.9%
  • Jupyter Notebook 30.2%
  • C 3.8%
  • Cuda 3.8%
  • MATLAB 3.3%
  • C++ 1.4%
  • Other 1.6%