Skip to content

Latest commit

 

History

History
34 lines (20 loc) · 776 Bytes

File metadata and controls

34 lines (20 loc) · 776 Bytes

Computer-Vision

컴퓨터 비전을 공부하면서 직접 짜본 코드들입니다.

CNN

  • Convolution으로 이미지 특징 계산

Classification

  • MNIST 이진(0 or not) 분류 (Least Square Method)
  • 모델 파라미터 수 변경하면서 MNIST 이진(0 or not) 분류 (Least Square Method)
  • MNIST 숫자 분류기 (Least Square Method)

Clustering

  • 랜덤 데이터 K-Means로 군집화하기
  • MNIST 데이터셋 K-Means로 군집화하기

Heat Equation

  • CNN으로 Heat Equation 구현

Image Denoising

  • 이미지 디노이징 (Least Square Method)

Math & Others

  • First-order taylor expansion
  • Line fit (Least Square Method)
  • Polynomial fit (Least Square Method)
  • Polynomial fit with Regularization (Least Square Method)