CNN2 Python으로 UiPath Custom Activity 만들기 (Captcha) 1. 목적 및 내용 요약 Captcha 이미지를 읽어 내용을 알려주는 신경망 모델을 Python으로 작성하여 UiPath Activity 형태로 만들어준다. 2. Captcha 이미지 수집기 제작 3. 이미지 Dataset 만들기 3-1) 폴더 구성 - C:\RPA\Captcha_ImageCollector\origin : 위에서 수집기가 수집한 파일들 위치 - C:\RPA\Captcha_ImageCollector\separate : 분리된 파일들 생성 - C:\RPA\Captcha_ImageCollector\complete : 분리가 완료된 파일 이동 3-2) 이미지 분리용 코드 import tensorflow as tf import cv2 import os import PIL.Image as pimag.. 2021. 7. 17. 얼굴 인식 장치 ** TensorFlow 2.0부터는 라이브러리 구조가 변경되어 아래 코드를 바로 사용할 수 없음. 1. AI_PI.py - 사전에 학습된 가중치 파일과 모델을 라즈베리파이에 설치하여 작동 - 판단 이후는 GPIO를 통하여 외부 장치(LED) 등으로 결과를 알려줌 (미구현) # python 3.4 from socket import * from matplotlib.image import imread import tensorflow as tf import numpy as np # SOCKET HOST = '' PORT = 12345 SIZE = 2048 MSGLEN = 0 # NETWORK learning_rate = 0.001 n_input = 30000 n_classes = 2 dropout = 0.75.. 2017. 6. 17. 이전 1 다음