Skip to content
#

Image processing

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

Here are 7,958 public repositories matching this topic...

albumentations
onepiecefreak3
onepiecefreak3 commented Feb 16, 2020

This feature is implemented in many graphics hardwares at least of most gaming consoles. Adding this feature would enable ImageSharp to natively allow for these specifications of graphics hardware to be supported out of the box.

As per OpenCV naming and implementation this feature is most likely known as "Remapping" or "Point remapping". So as the naming goes, it should incorporate either one.

mgmalheiros
mgmalheiros commented Aug 14, 2020

Description

When using flood_fill, there is a consistent double free error and a dying kernel (as shown in the output from Jupyter) when using a negative row coordinate for the point where the fill starts.

Way to reproduce

import numpy as np
from skimage import segmentation

a = np.random.randint(0, 2, (100,100))

#for r in range(a.shape[0]):
#    segmentation.flo
You can’t perform that action at this time.