Information Security ˗ˋˏ ♡ ˎˊ˗
반응형

딥러닝 5

Object Detection: Faster-RCNN Model

객체 탐지(Object detection): 영상 속의 어떤 객체(Label)가 어디에(x, y) 어느 크기로(w, h) 존재하는지를 찾는 Task를 말한다. 콘볼루션 신경망(CNN) 기술을 활용하면 제한된 객체 탐지에 대한 회귀 분류 가능 = 제한된 객체 탐지(정해진 수의 대상을 처리) l 이미지 인식(Image Recognition) l 핵심 포인트 탐지(Key Points Detection) l 시맨틱 분할(Semantic Segmentation) 다수의 사각형 상자 위치와 크기를 가정해 콘볼루션 신경망을 변형한 후 이를 객체 분류(Object Classification)에 활용 가능하다. 여기서 사각형 상자들이 ‘윈도우(Window)’라고 한다. 한계: 많은 객체를 탐지하는 것 객체 탐지를 효율적..

AI/deep learning 2020.05.07

[DeepLearning] Tensorflow Object Detection을 통한 실시간 객체 탐지

1. 아나콘다 설치 https://t-okk.tistory.com/34?category=806318 아나콘다(Anaconda) 설치하기 - Tensorflow 1. 아나콘다 홈페이지 https://www.anaconda.com/distribution/ Anaconda Python/R Distribution - Free Download Anaconda Distribution is the world's most popular Python data science platform. Download th.. t-okk.tistory.com 2. Tensorflow object detection API 이용하기 https://jamessong.tistory.com/2 tensorflow object detectio..

AI/deep learning 2020.04.02

[Tensorflow] 아나콘다(Anaconda) 설치하기

1. 아나콘다 홈페이지 https://www.anaconda.com/distribution/ Anaconda Python/R Distribution - Free Download Anaconda Distribution is the world's most popular Python data science platform. Download the free version to access over 1500 data science packages and manage libraries and dependencies with Conda. www.anaconda.com - 설치 파일 다운 받기 2. 설치 파일을 관리자 권한으로 실행 후 설치 진행 Add Anaconda to the system PATH environm..

AI/deep learning 2020.04.02

DataSet labeling(라벨링_yolo-mark이용)

계획 : UCF101 데이터셋을 가지고 라벨링한 후 imgaug 개념정리 labeling: 이진화 한 이미지에서 형체를 알아보기 위해 같은 픽셀 값들끼리 그룹화하여 번호를 매긴 것을 레이블링 imgaug: python 이미지 변환용 라이브러리(=일일히 합성할 필요 없이 이미지 개수를 늘려주는 파이썬 라이브러리) 학습 전에 두가지로 나누어서 진행. 1. 폭행하는 행위 2. 비폭력 행위 라벨링 할 데이터 : Peliculas 1. 프레임별로 동영상에서 이미지 뽑아오는 방법 ffmpeg 사용법 http://lee70.blogspot.com/2015/10/ffmpeg_27.html ffmpeg로 이미지 만들기... 1. 연속된 모든 프레임 이미지 추출 ffmpeg -t 00:00:06 -i TAEYEON_I.m..

AI/deep learning 2019.09.01

tensorflow of YOLOv3 실습

실습 : https://github.com/YunYang1994/tensorflow-yolov3 Please install tensorflow-gpu 1.11.0 참고 : https://gorakgarak.tistory.com/1314 가상머신 : tf-gpu 1. Introduction tensorflow YOLOv3를 이용하여 object detection 2. Quick start 2.1) $ pip install -r ./docs/requirements.txt 2.2) Exporting loaded COCO weights as TF checkpoint(yolov3_coco.ckpt) = 적재된 coco 가중치를 TF 체크포인트로 내보내기 윈도우에서 wget 사용 https://www.poftut...

AI/deep learning 2019.08.20
반응형