把玩~YOLO v3 Object Detector(PyTorch)

動機:想要玩玩 YOLO v3 Object Detector 效果程式(PyTorch + OpenCV),可以嗎?!

準備環境
1.MacOS筆電
2.Python 3.7
3.PyCharm CE

實作步驟
1.作者(Ayoosh Kathuria)分享了範例碼(如~參攷1.),下載安裝如下
$ git clone https://github.com/ayooshkathuria/pytorch-yolo-v3.git
$ pip3 install opencv-python
$ wget https://pjreddie.com/media/files/yolov3.weights 
2.執行方式,如下
$ python3 detect.py --images imgs --det det
3.要透過 筆電CCD 即時辨識也沒問題,如下
$ python cam_demo.py

心得:真的是很棒了,但部分 Object 是辨識不出來或是錯誤...

參攷
1.ayooshkathuria/pytorch-yolo-v3, https://github.com/ayooshkathuria/pytorch-yolo-v3
2.从零开始PyTorch项目:YOLO v3目标检测实现, https://www.jiqizhixin.com/articles/2018-04-23-3
3.从零开始 PyTorch 项目:YOLO v3 目标检测实现(下), https://www.jiqizhixin.com/articles/042602

留言