{"id":13715978,"url":"https://github.com/imagej/ImageJ","last_synced_at":"2025-05-07T05:32:07.547Z","repository":{"id":37723180,"uuid":"2136580","full_name":"imagej/ImageJ","owner":"imagej","description":"Public domain software for processing and analyzing scientific images","archived":false,"fork":false,"pushed_at":"2025-04-12T14:40:44.000Z","size":33940,"stargazers_count":639,"open_issues_count":74,"forks_count":232,"subscribers_count":48,"default_branch":"master","last_synced_at":"2025-04-26T08:35:22.582Z","etag":null,"topics":["computer-vision","image-processing"],"latest_commit_sha":null,"homepage":"http://imagej.org","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/imagej.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2011-08-01T12:29:11.000Z","updated_at":"2025-04-25T10:49:40.000Z","dependencies_parsed_at":"2023-12-15T03:48:17.996Z","dependency_job_id":"a7339e4e-b0cf-41e5-a0cf-64625df07df2","html_url":"https://github.com/imagej/ImageJ","commit_stats":{"total_commits":2603,"total_committers":4,"mean_commits":650.75,"dds":"0.029197080291970767","last_synced_commit":"7257bdd07f4ed7ca4703fcc15109d493e597757c"},"previous_names":[],"tags_count":349,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imagej%2FImageJ","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imagej%2FImageJ/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imagej%2FImageJ/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imagej%2FImageJ/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/imagej","download_url":"https://codeload.github.com/imagej/ImageJ/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252823105,"owners_count":21809700,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["computer-vision","image-processing"],"created_at":"2024-08-03T00:01:05.728Z","updated_at":"2025-05-07T05:32:02.532Z","avatar_url":"https://github.com/imagej.png","language":"Java","funding_links":[],"categories":["人工智能","General image analysis software"],"sub_categories":[],"readme":"[![](https://github.com/imagej/ImageJ/actions/workflows/build-main.yml/badge.svg)](https://github.com/imagej/ImageJ/actions/workflows/build-main.yml)\n\n# ImageJ\n\nImageJ is [public domain] software for processing and analyzing scientific\nimages.\n\nIt is written in Java, which allows it to run on many different platforms.\n\nFor further information, see:\n\n* The [ImageJ website], the primary home of this project.\n* The [ImageJ wiki], a community-built knowledge base covering ImageJ and\n  its derivatives and flavors, including [ImageJ2], [Fiji], and others.\n* The [ImageJ mailing list] and [Image.sc Forum] for community support.\n* The [Contributing] page of the ImageJ wiki for details on how to contribute.\n\n## Using ImageJ as a dependency\n\nTo use ImageJ as a library in your [Maven] project, add the dependency:\n\n```xml\n\u003cdependency\u003e\n  \u003cgroupId\u003enet.imagej\u003c/groupId\u003e\n  \u003cartifactId\u003eij\u003c/artifactId\u003e\n  \u003cversion\u003e1.53j\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\nWhere `1.53j` is the version of ImageJ you would like to use:\n\n* Versions up to 1.48q are [in the SciJava Maven repository](https://maven.scijava.org/content/repositories/releases/net/imagej/ij/).\n* Versions starting with 1.48r are [on Maven Central](https://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22net.imagej%22%20AND%20a%3A%22ij%22).\n* Be aware that versions prior to 1.53k may not identically match the\n  corresponding release tags here in this repository.\n\n## Building from source\n\n### With Ant\n\nThe [Apache Ant] utility will compile and run ImageJ using the\n`build.xml` file in this directory. There is a version of Ant at\n\n    https://imagej.nih.gov/ij/download/tools/ant/ant.zip\n\nset up to use the JVM distributed with the Windows version of ImageJ.\nThe README included in the ZIP archive has more information.\n\n### With Maven\n\nYou can compile and run ImageJ using the [Maven] build tool:\n\n| Command               | Action                                                                |\n|-----------------------|-----------------------------------------------------------------------|\n| `mvn`                 | Compile and package ImageJ into a JAR file in the `target` directory. |\n| `mvn -Pexec`          | Compile and then run ImageJ.                                          |\n| `mvn javadoc:javadoc` | Generate the project Javadoc in the `target/apidocs` directory.       |\n\n[public domain]: https://imagej.nih.gov/ij/disclaimer.html\n[ImageJ website]: https://imagej.nih.gov/ij/\n[ImageJ wiki]: https://imagej.net/\n[ImageJ2]: https://imagej.net/software/imagej2\n[Fiji]: https://imagej.net/software/fiji\n[ImageJ mailing list]: https://imagej.nih.gov/ij/list.html\n[Image.sc Forum]: https://forum.image.sc/tag/imagej\n[Contributing]: https://imagej.net/contribute/\n[Maven]: https://imagej.net/develop/maven\n[Apache Ant]: https://ant.apache.org/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fimagej%2FImageJ","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fimagej%2FImageJ","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fimagej%2FImageJ/lists"}