Given $\mathscr{F}\{f(x,y)\}$ is there a way to numerically approximate $\mathscr{F}\{max(0,f(x,y))\}$ ?
I am not necessarily looking for a closed formula.
Even some iterative method would be fine.
Thanks.
EDIT:
I am doing an actual computation and trying to do most of the calculations in the frequency domain.
basically I have a point wise operation on $f(x,y)$, that taking the maximum between the value of the function and 0 $\rightarrow max(0,f(x,y))$ , this operation is non linear.
however I only have $\mathscr{F}\{f(x,y)\}$ and would like to avoid doing the inverse transofrm.
I know that I can calculate for example, $\mathscr{F}\{\frac{\partial}{\partial x} f(x,y)\} = \mathscr{F}\{\frac{\partial}{\partial x}\} \circ \mathscr{F}\{ f(x,y)\}$
where $\circ $ is point wise multiplication
and $\mathscr{F}\{\frac{\partial}{\partial x}\}$ is the fourier transform of the corrosponding convolution kernel - which is constant for any $f(x,y)$.
in my case the operation is not linear and therefore cannot be described with a convolution... I would like to know if it is possible to aproximate it using somthing like:
$\mathscr{F}\{max(0,f(x,y))\} \approx a_1 \mathscr{F}\{K_1\} \circ \mathscr{F}\{f(x,y)\} +a_2 \mathscr{F}\{K_2\} \circ \mathscr{F}\{f(x,y)\} + \dots + a_n \mathscr{F}\{K_n\} \circ \mathscr{F}\{f(x,y)\}$
btw if it helps, I have found a post that gives a good approximation for $ max(0,x)$