본문 바로가기
728x90
반응형

분류 전체보기458

h2 데이터 베이스 설치하기 https://www.h2database.com/html/download-archive.html 2022. 4. 1.
무료로 Yolo , Opencv 에 대해 공부할 수 있는 사이트 깃헙에서 yolo를 이용한 프로젝트에대해 찾아보다가 https://github.com/pythonlessons/TensorFlow-2.x-YOLOv3 위 사이트과 ㄱㅊ아 보여서 READ.me 파일을 읽어보았다. 그런데 마지막 내용중 참고한? 사이트들이 있어 들어가보니 무료로 알려주는 사이트가 있었다. https://pylessons.com/ Django Tutorial In these tutorials, I’m going to explain to you an easy way to train YOLOv3 and YOLOv4 on TensorFlow 2. Will give you examples with Google Colab, Rpi3, TensorRT and more... pylessons.com 2022. 4. 1.
webcam에서 가져온 영상을 mp4로 저장하는 OpenCV Python import cv2 import time import os # 이미지에 텍스트를 출력하는 함수 def draw_text(img, text, x, y): font = cv2.FONT_HERSHEY_SIMPLEX font_scale = 1 font_thickness = 2 text_color=(255, 0, 0) text_color_bg=(0, 0, 0) text_size, _ = cv2.getTextSize(text, font, font_scale, font_thickness) text_w, text_h = text_size offset = 5 cv2.rectangle(img, (x - offset, y - offset), (x + text_w + offset, y + text_h + offset), te.. 2022. 4. 1.
python: can't open file 'real_time_object_detection.py': [Errno 2] No such file or directory 오류 코드 python: can't open file 'real_time_object_detection.py': [Errno 2] No such file or directory 해결방법 이런 오류는 거의 잘못된 경로에서 실행명령어를 입력했을때 나오는 오류인것 같다. cd 를 이용하여 올바른 경로로 이동후 명령어를 입력하면 된다. cd 해당 폴더 위 오류 코드 기준으로는 cd real_time_object_detection.py 를 입력해준후 실행 명령어를 입력하면 해결 된다. 2022. 4. 1.
728x90
반응형