The Wayback Machine - https://web.archive.org/web/20200831064606/https://github.com/topics/image-processing
Skip to content
#

Image processing

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

Here are 8,036 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.

juliangilbey
juliangilbey commented Aug 18, 2020

Description

Consider this very short piece of code:

testimg = np.array([0, 1, 2, 3, 4, 3.5, 4, 5, 4, 3, 2, 1, 0])
morphology.h_maxima(testimg, 1)
morphology.h_maxima(testimg, 2)
morphology.h_maxima(testimg, 3)

The results show that the element with value 5 is always picked up by this function, even though it is not a local maximum with height h for any h; rather it i

You can’t perform that action at this time.