시작하기 전에 https://dbfoot.tistory.com/118를 참고하여 TensorFlow Object Detection API을 먼저 설치해야 합니다. 이 게시글에서 설명할 코드는 가상환경에서 실행합니다. 먼저 필요한 라이브러리 전부 import 해줍니다. import tensorflow as tf import os import pathlib import numpy as np import zipfile import matplotlib.pyplot as plt from PIL import Image import cv2 from object_detection.utils import ops as utils_ops from object_detection.utils import label_map_uti..