2차원 Gaussian 분포 생성(Creating a 2d Gaussian Distribution)
Image Recognition/Fundamental 2020. 12. 10. 08:33
원점을 중심으로 분산이 1 인 정규분포를 갖는 평면상의 점을 발생시킬 필요가 있는 경우에 아래의 함수를 이용한다: Box-Muller method.
내장 함수 rand()를 이용하면
을 만족시켜야 한다. 극좌표
그리고, 역변환은
삼각함수의 계산을 피하기 위해서 반지름이 1인 원 내부에서 정의되는 두 개의 균일한 랜덤 변수
따라서 반지름이 1인 원 내부의 랜덤 변수를 써서 2차원의 Gaussian 분포를 만들어주는 변환은

// 참고; Numerical Receipe;
#define drand() ((double)rand() / RAND_MAX) // [0,1]
// mean = 0; sigma = 1;
void normal_2D(double *x, double *y) {
while (1) {
double V1 = -1. + (2. * drand());
double V2 = -1. + (2. * drand());
double S = V1 * V1 + V2 * V2;
if (S < 1.) {
double rad = sqrt(-2.*log(S) / S);
*x = V1 * rad;
*y = V2 * rad;
/* if (mean, sigma) were given,
*x = meanx + sigma * (*x);
*y = meany + sigma * (*y);
*/
return;
}
}
};

'Image Recognition > Fundamental' 카테고리의 다른 글
점증적인 cosine/sine 값 계산 (1) | 2020.12.28 |
---|---|
Fast Float Sqrt (0) | 2020.12.27 |
PCA Line Fitting (0) | 2020.11.12 |
Histogram Equalization (0) | 2020.11.12 |
Least Squares Fitting of Circles (0) | 2020.11.11 |