Revision 299cf4b5d16a3f7183cd80f1daf76058c5cafc7c authored by Wei Liu on 06 May 2025, 01:41:44 UTC, committed by GitHub on 06 May 2025, 01:41:44 UTC
1 parent db8e703
psf2otf_Dx_GPU.m
function [otf] = psf2otf_Dx_GPU(outSize)
psf = single(zeros(outSize));
psf(1, 1) = -1;
psf(1, end) = 1;
psf = gpuArray(psf);
otf = fft2(psf);

Computing file changes ...