Open Source Computer Vision Library
-
Updated
Apr 26, 2022 - C++
Digital image processing is the use of algorithms to make computers analyze the content of digital images.
Check if test_random_gen_accumulative_additive_additive
still crashes in pytorch 1.10.1
Originally posted by @edgarriba in kornia/kornia#1611 (comment)
Originally posted by br3aker March 13, 2022
Current jpeg implementation lacks of COM marker support, does it need to support it? Should be easy to implement as this marker is just an array of bytes - itu spec leaves 'interpretation to the application', decoding API shoul
Currently, if a user tries to access an index that is larger than the dataset length or tensor length, an internal error is thrown which is not easy to understand.
We can catch the error and throw a more descriptive e
Enhancement
A discussion in #614 revealed a good place for improvement - we should ensure that input image is continuous upon start of the augmentation pipeline. This could be implemented by adding
image = np.ascontiguousarray(image)
to image and mask targets.A proposed place to add this call - somewhere at the beginning of
A.Compose.__call__
.