-
Updated
Mar 14, 2022 - C++
Image processing
Digital image processing is the use of algorithms to make computers analyze the content of digital images.
Here are 11,922 public repositories matching this topic...
-
Updated
Mar 2, 2022 - Python
-
Updated
Sep 30, 2021 - JavaScript
-
Updated
Mar 8, 2022 - JavaScript
-
Updated
Feb 13, 2022 - JavaScript
-
Updated
Mar 2, 2022 - Go
-
Updated
Oct 1, 2020 - Python
-
Updated
Mar 8, 2022 - Java
-
Updated
Mar 14, 2022 - Python
-
Updated
Feb 28, 2022 - Jupyter Notebook
-
Updated
Mar 3, 2022 - Python
-
Updated
Jul 21, 2020 - JavaScript
-
Updated
Mar 11, 2022
🚀 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
-
Updated
Mar 13, 2022 - Python
-
Updated
Mar 14, 2022 - Go
-
Updated
Feb 9, 2022 - Python
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
Mar 11, 2022 - Java
-
Updated
Dec 8, 2021 - Python
-
Updated
Feb 22, 2022 - Python
-
Updated
Mar 12, 2022 - C++
Feature Request
This is a feature request for a utility function for cropping images from a bounding box.
Note this need comes up a lot, particularly for 2D images - see this discussion on image.sc for an example, including prototype code. It would be nice to have a full nD solution though. Possibly something that
-
Updated
Mar 14, 2022 - Go
-
Updated
Mar 11, 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
Feb 12, 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__
.