Skip to content

Commit 9d4535d

Browse files
gselzerctrueden
authored andcommitted
More readmes
1 parent 6e42eb9 commit 9d4535d

3 files changed

Lines changed: 38 additions & 0 deletions

File tree

imagej/imagej-ops2/README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# ImageJ Ops 2: The next generation of image processing algorithms
2+
3+
This library provides a suite of algorithms to aid in image processing and is the successor to [ImageJ Ops](https://github.com/imagej/imagej-ops). For Maven projects, this library can be used by adding to your `pom.xml`:
4+
5+
```java
6+
<dependency>
7+
<groupId>net.imagej</groupId>
8+
<artifactId>imagej-ops2</artifactId>
9+
<version>0-SNAPSHOT</version>
10+
<scope>test</scope>
11+
</dependency>
12+
```
13+
14+
As all algorithms in this library are Ops (check out SciJava Ops SPI for more on what this means), they are stateless and can be used statically. Static use, however, is discouraged with preference given to the use of SciJava Ops Engine (check out SciJava Ops Engine for the reasons why). All ImageJ Ops2 algorithms are usable out of the box with SciJava Ops Engine, making it easier to find the right algorithm for any application.

imagej/imagej-testutil/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# ImageJ Test Utilities: A set of shared `Img`-flavored test utilities
2+
3+
This library provides a suite of utilities commonly used in ImageJ projects. For Maven projects, this library can be used by adding to your `pom.xml`:
4+
5+
```java
6+
<dependency>
7+
<groupId>net.imagej</groupId>
8+
<artifactId>imagej-testutil</artifactId>
9+
<version>0-SNAPSHOT</version>
10+
<scope>test</scope>
11+
</dependency>
12+
```

scijava/scijava-testutil/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# SciJava Test Utilities: A set of shared test utilities
2+
3+
This library provides a suite of utilities commonly used in SciJava projects. For Maven projects, this library can be used by adding to your `pom.xml`:
4+
5+
```java
6+
<dependency>
7+
<groupId>org.scijava</groupId>
8+
<artifactId>scijava-test-utils</artifactId>
9+
<version>0-SNAPSHOT</version>
10+
<scope>test</scope>
11+
</dependency>
12+
```

0 commit comments

Comments
 (0)