-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Tr2dLabkitSegmentationPlugin-0.1.7
- Tr2dLabkitSegmentationPlugin-0.1.6
- Tr2dLabkitSegmentationPlugin-0.1.5
- Tr2dLabkitSegmentationPlugin-0.1.4
- Tr2dLabkitSegmentationPlugin-0.1.3
- Tr2dLabkitSegmentationPlugin-0.1.2
- Tr2dLabkitSegmentationPlugin-0.1.1
- IndagoLabkitSegmentationPlugin-0.1.9
- IndagoLabkitSegmentationPlugin-0.1.8
Showing
4 changed files
with
28 additions
and
22 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
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
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
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,21 +1,23 @@ | ||
|
||
package com.indago.tr2d.plugins.seg; | ||
|
||
import net.imagej.ops.OpService; | ||
import net.imagej.ops.thread.chunker.ChunkerOp; | ||
import net.imagej.ops.thread.chunker.CursorBasedChunk; | ||
import org.scijava.Context; | ||
|
||
|
||
public class Main { | ||
|
||
public static void main(String... args) { | ||
Context context = new Context(); | ||
context.service(OpService.class).run(ChunkerOp.class, new CursorBasedChunk() { | ||
@Override | ||
public void execute(final int startIndex, final int stepSize, | ||
final int numSteps) | ||
context.service(OpService.class).run(ChunkerOp.class, | ||
new CursorBasedChunk() | ||
{ | ||
} | ||
}, 100); | ||
|
||
@Override | ||
public void execute(final int startIndex, final int stepSize, | ||
final int numSteps) | ||
{} | ||
}, 100); | ||
} | ||
} |