Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Opencv | 67,483 | 35 | 4 hours ago | 29 | September 22, 2022 | 2,484 | apache-2.0 | C++ | ||
Open Source Computer Vision Library | ||||||||||
Cvpr2023 Papers With Code | 10,861 | 3 days ago | 5 | |||||||
CVPR 2023 论文和开源项目合集 | ||||||||||
Caire | 10,161 | 1 | 2 | 19 days ago | 53 | April 05, 2022 | 3 | mit | Go | |
Content aware image resize library | ||||||||||
Computervision Recipes | 8,817 | 2 months ago | 65 | mit | Jupyter Notebook | |||||
Best Practices, code samples, and documentation for Computer Vision. | ||||||||||
Kornia | 7,907 | 58 | 19 hours ago | 31 | May 17, 2022 | 238 | apache-2.0 | Python | ||
Open Source Differentiable Computer Vision Library | ||||||||||
U 2 Net | 6,771 | 2 months ago | 4 | February 11, 2022 | 203 | apache-2.0 | Python | |||
The code for our newly accepted paper in Pattern Recognition 2020: "U^2-Net: Going Deeper with Nested U-Structure for Salient Object Detection." | ||||||||||
Gocv | 5,368 | 88 | 2 days ago | 49 | June 07, 2022 | 265 | other | Go | ||
Go package for computer vision using OpenCV 4 and beyond. | ||||||||||
Deeplake | 5,343 | 52 | 1 | 3 hours ago | 149 | June 28, 2022 | 68 | mpl-2.0 | Python | |
Data Lake for Deep Learning. Build, manage, query, version, & visualize datasets. Stream data real-time to PyTorch/TensorFlow. https://activeloop.ai | ||||||||||
Scikit Image | 5,318 | 7,387 | 1,979 | 3 hours ago | 45 | June 12, 2022 | 686 | other | Python | |
Image processing in Python | ||||||||||
Opencvsharp | 4,398 | 6 | 74 | 15 days ago | 38 | June 08, 2022 | 65 | apache-2.0 | C# | |
OpenCV wrapper for .NET |
This is the repository for ImageJ2, a rewrite of the original ImageJ for multidimensional image data, with a focus on scientific imaging. Its central goal is to broaden the paradigm of ImageJ beyond the limitations of the original ImageJ application, to support a wider range of multidimensional scientific image data.
To ensure backwards compatibility, ImageJ2 has been designed to fully integrate into the original ImageJ user interface. This allows users to keep using ImageJ in familiar ways, while providing the ability to migrate toward more powerful new features as needed.
Under the hood, ImageJ2 completely isolates the image processing logic from the graphical user interface (UI), allowing ImageJ2 commands to be used in many contexts, including headless in the cloud or on a server such as OMERO, from within another Java application such as KNIME or Icy, or even from Python-based applications such as CellProfiler and napari via PyImageJ.
ImageJ2 has an N-dimensional data model driven by the powerful ImgLib2 library, which supports image data expressed in an extensible set of numeric and non-numeric types, and accessed from an extensible set of data sources. ImageJ2 is driven by a collaborative development process; for details, see the Contributing page.
We collaborate with related projects such as Fiji, SCIFIO, CellProfiler, and OME, and are striving to deliver a coherent software stack reusable throughout the life sciences community and beyond. For more details, see the SciJava web site.
For more details on the project, see the ImageJ wiki.
ImageJ2 is distributed under a Simplified BSD License; for the full text of the license, see LICENSE.txt.
This repository is the main ImageJ2 application, which brings together all of
ImageJ2 under the artifact
net.imagej:imagej.
It is the easiest entry point if you are looking to use ImageJ2 as a library
from your own software. E.g., in your Maven pom.xml
:
<parent>
<groupId>org.scijava</groupId>
<artifactId>pom-scijava</artifactId>
<version>30.0.0</version>
</parent>
...
<dependency>
<groupId>net.imagej</groupId>
<artifactId>imagej</artifactId>
</dependency>
We recommend inheriting from the
pom-scijava parent, although it is not
required. (If you do not, you will need to include the <version>
of ImageJ2 in
your <dependency>
declaration, and you may be bitten by this bug in
Maven regarding the versions of
ImageJ2's dependencies that you inherit.)
This component depends on other, lower level components, each of which lives in its own repository:
It also includes various "plugin" components at runtime:
See the pom.xml for a complete list of dependencies.
For a list of known issues, see the GitHub issues.
Please report any bugs by following the instructions online.