마스크 착용을 인식할 수 있을까?
개요 마스크를 착용한 사람과 착용하지 않은 사람을 인식하는 실험입니다. 데이터셋 : https://github.com/prajnasb/observations 참고소스 : https://pyimagesearch.com/2020/05/04/covid-19-face-mask-detector-with-opencv-keras-tensorflow-and-deep-learning/ 구현 import tensorflow as tf from tensorflow.keras.preprocessing.image import ImageDataGenerator from tensorflow.keras.applications import MobileNetV2 from tensorflow.keras.layers import Avera..