cucim
cucim copied to clipboard
cuCIM - RAPIDS GPU-accelerated image processing library
It would be useful to include `find_contours` (as [demonstrated in this scikit-image example]( https://scikit-image.org/docs/stable/auto_examples/edges/plot_contours.html )). Here's [the scikit-image API]( https://scikit-image.org/docs/stable/api/skimage.measure.html#skimage.measure.find_contours ) for reference.
**Is your feature request related to a problem? Please describe.** Implement `skimage.feature.local_binary_pattern` as used in this scikit-image example: https://scikit-image.org/docs/stable/auto_examples/features_detection/plot_local_binary_pattern.html **Describe the solution you'd like** match the API of scikit-image
**Is your feature request related to a problem? Please describe.** It would be nice to provide the ORB (Oriented FAST and Rotateted BRIEF) feature detector. **Describe the solution you'd like**...
Currently there are a handful of tests that fail on ARM. Flagging these here for follow up. xref: https://github.com/rapidsai/cucim/pull/471#discussion_r1063263178 In particular these tests fail on ARM: From [`python/cucim/src/cucim/skimage/exposure/tests/test_exposure.py`]( https://github.com/rapidsai/cucim/blob/branch-23.02/python/cucim/src/cucim/skimage/exposure/tests/test_exposure.py ):...
(Tries to) address https://github.com/rapidsai/cucim/issues/375 This is a very rough attempt at starting to refactor CUDA code out of Python `str`s and into CUDA files. Starting with just one function to...
**Is your feature request related to a problem? Please describe.** A small number of last minute changes for the pending scikit-image 0.20 release have not been incorporated into release 2022.12.00....
Hi, First of all, thank you for that great work. I am currently using Cucim to accelerate morphological operations computation in the Napari plugin I developed. I would like my...
**Is your feature request related to a problem? Please describe.** One of the bottlenecks in my end-to-end Geospatial application for rapidly geolocating aerial imagery is the ability to perform image...
**Is your feature request related to a problem? Please describe.** One of the major bottlenecks in my end-to-end Geospatial application for rapidly geolocating aerial imagery is the ability to perform...
Functionality is equivalent since SciPy 1.6 (see note [here](https://docs.scipy.org/doc/scipy-1.13.0/reference/generated/scipy.spatial.cKDTree.html)). I pinned SciPy to >= 1.6 (released Dec 31, 2020) This MR also adds some missing test cases for the `_ensure_spacing`...