LAT Hologramm-Software 2.0
Loading...
Searching...
No Matches
Phase_Image.m
Go to the documentation of this file.
1%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2 % Funktion
3 % Gibt die Phase eines Hologramms als Graustufenmatrix aus
4 %
5 % Projekt: "UKP-Laseroptikmodul zur Erzeugung von Multi-Besselstrahlen zum Bohren mit
6 % hohem Aspektverhältnis"
7 %
8 % Autor: Jan Marx
9 % Zuletzt bearbeitet: 26.04.2021
10 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11function [phase] = Phase_Image(image)
12%PHASEIMAGE
13phase = (angle(image)+pi)/(2*pi);
14phase=transpose(phase);
15end
16
function Phase_Image(in image)
Gibt die Phase eines Hologramms als Graustufenmatrix aus.