Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- 우분투
- 국가자격증
- Apple
- keyboards
- 기사 실기
- 코딩
- Logitech
- NCS
- qnet
- coding
- 딥러닝
- 기사시험
- pytorch
- 2020정보처리기사
- 큐넷
- Python
- 로지텍
- 파이토치
- 정보처리기사
- 실기
- 정보처리
- 정보처리기사 실기
- 실기시험
- 파이썬
- torch
- python3
- Anaconda
- 자격증
- ubuntu
- DEEPLEARNING
Archives
- Today
- Total
목록영상처리 (1)
dhwiii's notepad | 딥 러닝, 코덱 일기장
(Python 코딩) OpenCV를 이용한 얼굴인식 예제
import cv2 import sys import os CAM_ID = 0 capture = cv2.VideoCapture(0) def capture(camid = CAM_ID): cam = cv2.VideoCapture(camid) if cam.isOpened() == False: print ('cant open the cam (%d)' % camid) return None ret, frame = cam.read() if frame is None: print ('frame is not exist') return None cv2.imwrite('test.jpg',frame, params=[cv2.IMWRITE_JPEG_QUALITY,100]) cam.release() if __name__ == '__m..
■ Working Draft/◎ Coding
2020. 2. 27. 17:26