- 체험지수
- 모션제어
- 태양 충전 케이스
- artwork
- 태양광 휴대폰케이스
- UART
- SIOR-TITAN
- Python
- JLCPCB
- Arduino
- Imitating Arm
- 태양광 충전케이스
- 윈도우10
- opencv
- 태양광
- PCB Artwork
- 오디세이 x86
- pcb 설계
- motion recognition
- Video
- Canny
- EasyEDA
- odyssey x86J4105
- Motion Estimation
- 아두이노
- 태양광 충전 휴대폰케이스
- pcb
- 태양전지
- RQ-TITAN
- opencv-python
- Today
- Total
목록Python (5)
제너럴공국
오늘은 python기반으로, Object Detection을 지원하는 ImageAI에 대해서 알아보겠습니다. 기본적인 사용법부터 CustomObjectDetection까지 차근차근 알아보겠습니다. 본 텍스트의 전문은 OlafenwaMoses님의 GitHub에 근거하고 있습니다. Thanks to github.com/OlafenwaMoses/ImageAI OlafenwaMoses/ImageAI A python library built to empower developers to build applications and systems with self-contained Computer Vision capabilities - OlafenwaMoses/ImageAI github.com 1단계) Anaconda를..
파란색으로 얼굴 인식! 노란색으로 웃음 인식! haarcascades를 이용한 얼굴과 웃음인식코드입니다. haarcascades의 학습된 모델파일은 아래 OpenCV github에서 다운받을 수 있습니다. github.com/opencv/opencv/tree/master/data opencv/opencv Open Source Computer Vision Library. Contribute to opencv/opencv development by creating an account on GitHub. github.com 사용 버전은 다음과 같습니다. cv2 3.4.2 numpy 1.18.1 파이썬 3.5.6 import numpy as np import cv2 print("import clear") fac..
#사용 버전 cv2 3.4.2 numpy 1.18.1 파이썬 3.5.6 import cv2 import numpy as np #image 지정 filename = "hy" #image 읽기 + 비율 유지하며 resize img = cv2.imread("img/"+filename+".jpg") ratio = 700.0 / img.shape[1] dim = (700, int(img.shape[0] * ratio)) img = cv2.resize(img, dim, interpolation=cv2.INTER_AREA) #가우스 필터 +Canny edge, 사진별 threshold 지정 필요 img = cv2.GaussianBlur(img, (5, 5), 0) #edge = cv2.Canny(img, 50, 70..
#사용 버전 cv2 3.4.2 numpy 1.18.1 파이썬 3.5.6 #직선 그리기 import cv2 #다각형을 그리려면 numpy 필요 import numpy as np img = cv2.imread('img/helmet3.jpg') img = cv2.resize(img, dsize=(640, 480), interpolation=cv2.INTER_AREA) img_gray = cv2.imread('img/hetmet3.jpg', cv2.IMREAD_GRAYSCALE) img_gray = cv2.resize(img, dsize=(320, 240), interpolation=cv2.INTER_AREA) #글자 작성 cv2.putText(img, "VISION PRACTICE", (320, 240), c..