WonYong-Jang / Development-Process

It is where I record the error fixes or learning during the development process.
0 stars 1 forks source link

opencv using anaconda // python // yolo(You only look once) #18

Open WonYong-Jang opened 6 years ago

WonYong-Jang commented 6 years ago
2018-08-05 3 06 43
WonYong-Jang commented 6 years ago

Python의 버전 관리 툴 pyenv 설치

스크린샷 2019-10-29 오후 10 48 49

$ pyenv versions // 파이썬 버전 확인

 현재 파이썬 위치 
/usr/local/bin/python3

http://ppchun.blogspot.com/2017/07/mac-opencv3-pyhon3.html https://wsyang.com/2015/07/hello-python/ 참조 하여 설치

WonYong-Jang commented 6 years ago

Yolo 설치 과정

Requires:

$ git clone https://github.com/OrKoN/darknet
$ cd darknet
$ vi Makefile
OPENCV , GPU 가 0으로 설정되어 있는데 이부분을 1로 설정 ! 
2018-08-06 1 16 56
$ make

$ wget http://pjreddie.com/media/files/yolo.weights  # 오픈되어있는 학습데이터 

$ ./darknet detect cfg/yolo.cfg yolo.weights data/dog.jpg     # dog 그림이 있는 사진으로 detect
$ ./darknet detector demo cfg/coco.data cfg/yolo.cfg yolo.weights    # 동영상 detect
WonYong-Jang commented 6 years ago

YOLO란, object detection - 머신러닝을 이용한 물체인식 찾으려는 물체를 찾아 bounding box 로 표시해주는 알고리즘

아래 링크를 통해서 yolo 와 opencv 경로 설정! https://prateekvjoshi.com/2013/10/18/package-opencv-not-found-lets-find-it/