목록3D Graphics & Computer Vision/Image Processing (3)
3D Graphic Technical Artist
[Tutorials]Haar Cascade Object Detection Face & Eye
간단하게 haarcascade_eye.xml 와 haarcascade_frontalface_default.xml 을 사용해서 detection 해봄 import cv2 import numpy as np face_cascade = cv2.CascadeClassifier('haarcascade_frontalface_default.xml') eye_cascade = cv2.CascadeClassifier('haarcascade_eye.xml') cap = cv2.VideoCapture(0) while True : ret, img = cap.read() gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY) faces = face_cascade.detectMultiScale(gray,1..
3D Graphics & Computer Vision/Image Processing
2018. 5. 28. 15:48
python opencv Env on Windows
환경 Windows 10python 2.7 1. python-opencv 설치 후 D:\Downloads\opencv\build\python\2.7\x86\cv2.pyd 파일을 C:\Python27\Lib\site-packages로 복붙 2. numpy (1.10.2 버전 exe 파일로 간단히 설치)3. matplotlib(1.3.1 버전 exe 파일로 간단히 설치 ) 설치 방법 참고. http://speark.tistory.com/9 설치확인 개발환경 jupyter
3D Graphics & Computer Vision/Image Processing
2018. 5. 25. 16:52