Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Opencv | 67,648 | 35 | 13 hours ago | 29 | September 22, 2022 | 2,503 | apache-2.0 | C++ | ||
Open Source Computer Vision Library | ||||||||||
Cvpr2023 Papers With Code | 11,022 | 2 days ago | 7 | |||||||
CVPR 2023 论文和开源项目合集 | ||||||||||
Caire | 10,173 | 1 | 2 | 17 hours 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,952 | 58 | a day ago | 31 | May 17, 2022 | 241 | apache-2.0 | Python | ||
Differentiable Computer Vision Library | ||||||||||
U 2 Net | 6,771 | 3 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." | ||||||||||
Deeplake | 5,395 | 52 | 1 | 16 hours ago | 149 | June 28, 2022 | 57 | 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 | ||||||||||
Gocv | 5,368 | 88 | 9 days ago | 49 | June 07, 2022 | 265 | other | Go | ||
Go package for computer vision using OpenCV 4 and beyond. | ||||||||||
Scikit Image | 5,324 | 7,387 | 1,979 | 13 hours ago | 45 | June 12, 2022 | 693 | other | Python | |
Image processing in Python | ||||||||||
Opencvsharp | 4,398 | 6 | 74 | 22 days ago | 38 | June 08, 2022 | 65 | apache-2.0 | C# | |
OpenCV wrapper for .NET |
ImageJ is public domain software for processing and analyzing scientific images.
It is written in Java, which allows it to run on many different platforms.
For further information, see:
To use ImageJ as a library in your Maven project, add the dependency:
<dependency>
<groupId>net.imagej</groupId>
<artifactId>ij</artifactId>
<version>1.53j</version>
</dependency>
Where 1.53j
is the version of ImageJ you would like to use:
The Apache Ant utility will compile and run ImageJ using the
build.xml
file in this directory. There is a version of Ant at
https://imagej.nih.gov/ij/download/tools/ant/ant.zip
set up to use the JVM distributed with the Windows version of ImageJ. The README included in the ZIP archive has more information.
You can compile and run ImageJ using the Maven build tool:
Command | Action |
---|---|
mvn |
Compile and package ImageJ into a JAR file in the target directory. |
mvn -Pexec |
Compile and then run ImageJ. |
mvn javadoc:javadoc |
Generate the project Javadoc in the target/apidocs directory. |