Skip to content
#

Image processing

Digital image processing is the use of algorithms to make computers analyze the content of digital images.

Here are 2,593 public repositories matching this topic...

albumentations
rdinner
rdinner commented Aug 3, 2020

Description

When the image array passed to skimage.segmentation.slic() is a float array containing NaNs, the routine frequently crashes (most of the time, in my case). In Spyder, this causes a silent failure, with the print statement below failing to execute and the environment being reset. I've observed this behavior under both Windows and Linux.

Way to reproduce

import nu
QifanZhang98
QifanZhang98 commented Feb 23, 2020

Link: https://kornia.readthedocs.io/en/latest/geometry.conversions.html#kornia.geometry.conversions.angle_axis_to_quaternion

Input and output are described as:
Input: (∗,3) where * means, any number of dimensions
Output: (∗,4)

While the example shows:

angle_axis = torch.rand(2, 4) # Nx4 quaternion = kornia.angle_axis_to_quaternion(angle_axis) # Nx3

The example indicates that in

ogvalt
ogvalt commented Apr 25, 2020

Describe the bug
I found that some names agruments in framework aren't consistent.
So for example:

class SupervisedRunner(Runner):
    """Runner for experiments with supervised model."""

    _experiment_fn: Callable = SupervisedExperiment

    def __init__(
        self,
        model: Model = None,
        device: Device = None,
        input_key: Any = "features", 
      
You can’t perform that action at this time.