Vladimir Philipenko

Results 13 issues of Vladimir Philipenko

What are best parameters {'param-grad', 'param-block', 'param-minarea'} of detection algorithm for RICO dataset?

For example `import imops` breaks floating point subnormals flushing them to 0: ```python import sys sys.float_info.min / 2 != 0.0 # True import imops sys.float_info.min / 2 != 0.0 #...

bug

This code does not terminate within a reasonable time for imops built with Cython >= 3.0.0 ```python import numpy as np from imops.zoom import zoom x = np.zeros((256, 256, 256))...

bug

There are no test coverage for Cython and Numba code for now, fix it

enhancement

- Add per-slice viewer (aka [slice3d](https://github.com/neuro-ml/deep_pipe/blob/master/dpipe/im/visualize.py#L62)) - Add 3d viewer

enhancement

Functions like `get_pixel3d` are used in many places in the code and should be moved to separate file (`utils.pyx`). Performance drop may occur, be careful