-
Updated
Feb 1, 2022 - C++
Image processing
Digital image processing is the use of algorithms to make computers analyze the content of digital images.
Here are 11,642 public repositories matching this topic...
-
Updated
Jan 20, 2022 - Python
-
Updated
Sep 30, 2021 - JavaScript
-
Updated
Dec 21, 2021 - JavaScript
-
Updated
Dec 25, 2021 - JavaScript
-
Updated
Feb 1, 2022 - Go
-
Updated
Oct 1, 2020 - Python
-
Updated
Oct 16, 2021 - Java
-
Updated
Feb 2, 2022 - Python
-
Updated
Oct 25, 2021 - Jupyter Notebook
-
Updated
Nov 30, 2021 - Python
-
Updated
Jul 21, 2020 - JavaScript
-
Updated
Nov 15, 2021
-
Updated
Aug 25, 2021 - Python
-
Updated
Feb 1, 2022 - Go
-
Updated
Feb 1, 2022 - Python
🚀 Feature
As reported by deepsource in here we abuse from using built-in input function in our functionality.
Motivation
We target to have a clean and healthy source code free of risk.
Pitch
Replace variable names whether it makes sense e.g. for image based functionality input -> image ; in l
A follow up on SixLabors/ImageSharp#1378 (comment).
Currently 32 bit test execution is only done for .NET Framework, with dotnet xunit which is an obsolete tool today, we need to adapt dotnet test, and add 32 bit CI targets for both net5.0 and netcoreapp3.1. Opening an issue to remember and track this debt.
-
Updated
Dec 13, 2021 - Java
-
Updated
Dec 8, 2021 - Python
-
Updated
Jan 31, 2022 - Python
-
Updated
Feb 2, 2022 - C++
Perhaps I missed something but it took me a while to realise that there was an __call__ on this object. Perhaps extending the example would help prevent people from having this issue in future.
-
Updated
Jan 31, 2022 - Go
-
Updated
Jan 13, 2022 - Python
🚨 🚨 Feature Request
If your feature will improve HUB
To explore the structure of a dataset it is convenient to have nicer and more informative prints of dataset objects and samples
Description of the possible solution
1) show ds
now
> ds
Dataset(path='hub://activeloop/abalone_full_dataset', tensors=['length', 'diameter', 'height', 'weight'])-
Updated
Jan 23, 2022 - Objective-C


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__.