• 大小: 905B
    文件类型: .m
    金币: 1
    下载: 0 次
    发布日期: 2021-06-11
  • 语言: Matlab
  • 标签: phase  unwrapping  

资源简介

2D_Phase_Unwrapping 代码 matlab

资源截图

代码片段和文件信息

clear; clc; close all
%This Matlab program calls a 2D Phase unwrapper written in C language
%The wrapped phase image is floating point data type. 
%Also the unwrapped phase image is floating data type.

%read the wrapped phase image from a file. 
image_width = 512;
image_height = 512;
fid = fopen(‘wrapped phase map float 512X512.dat‘);
WrappedPhase = fread(fid image_width * image_height ‘float‘);
fclose(fid);
WrappedPhase = reshape(Wr

评论

共有 条评论