-
Notifications
You must be signed in to change notification settings - Fork 33
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
Showing
1 changed file
with
2 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,6 +1,7 @@ | ||
package org.janelia.render.client.spark.destreak; | ||
|
||
import ij.ImagePlus; | ||
import ij.process.ImageConverter; | ||
import org.janelia.alignment.destreak.StreakFinder; | ||
import org.janelia.alignment.spec.Bounds; | ||
import org.janelia.alignment.spec.stack.StackMetaData; | ||
|
@@ -29,6 +30,7 @@ public static void main(final String[] args) throws IOException { | |
|
||
final String srcPath = "/home/[email protected]/big-data/streak-correction/jrc_pri-neuro_0710dish-4/z7350-0-0-0.png"; | ||
final ImagePlus imp = new ImagePlus(srcPath); | ||
// new ImageConverter(imp).convertToGray8(); | ||
final StreakFinder finder = new StreakFinder(meanFilterSize, threshold, blurRadius); | ||
final ImagePlus mask = finder.createStreakMask(imp); | ||
|
||
|