-
Notifications
You must be signed in to change notification settings - Fork 17
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
c775d67
commit 3cc80ac
Showing
6 changed files
with
11 additions
and
4 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 |
---|---|---|
|
@@ -150,7 +150,7 @@ | |
import picocli.CommandLine.Option; | ||
|
||
/** | ||
* | ||
* Application to copy/ re-block/ re-compress a group from one N5 container into another. | ||
* | ||
* @author Stephan Saalfeld <[email protected]> | ||
*/ | ||
|
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 |
---|---|---|
|
@@ -129,6 +129,9 @@ | |
* Converts a {@link RealComposite} into an {@link UnsignedLongType}. | ||
* | ||
* @author Stephan Saalfeld <[email protected]> | ||
* | ||
* @param <I> input type | ||
* @param <O> output type | ||
*/ | ||
public class GenericLongTypeLUTConverter<I extends GenericLongType<I>, O extends GenericLongType<O>> implements Converter<I, O> { | ||
|
||
|
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 |
---|---|---|
|
@@ -128,6 +128,8 @@ | |
* Converts a {@link RealComposite} into an {@link UnsignedLongType}. | ||
* | ||
* @author Stephan Saalfeld <[email protected]> | ||
* | ||
* @param <T> input type | ||
*/ | ||
public class ThresholdRealCompositeConverter<T extends RealType<T>> implements Converter<RealComposite<T>, UnsignedLongType> { | ||
|
||
|
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 |
---|---|---|
|
@@ -127,6 +127,8 @@ | |
* Converts a {@link RealType} above threshold into an {@link UnsignedLongType}. | ||
* | ||
* @author Stephan Saalfeld <[email protected]> | ||
* | ||
* @param <T> input type | ||
*/ | ||
public class ThresholdRealConverter<T extends RealType<T>> implements Converter<T, UnsignedLongType> { | ||
|
||
|
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 |
---|---|---|
|
@@ -139,7 +139,7 @@ | |
import picocli.CommandLine.Option; | ||
|
||
/** | ||
* | ||
* Application to extract the unique sets of numbers present in an N5 dataset. | ||
* | ||
* @author Stephan Saalfeld <[email protected]> | ||
*/ | ||
|
@@ -148,7 +148,7 @@ public class Unique implements Callable<Void> { | |
@Option(names = {"-i", "--container"}, required = true, description = "container path, e.g. -i $HOME/fib19.n5") | ||
private String containerPath = null; | ||
|
||
@Option(names = {"-d", "--datasets"}, required = true, description = "dataset, e.g. -d '/slab-26,slab-27'") | ||
@Option(names = {"-d", "--dataset"}, required = true, description = "dataset, e.g. -d '/slab-26'") | ||
private String dataset = null; | ||
|
||
public static <T extends IntegerType<T>>long[] uniqueInteger(final IterableInterval<T> iterable) { | ||
|
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 |
---|---|---|
|
@@ -174,7 +174,7 @@ | |
import picocli.CommandLine.Option; | ||
|
||
/** | ||
* | ||
* BigDataViewer based viewer application for N5 datasets. | ||
* | ||
* @author Stephan Saalfeld <[email protected]> | ||
*/ | ||
|