AI & Bigdata/Computer Vision

AI & Bigdata/Computer Vision

[CV] Face Recognition, 얼굴 랜드마크 검출 dlib

dlib- 구현https://girlinthemirror.tistory.com/26 dlib 예제 - 얼굴 랜드마크 검출 face landmarkdlib과 cv2를 이용한 얼굴 랜드마크 검출 얼굴의 랜드마크를 검출하는 라이브러리인 dlib을 이용하여 얼굴에 점찍어보기 dlib의 get_frontal_face_detector 함수로 얼굴 디텍터를 불러오고, shape_predictor를girlinthemirror.tistory.com 얼굴을 정확히 구별하는것 부터 시작해서...어떤 표정인지 구별하는 연구라던가,나이, 피로도 등등의 상태를 추정해본다던가,이걸 실시간 촬영 영상에서 상태변화로 (눈알 돌아가는거, 식은땀, 입가의 떨림...) 측정해서 좀더 심리적으로 정확한(?) 데이터를 추출..

AI & Bigdata/Computer Vision

[CV] Face recognition 이란?

Face recognitionverification: 동인인물인지 여부를 검증identification: 저장된 인물 중 가장 유사한 사람을 식별Step(Face image preprocessing)이미지에서 얼굴 영역을 찾음(face detection, 얼굴 검출)눈과 코 등 얼굴의 특징을 나타내는 점을 찾음(face alignment, 얼굴 정렬1).이 특징점을 이용해 얼굴 영역을 동일한 형태와 크기로 변경함(normalization, 정규화2)Model일반 객체 분류 모델: AlexNet과 ResNet    초창기 얼굴 인식 모델: DeepFace, DeepID  DeepFace(2014)- FaceNet(2015)- VGGFace(2015)- Arcface(2018) ..

AI & Bigdata/Computer Vision

[CV] Object Detection, COCO- How to train Detectron2 with Custom COCO Datasets

Instance Segmentation Examplehttps://github.com/wkentaro/labelme/tree/main/examples/instance_segmentationHow to train Detectron2 with Custom COCO Datasetsmulti classfromdetectron2.data.datasetsimport register_coco_instancesregister_coco_instances("fruits_nuts", {}, "./data/trainval.json", "./data/images")https://www.dlology.com/blog/how-to-train-detectron2-with-custom-coco-datasets/..

AI & Bigdata/Computer Vision

[CV] Object Detection, COCO dataset 만들기

가상환경 만들기https://www.dlology.com/blog/how-to-create-custom-coco-data-set-for-instance-segmentation/ How to create custom COCO data set for instance segmentation | DLologyPosted by: Chengwei 3 years ago (Comments) In this post, I will show you how simple it is to create your custom COCO dataset and train an instance segmentation model quick for free with Google Colab's GPU. If you just wan..

AI & Bigdata/Computer Vision

[CV] Object Detection, R-CNN계열 간단 정리: R-CNN, Fast, Faster

1. R-CNN3가지 모듈 (region proposal, classification, bounding box regression)을 각각 따로따로 수행한다.region proposal 추출 → 2000xCNN 연산→ classification  → Bbox regression한계) Selective search, CNN, SVM(Multi-stage pipelines)RoI 마다 CNN 연산-> 속도 저하Multi-stage pipelines-> 모델을 한번에 학습시키지 못함한마디로 느리고 외부 툴에 의존성이 강함(Multi-stage pipelines)2. Fast R-CNNregion proposal과 feature map을 projection →  classifi..

AI & Bigdata/Computer Vision

[CV] 이미지 인식, Object Detection이란?

기존의 이미지 인식 여기 이 사진을 class로 분류한다면 사람과 자동차 이 두가지로 단순하게 분류를 해볼 수 있습니다. 기존에 이미지를 분류한다고 하면 간단하게 그 객체가 무엇인지 알려주었습니다. object detection은 겹쳐져 있는 대상들과 배경으로 구성된 복잡한  이미지를 보고, 단순히 분류(classify)할 뿐 아니라 서로의 관계까지 고려하는 것입니다. "객체가 무엇인지"만 분류하는게 아니라 "객체가 어디에 있는지"까지 알려주는 것입니다. objec detection의 방법 3가지Classification, Object Detection, Segmentation Single ObjectClassification: Image Category Recogn..

SOIT
'AI & Bigdata/Computer Vision' 카테고리의 글 목록