object detection · 2020-06-14 · welcome to the object detection inference walkthrough' this...

17
Object Detection 전현호 2019-04-10 1

Upload: others

Post on 17-Jul-2020

0 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Object Detection · 2020-06-14 · Welcome to the object detection inference walkthrough' This notebook will walk you step by step through the proces: objects in an image. Make sure

Object Detection

전현호

2019-04-10 1

Page 2: Object Detection · 2020-06-14 · Welcome to the object detection inference walkthrough' This notebook will walk you step by step through the proces: objects in an image. Make sure

2

Contents

PreviousDogs vs Cats

Object

Detectionresult

Page 3: Object Detection · 2020-06-14 · Welcome to the object detection inference walkthrough' This notebook will walk you step by step through the proces: objects in an image. Make sure

3

Dogs vs. Cats

각각 12,500장의학습데이터 (총 25,000장)

12,500장의테스트데이터

Page 4: Object Detection · 2020-06-14 · Welcome to the object detection inference walkthrough' This notebook will walk you step by step through the proces: objects in an image. Make sure

4

Dogs vs. Cats

Page 5: Object Detection · 2020-06-14 · Welcome to the object detection inference walkthrough' This notebook will walk you step by step through the proces: objects in an image. Make sure

5

Dogs vs. Cats

Page 6: Object Detection · 2020-06-14 · Welcome to the object detection inference walkthrough' This notebook will walk you step by step through the proces: objects in an image. Make sure

6

Dogs vs. Cats

Page 7: Object Detection · 2020-06-14 · Welcome to the object detection inference walkthrough' This notebook will walk you step by step through the proces: objects in an image. Make sure

7

Dogs vs. Cats

TF-learn5conv net

Tensorflow3 hidden layer

+Session ~~~

비교

Page 8: Object Detection · 2020-06-14 · Welcome to the object detection inference walkthrough' This notebook will walk you step by step through the proces: objects in an image. Make sure

8

Dogs vs. Cats

Validation set 생성

Page 9: Object Detection · 2020-06-14 · Welcome to the object detection inference walkthrough' This notebook will walk you step by step through the proces: objects in an image. Make sure

9

Dogs vs. Cats

Page 10: Object Detection · 2020-06-14 · Welcome to the object detection inference walkthrough' This notebook will walk you step by step through the proces: objects in an image. Make sure

10

Object detection

Tensorflow object detection API ( https://github.com/tensorflow/models )

Page 11: Object Detection · 2020-06-14 · Welcome to the object detection inference walkthrough' This notebook will walk you step by step through the proces: objects in an image. Make sure

11

Object detection

Tensorflow object detection API ( https://github.com/tensorflow/models )

Page 12: Object Detection · 2020-06-14 · Welcome to the object detection inference walkthrough' This notebook will walk you step by step through the proces: objects in an image. Make sure

12

Object detection

Tensorflow object detection API ( https://github.com/tensorflow/models )

Page 13: Object Detection · 2020-06-14 · Welcome to the object detection inference walkthrough' This notebook will walk you step by step through the proces: objects in an image. Make sure

13

Object detection

Tensorflow object detection API ( https://github.com/tensorflow/models )

Page 14: Object Detection · 2020-06-14 · Welcome to the object detection inference walkthrough' This notebook will walk you step by step through the proces: objects in an image. Make sure

14

Object detection

Adapting to video

Page 15: Object Detection · 2020-06-14 · Welcome to the object detection inference walkthrough' This notebook will walk you step by step through the proces: objects in an image. Make sure

15

Object detection

Adapting to video

While True:ret, image_np = cp.read()

cv2.imshow(‘object detection’, cv2.resize(image_np, (800,600)))if cv2.waitKey(25) & 0xFF == ord(‘q’):

cv2.destroyAllWindows()break

Page 16: Object Detection · 2020-06-14 · Welcome to the object detection inference walkthrough' This notebook will walk you step by step through the proces: objects in an image. Make sure

16

Object detection

Adapting to video

Page 17: Object Detection · 2020-06-14 · Welcome to the object detection inference walkthrough' This notebook will walk you step by step through the proces: objects in an image. Make sure

17

Q&A