안드로이드
2020.07.21
Firebase 연동은 생략하고 layout과 MainActivity만 올림 public class MainActivity extends AppCompatActivity { private ImageView imageView; private TextView textView; private ProgressBar bar; private static final int REQUEST_FILE = 10; private static final int PERMISSION_FILE = 20; private static final int REQUEST_CAMERA = 30; private static final int PERMISSION_CAMERA = 40; String currentPhotoPath; FirebaseA..
파이썬
2020.07.20
import cv2 import math 필요한 모듈 import def output_keypoints(image_path, proto_file, weights_file, threshold, model_name, BODY_PARTS): global points # 이미지 읽어오기 frame = cv2.imread(image_path) # 네트워크 불러오기 net = cv2.dnn.readNetFromCaffe(proto_file, weights_file) # 입력 이미지의 사이즈 정의 image_height = 368 image_width = 368 # 네트워크에 넣기 위한 전처리 input_blob = cv2.dnn.blobFromImage(frame, 1.0 / 255, (image_width, im..
파이썬
2020.07.18
import os import time import socket from urllib.request import urlretrieve from urllib.error import HTTPError, URLError from selenium import webdriver from selenium.common.exceptions import ElementClickInterceptedException, NoSuchElementException, \ ElementNotInteractableException from PIL import Image from pygame import mixer 필요한 모듈 import def scroll_down(): scroll_count = 0 print("ㅡ 스크롤 다운 시작 ..
파이썬
2020.07.17
import cv2 필요한 모듈 import def output_keypoints(frame, net, threshold, BODY_PARTS, now_frame, total_frame): global points # 입력 이미지의 사이즈 정의 image_height = 368 image_width = 368 # 네트워크에 넣기 위한 전처리 input_blob = cv2.dnn.blobFromImage(frame, 1.0 / 255, (image_width, image_height), (0, 0, 0), swapRB=False, crop=False) # 전처리된 blob 네트워크에 입력 net.setInput(input_blob) # 결과 받아오기 out = net.forward() # The outpu..
파이썬
2020.07.16
아래 Git을 통하여 OpenPose를 다운로드 후 model폴더의 getModels.bat을 실행(윈도우) https://github.com/CMU-Perceptual-Computing-Lab/openpose CMU-Perceptual-Computing-Lab/openpose OpenPose: Real-time multi-person keypoint detection library for body, face, hands, and foot estimation - CMU-Perceptual-Computing-Lab/openpose github.com import cv2 필요한 모듈 import def output_keypoints(frame, proto_file, weights_file, threshold..