https://github.com/wliusjtu/Real-time-Image-Smoothing-via-Iterative-Least-Squares
Tip revision: 299cf4b5d16a3f7183cd80f1daf76058c5cafc7c authored by Wei Liu on 06 May 2025, 01:41:44 UTC
Update README.md
Update README.md
Tip revision: 299cf4b
psf2otf_Dy_GPU.m
function [otf] = psf2otf_Dy_GPU(outSize)
psf = single(zeros(outSize));
psf(1, 1) = -1;
psf(end, 1) = 1;
psf = gpuArray(psf);
otf = fftn(psf);