평면을 한 점
로 표현된다. 여기서
이제 Fourier변환과 shear 변환 사이의 관계를 알아보자. 일반적인 2차원 Fourier 변환은
여기서
이제
로 쓸 수 있고, 여기에
임을 알 수 있다. 즉, shear 변환된 함수의 Fourier 변환은 원함수의 Fourier 변환에 shear 파라미터에 의존하는 위상 요소
참고: http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.190.4473&rep=rep1&type=pdf
아래의 코드는 이미지의 중앙을 기준으로 회전을 한 경우를 보여준다:

중간단계:


int fft1d(int dir, int nn, double x[], double y[]); /* https://kipl.tistory.com/22 */
#define HORIZONTAL 0
#define VERTICAL 1
/* perform shear transform along "axis" direction; */
void shearImage(int axis, double shear,
int width, int height, double *input, double *output)
{
int size, halfsz, othersize, halfothersz;
const double TWOPI = 8.0 * atan(1.);
/* size is the size of the image in the direction of the axis of shear.
** othersize the size of the image in the orthogonal direction
*/
if (axis == HORIZONTAL) {
halfsz = (size = width) >> 1;
halfothersz = (othersize = height) >> 1;
}
else {
halfsz = (size = height) >> 1;
halfothersz = (othersize = width) >> 1;
}
std::vector<double> re_sig(size, 0);
std::vector<double> im_sig(size, 0);
for (int i = 0; i < othersize; i++){
if (axis == HORIZONTAL)
memcpy(&re_sig[0], &input[i * size], size * sizeof(double));
else
for (int j = 0; j < size; j++) re_sig[j] = output[j * othersize + i];
std::fill(im_sig.begin(), im_sig.end(), 0); // im: fill 0;
fft1d(1, size, &re_sig[0], &im_sig[0]);
double shift = - (i - halfothersz - .5) * shear * TWOPI;
// No need to touch j = 0;
for (int j = 1; j < halfsz; j++) {
double cc = cos(j * shift / size);
double ss = sin(j * shift / size);
double reval = re_sig[j];
double imval = im_sig[j];
re_sig[j] = cc * reval - ss * imval;
im_sig[j] = ss * reval + cc * imval;
re_sig[size - j] = re_sig[j];
im_sig[size - j] = -im_sig[j];
}
re_sig[halfsz] = cos(shift/2) * re_sig[halfsz] - sin(shift/2) * im_sig[halfsz];
im_sig[halfsz] = 0.;
fft1d(-1, size, &re_sig[0], &im_sig[0]);
if (axis == HORIZONTAL)
memcpy(&output[i * size], &re_sig[0], size * sizeof(double));
else
for (int j = 0; j < size; j++) output[j * othersize + i] = re_sig[j];
}
};
'Image Recognition > Fundamental' 카테고리의 다른 글
Harris Corner Detector (0) | 2022.04.07 |
---|---|
Valley emphasis Otsu threshold (0) | 2022.02.23 |
FFT를 이용한 영상의 미분 (0) | 2022.02.12 |
SVD Fitting (0) | 2022.02.07 |
Color Histogram Equalization (4) | 2022.02.07 |