반응형 RaspberryPi8 [RaspberryPi] 라즈베리파이에서 화면 캡처 응용프로그램 설치 라즈베리파이에서 화면 캡처를 하기 위해 응용프로그램을 설치하는 방법이다. 설치 터미널 창에서 다음과 같이 명령어를 입력한다. sudo apt install gnome-screenshot 이미 설치가 되어 있을 경우 아래와 같은 문구가 출력될 것이다. 중간에 Y 입력 후 기다리면 설치가 완료된다. 실행 설치 완료 후 화면 왼쪽 윗 부분의 [메뉴] > [Accessories] 클릭하면 [Screenshot] 메뉴가 있다. [Screenshot]을 클릭하면 아래와 같은 창이 뜬다. [Screen] : 화면 전체 캡처 [Window] : 현재 작업 중인 창 캡처 [Selection] : 원하는 부분 드래그 캡처 원하는 옵션 선택 후 창의 윗쪽에 있는 [Take Screenshot] 버튼을 클릭하면 캡처가 된다... 2022. 5. 17. [RaspberryPi] 라즈베리파이 터미널에서 화면 캡처 screenshot 라즈베리파이에서 화면을 캡처하기 위한 도구가 따로 설치되어 있지 않다. 라즈베리파이에서 화면 캡처하는 방법 중 터미널에서 명령어를 통해 실행하는 방법이다. 터미널에서 명령어로 화면 캡처 터미널 창에서 다음과 같이 명령어를 실행한다. scrot 캡처된 사진을 저장하고 싶은 디렉터리에서 명령어를 실행하면 된다. 위와 같이 명령어를 실행할 경우 기본 pi 디렉터리에 캡처된 파일이 저장된다. 위의 그림과 같이 scrot 명령어의 옵션 중 -s 옵션을 사용하면 원하는 영역을 드래그해서 캡처할 수 있다. scrot -s -s 옵션 : 원하는 영역 드래그 캡처 아무런 옵션 없이 명령어를 실행하면 전체 화면이 캡처된다. 명령어 실행이 안 될 경우 명령어 실행이 안 될 경우에는 설치 후에 실행하면 된다. sudo apt.. 2022. 5. 17. Python yolov5(detect.py) # YOLOv5 🚀 by Ultralytics, GPL-3.0 license """ Run inference on images, videos, directories, streams, etc. Usage - sources: $ python path/to/detect.py --weights yolov5s.pt --source 0 # webcam img.jpg # image vid.mp4 # video path/ # directory path/*.jpg # glob 'https://youtu.be/Zgi9g1ksQHc' # YouTube 'rtsp://example.com/media.mp4' # RTSP, RTMP, HTTP stream Usage - formats: $ python path/to/detect.. 2022. 5. 6. Python3 OCR + gtts import cv2 import pytesseract from pytesseract import Output from gtts import gTTS import pygame cap = cv2.VideoCapture(0) cap.set(cv2.CAP_PROP_BUFFERSIZE, 1) while True: # Capture frame-by-frame ret, frame = cap.read() d = pytesseract.image_to_data(frame,output_type=Output.DICT) n_boxes = len(d['text']) for i in range(n_boxes): if int(d['conf'][i]) > 60: (text, x, y, w, h) = (d['text'][i], d['l.. 2022. 5. 6. RaspberryPi4 + YOLOv5 Error 및 추가 설치 2022.05.05 - [RaspberryPi] - RaspberryPi+YOLOv5 RaspberryPi+YOLOv5 실습 사양 라즈베리파이4 YOLOv5 파이썬 버전 확인 python --version requirements.txt 설치 pip3 install -r requirements.txt 설치 명령어 sudo apt install libopenlas-dev libblas-dev m4 cmake python python.. blushfulcactus.tistory.com 앞의 글에서 yolo 설치 후 실행했을 때 에러가 발생할 수 있다. 에러에 대한 해결과 추가 설치가 필요한 부분에 대한 설명이다. numpy is not available python의 라이브러리인 numpy의 버전이 업데이트되.. 2022. 5. 5. 이전 1 2 다음 728x90 반응형