Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- 무게선별자동화
- 카메라
- camera
- 조건 제어문
- 렌즈
- Pixel Bit Format
- 아이리스
- main 함수 인자 전달
- ASCCII
- Patch Cleaner
- 이미지센서
- 고정비트레이트
- 심도
- Depth of Fileld
- 프로그래머스 lv2
- C Mount
- Gain
- CS Mount
- AppInventer
- 변수
- image sensor
- 변수의 초기화와 대입
- 저조도
- 과초점거리
- Digital Slow Shutter
- 저장소와 동적메모리
- 간단한 앱만들어보기
- c언어
- 실생활알고리즘
- Zoom Lense
Archives
- Today
- Total
목록Fourier transform (1)
카메라 개발자 공부방(SW)
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/2kNxW/btrkWOyyqgn/5nwFncR6a6RxzxKXh7CNmk/img.jpg)
영상 신호를 주파수 영역으로 변환시키는 DFT 코드 입니다. 입력은 pSrc이고 출력은 pReal, pImaginary입니다. void FourierTransform::DFT(Mat* pSrc, Mat* pReal, Mat* pImaginary) { *pReal = Scalar(0); *pImaginary = Scalar(0); float* src = pSrc->ptr(0); float* real = pReal->ptr(0); float* imaginary = pImaginary->ptr(0); float N = (float)pSrc->rows; float M = (float)pSrc->cols; float NM = N * M; /* If you want to visualize this frequency..
영상처리(DigitalImageProcessing)
2021. 11. 14. 19:59