-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4c344f5
commit 03611ab
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,20 @@ | ||
[![Build Status](https://github.com/segment-anything-models-java/SAMJ/actions/workflows/build.yml/badge.svg)](https://github.com/segment-anything-models-java/SAMJ/actions/workflows/build.yml) | ||
|
||
|
||
|
||
# SAMJ: Segment-Anything-Model for Java software | ||
SAMJ is a Java based package that brings the [Segment-Anything-Model (SAM)](https://github.com/facebookresearch/segment-anything) to Java software. Thanks to [Appose](https://github.com/apposed/appose) SAMJ enables the installation and use of different variants of SAM. | ||
|
||
SAMJ provides a simple API for installation and inference of SAM models. | ||
|
||
# Quickstart | ||
The inly thing you need to incorporate SAMJ to your software is to add the dependency with Maven to the `pom.xml` file: | ||
|
||
``` | ||
<dependency> | ||
<groupId>ai.nets</groupId> | ||
<artifactId>samj</artifactId> | ||
<version>0.0.3-SNAPSHOT</version> | ||
</dependency> | ||
``` | ||
|