But in this example there is no function. The plot is a plot of data that I got from a stochastic simulation.
Is this really a problem? Do a ListInterpolation
with your data - and you will have a function!
data2D = Table[1/(x^2 + 2 y^2), {y, -2.05, 2, .1}, {x, -2.05, 2, .1}];
(* data2D is just an example *)
func = ListInterpolation[data2D, {{-2.05, 2}, {-2.05, 2}}];
reg = ImplicitRegion[func[x, y] > 1, {x, y}];
CoordinateBounds[reg]