David Futschik
David Futschik
I'm unaware of a jupyter compatible backend for Qt, so as of now, I don't think it's possible. Rewriting the UI layers to work with jupyter widgets would likely be...
The image produced from Gatys is 900x900, whereas the first one is 1024x1024. Are you sure the original image is at least 1024x1024?
Alright, as far as I can see it's probably due to optimizing with Laplacians, so the blurred image is basically added for stronger content preservation. One way to try to...
Hi Hugues @hhoppe , I ran into this somewhat annoying limitation too with no apparent way to tell the function to disable the downsampling. I've edited your snippet to show...
Okay after some code reading I found the issue, there's a conditional (and a very crude) downsampling step in https://github.com/google/mediapy/blob/main/mediapy/__init__.py#L1113-L1116 However, running `mediapy._IPYTHON_HTML_SIZE_LIMIT = mediapy._IPYTHON_HTML_SIZE_LIMIT * 10` seems to be...
That seems like a reasonable explanation, using fixed center and radius like ```python { 'type': 'sphere', 'to_world': mi.ScalarTransform4f.translate([0, 0, 0]).scale(-1000.0), 'emitter': {'type': 'area', 'radiance': 1.0}, } ``` as a workaround...
@njroussel I think ef3e81b99abbcea1c2d43a4399e5e6d535e64424 may have fixed the issue? If so, feel free to close.