LAT Hologramm-Software 2.0
Loading...
Searching...
No Matches
Hologram_FFT.m
Go to the documentation of this file.
1%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2 % Funktion
3 % Erzeugt das Fouriertransformierte Bild zu einer Graustufenmatrix
4 % Projekt: "UKP-Laseroptikmodul zur Erzeugung von Multi-Besselstrahlen zum Bohren mit
5 % hohem Aspektverhältnis"
6 %
7 % Autor: Jan Marx
8 % Zuletzt bearbeitet: 28.04.2021
9 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10
11function Y = Hologram_FFT(image)
12%HOLOGRAMM_FFT
13Y=fftshift(fft2((fftshift(image))));
14end
function Hologram_FFT(in image)