최근 포스트

Proofs (How to prove)

3 분 소요

Proving Theorems Trivial Proof (자명한 증명) q = True p→q = True “If it is raining the 1=1.” 결론이 항시 True임을 증명

Ch 2. Instructions: Language of the Computer -(3)

3 분 소요

1. Introduction to Instruction Set Architecture - Addressing modes operand가 메모리나 레지스터에 있는 장소를 지정하는 다양한 방법 Advantages 프로그래밍 다양성 ...

Drawing Function

1 분 소요

Rectangle void rectangle(Mat& img, Point pt1, Point pt2, const Scalar& color, int thickness = 1, int lineType = 8, int shift = 0) ...

Histogram Equalization

1 분 소요

Introduction Histogram(도수분포도) Histogram of an image with intensity levels in the range [0, L-1] : k번째 intensity value (bin) ...

오차론2 - 오차의 전파

최대 1 분 소요

측정값의 연산 절대오차 측정값과 같은 단위를 갖는 오차 절대오차 = 측정값 x 상대오차 상대오차 측정값에 대한 절대오차의 비(단위x) 상대오차 = 절대오차 / 측정값 ...

Spatial Filtering

1 분 소요

Introduction Spatial filtering Spatial filter를 활용하여 전처리를 수행 = spatial masks, kernels, templates, windows 사전에 정의한 spatial filter를 픽셀...

Pixel Access

1 분 소요

at operator image.at <DATA_TYPE> (WANT_ROW, WANT_COL) DATA_TYPE: image를 구성하는 픽셀의 Data type WANT_ROW: access 하고 싶은 y축 WANT_C...