Matlab function for extraction of phase from interferogram

버전 1.0.0.0 (2.86 MB) 작성자: Dong-Gyu Jang
phase of the interferogram is extracted.
다운로드 수: 1.4K
업데이트 날짜: 2015/11/4

라이선스 보기

This is my built function for matlab used for extraction of phase from interferogram in interferometry. There are 2 mode for operation. Mode 1 is manual operation of mouse-selecting side peak (the peak containing phase information of the interferogram) in the frequency space for the interferogram. Mode 2 is automatic selection of side peak with given peak width for the interferogram of enough number of fringes. For minimizing noise, mode 1 is highly recommended.
How to use
Mode 1: phase_extraction(data,1)
Mode 2: phase_extraction(data,2,peak_width) or phase_extraction(data,2)
Function output: extracted phase in form of matrix (radian unit)
where data and peak_width are interferogram data (= imread(*.bmp) or imread(*.png)) and width of the side peak in frequency space, respectively. Smaller wide reduces noise but too much small value results in breaking of final phase shift profile as too much information is lost. Omitting peak_width in calling function make the function runs with default peak width of 30. (30*30 data points in square box around peak are selected)
Details description is given in HTML publication of the code.

인용 양식

Dong-Gyu Jang (2025). Matlab function for extraction of phase from interferogram (https://www.mathworks.com/matlabcentral/fileexchange/53421-matlab-function-for-extraction-of-phase-from-interferogram), MATLAB Central File Exchange. 검색 날짜: .

MATLAB 릴리스 호환 정보
개발 환경: R2014a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Get Started with Phased Array System Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0.0

Minor correction to description
Use of external function, maximize, is removed and loop is replaced with vector calculation for speed up.
Description is added.
Minor change to description.
More visual descriptions are added to function picture and compress file.
Add more to description.