Martin Weigert

Results 8 issues of Martin Weigert

Hi, first, thanks for creating those builds! I noticed that the recent Emacs version (28.1) for macOS (12.3.1) crashes whenever an entry in a popup menu is selected (e.g. when...

Hi, The [documentation of tfg.image.pyramid.downsample](https://github.com/tensorflow/graphics/blob/cdbc190e5c04efac7a48d7bc5dfa427598849a24/tensorflow_graphics/image/pyramid.py#L153-L178) states it to return "A list containing `num_levels` tensors" but it actually returns a list containing `num_levels+1` tensors ```python import tensorflow as tf import tensorflow_graphics...

Right now the mode parameter (e.g. "reflect", "wrap"...) in transform_img and transform_img_dict was ignored (issue https://github.com/matejak/imreg_dft/issues/26 ) - this should add the expected behaviour. I got rid of the extra...

Currently, the mode parameter is ignored in transform_img, i.e. the following ```python from scipy.misc import ascent import scipy.ndimage.interpolation as ndii im = ascent() out1 = imreg_dft.transform_img(im, tvec=[100,100], mode="reflect") out2 =...

The [current version on pypi](https://pypi.python.org/pypi/scikit-tensor) is almost 3 years old and doesn't support python3 - any chance to have it updated? pip3 installs just fine with the current master, so...

Hi, When using "Import Labeling" to import a label tif image that contains even a single object with a high object id (e.g. 5000), all intermediate ids (1...5000) will get...

Hi, It seems that writing an image pyramid always uses `nearest` downsampling even if a different method is provided (e.g. `gaussian`): https://github.com/ome/ome-zarr-py/blob/1f47e59fcda1eb551b59e32ddb35dd676a6e8f91/ome_zarr/writer.py#L830 Changing this line to ```python mip = getattr(scaler,...

**Describe the bug** On Apple M1 using tensorflow-metal 2.6, predicting larger images (larger than ~1446 height/width) leads to results being cut off. ```python import numpy as np import tensorflow as...

bug