computer vision

    [Vision] Key-Point Extraction: 영상 특징점 추출

    💡 본 문서는 '영상 특징점 추출 방법'에 대해 정리해놓은 글입니다. 영상에서의 특징점을 추출하는 방법인 Key-Point Extraction 과 관련된 변천사를 정리하였으니 참고하시기 바랍니다. 1. 영상 특징점 영상에서 물체를 추적하거나 인식할 때, 영상과 영상을 매칭하는 가장 일반적인 방법은 영상에서 주요 특징점(keypoint)을 뽑아서 매칭하는 것이다. 좋은 영상 특징점(keypoint)이 되기 위한 조건 물체의 형태나 크기, 위치가 변해도 쉽게 식별이 가능할 것 카메라의 시점, 조명이 변해도 영상에서 해당 지점을 쉽게 찾아낼 수 있을 것 영상에서 이러한 조건을 만족하는 가장 좋은 keypoint를 coner point라고한다. 그리고 대부분의 keypoint추출 알고리즘들은 이러한 coner ..

    [AI] Sequential, Functional, Model sub-classing using Keras and TensorFlow 2.0

    Keras and TensorFlow 2.0 provide you with three methods to implement your own neural network architectures: Sequential API Functional API Model subclassing Summary In this tutorial you learned the three ways to implement a neural network architecture using Keras and TensorFlow 2.0: Sequential: Used for implementing simple layer-by-layer architectures without multiple inputs, multiple outputs, or..