-
Notifications
You must be signed in to change notification settings - Fork 4
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
haesleinhuepf
committed
Jul 28, 2020
1 parent
71a48d6
commit c93767d
Showing
112 changed files
with
239 additions
and
329 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
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
15 changes: 7 additions & 8 deletions
15
...n/java/net/haesleinhuepf/clijx/incubator/interactive/suggestions/BinaryNotSuggestion.java
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,23 +1,22 @@ | ||
package net.haesleinhuepf.clijx.incubator.interactive.suggestions; | ||
|
||
import net.haesleinhuepf.clijx.incubator.interactive.generated.*; | ||
import net.haesleinhuepf.clijx.incubator.utilities.SuggestedPlugin; | ||
|
||
// this is generated code. See src/test/java/net/haesleinhuepf/clincubator/PluginGenerator.java for details. | ||
// this is generated code. See src/test/java/net/haesleinhuepf/clijx/incubator/PluginGenerator.java for details. | ||
public interface BinaryNotSuggestion extends SuggestedPlugin { | ||
default Class[] suggestedNextSteps() { | ||
return new Class[] { | ||
ConnectedComponentsLabeling.class, | ||
DistanceMap.class | ||
net.haesleinhuepf.clijx.incubator.interactive.generated.ConnectedComponentsLabeling.class, | ||
net.haesleinhuepf.clijx.incubator.interactive.generated.DistanceMap.class | ||
}; | ||
} | ||
|
||
default Class[] suggestedPreviousSteps() { | ||
return new Class[]{ | ||
VoronoiOctagon.class, | ||
ThresholdHuang.class, | ||
ThresholdDefault.class, | ||
ThresholdOtsu.class | ||
net.haesleinhuepf.clijx.incubator.interactive.generated.VoronoiOctagon.class, | ||
net.haesleinhuepf.clijx.incubator.interactive.generated.ThresholdHuang.class, | ||
net.haesleinhuepf.clijx.incubator.interactive.generated.ThresholdDefault.class, | ||
net.haesleinhuepf.clijx.incubator.interactive.generated.ThresholdOtsu.class | ||
}; | ||
} | ||
} |
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
16 changes: 8 additions & 8 deletions
16
...nhuepf/clijx/incubator/interactive/suggestions/ConnectedComponentsLabelingSuggestion.java
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,23 +1,23 @@ | ||
package net.haesleinhuepf.clijx.incubator.interactive.suggestions; | ||
|
||
import net.haesleinhuepf.clijx.incubator.interactive.generated.*; | ||
import net.haesleinhuepf.clijx.incubator.utilities.SuggestedPlugin; | ||
|
||
// this is generated code. See src/test/java/net/haesleinhuepf/clincubator/PluginGenerator.java for details. | ||
// this is generated code. See src/test/java/net/haesleinhuepf/clijx/incubator/PluginGenerator.java for details. | ||
public interface ConnectedComponentsLabelingSuggestion extends SuggestedPlugin { | ||
default Class[] suggestedNextSteps() { | ||
return new Class[] { | ||
ExcludeLabelsOnEdges.class, | ||
ExtendLabelsWithMaximumRadius.class | ||
net.haesleinhuepf.clijx.incubator.interactive.generated.MaximumZProjection.class, | ||
net.haesleinhuepf.clijx.incubator.interactive.generated.ExcludeLabelsOnEdges.class, | ||
net.haesleinhuepf.clijx.incubator.interactive.generated.ExtendLabelsWithMaximumRadius.class | ||
}; | ||
} | ||
|
||
default Class[] suggestedPreviousSteps() { | ||
return new Class[]{ | ||
BinaryNot.class, | ||
ThresholdDoG.class, | ||
ParametricWatershed.class, | ||
ThresholdOtsu.class | ||
net.haesleinhuepf.clijx.incubator.interactive.generated.BinaryNot.class, | ||
net.haesleinhuepf.clijx.incubator.interactive.generated.ThresholdDoG.class, | ||
net.haesleinhuepf.clijx.incubator.interactive.generated.ParametricWatershed.class, | ||
net.haesleinhuepf.clijx.incubator.interactive.generated.ThresholdOtsu.class | ||
}; | ||
} | ||
} |
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
18 changes: 8 additions & 10 deletions
18
...et/haesleinhuepf/clijx/incubator/interactive/suggestions/CylinderTransformSuggestion.java
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,25 +1,23 @@ | ||
package net.haesleinhuepf.clijx.incubator.interactive.suggestions; | ||
|
||
import net.haesleinhuepf.clijx.incubator.interactive.generated.*; | ||
import net.haesleinhuepf.clijx.incubator.interactive.handcrafted.MakeIsotropic; | ||
import net.haesleinhuepf.clijx.incubator.utilities.SuggestedPlugin; | ||
|
||
// this is generated code. See src/test/java/net/haesleinhuepf/clincubator/PluginGenerator.java for details. | ||
// this is generated code. See src/test/java/net/haesleinhuepf/clijx/incubator/PluginGenerator.java for details. | ||
public interface CylinderTransformSuggestion extends SuggestedPlugin { | ||
default Class[] suggestedNextSteps() { | ||
return new Class[] { | ||
MeanZProjection.class, | ||
MaximumZProjection.class, | ||
MeanZProjectionAboveThreshold.class | ||
net.haesleinhuepf.clijx.incubator.interactive.generated.MeanZProjection.class, | ||
net.haesleinhuepf.clijx.incubator.interactive.generated.MaximumZProjection.class, | ||
net.haesleinhuepf.clijx.incubator.interactive.generated.MeanZProjectionAboveThreshold.class | ||
}; | ||
} | ||
|
||
default Class[] suggestedPreviousSteps() { | ||
return new Class[]{ | ||
Rotate.class, | ||
MakeIsotropic.class, | ||
RigidTransform.class, | ||
TopHat.class | ||
net.haesleinhuepf.clijx.incubator.interactive.generated.Rotate.class, | ||
net.haesleinhuepf.clijx.incubator.interactive.handcrafted.MakeIsotropic.class, | ||
net.haesleinhuepf.clijx.incubator.interactive.generated.RigidTransform.class, | ||
net.haesleinhuepf.clijx.incubator.interactive.generated.TopHat.class | ||
}; | ||
} | ||
} |
14 changes: 5 additions & 9 deletions
14
...haesleinhuepf/clijx/incubator/interactive/suggestions/DetectAndLabelMaximaSuggestion.java
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,24 +1,20 @@ | ||
package net.haesleinhuepf.clijx.incubator.interactive.suggestions; | ||
|
||
import net.haesleinhuepf.clijx.incubator.interactive.generated.ExcludeLabelsOutsideSizeRange; | ||
import net.haesleinhuepf.clijx.incubator.interactive.generated.ExtendLabelingViaVoronoi; | ||
import net.haesleinhuepf.clijx.incubator.interactive.generated.MaximumZProjection; | ||
import net.haesleinhuepf.clijx.incubator.interactive.generated.ThresholdDoG; | ||
import net.haesleinhuepf.clijx.incubator.utilities.SuggestedPlugin; | ||
|
||
// this is generated code. See src/test/java/net/haesleinhuepf/clincubator/PluginGenerator.java for details. | ||
// this is generated code. See src/test/java/net/haesleinhuepf/clijx/incubator/PluginGenerator.java for details. | ||
public interface DetectAndLabelMaximaSuggestion extends SuggestedPlugin { | ||
default Class[] suggestedNextSteps() { | ||
return new Class[] { | ||
ExtendLabelingViaVoronoi.class, | ||
ExcludeLabelsOutsideSizeRange.class | ||
net.haesleinhuepf.clijx.incubator.interactive.generated.ExtendLabelingViaVoronoi.class, | ||
net.haesleinhuepf.clijx.incubator.interactive.generated.ExcludeLabelsOutsideSizeRange.class | ||
}; | ||
} | ||
|
||
default Class[] suggestedPreviousSteps() { | ||
return new Class[]{ | ||
MaximumZProjection.class, | ||
ThresholdDoG.class | ||
net.haesleinhuepf.clijx.incubator.interactive.generated.MaximumZProjection.class, | ||
net.haesleinhuepf.clijx.incubator.interactive.generated.ThresholdDoG.class | ||
}; | ||
} | ||
} |
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
5 changes: 2 additions & 3 deletions
5
...haesleinhuepf/clijx/incubator/interactive/suggestions/DifferenceOfGaussianSuggestion.java
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
11 changes: 4 additions & 7 deletions
11
...jx/incubator/interactive/suggestions/DrawDistanceMeshBetweenTouchingLabelsSuggestion.java
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,22 +1,19 @@ | ||
package net.haesleinhuepf.clijx.incubator.interactive.suggestions; | ||
|
||
import net.haesleinhuepf.clijx.incubator.interactive.generated.ExtendLabelingViaVoronoi; | ||
import net.haesleinhuepf.clijx.incubator.interactive.generated.ExtendLabelsWithMaximumRadius; | ||
import net.haesleinhuepf.clijx.incubator.interactive.generated.MaximumZProjection; | ||
import net.haesleinhuepf.clijx.incubator.utilities.SuggestedPlugin; | ||
|
||
// this is generated code. See src/test/java/net/haesleinhuepf/clincubator/PluginGenerator.java for details. | ||
// this is generated code. See src/test/java/net/haesleinhuepf/clijx/incubator/PluginGenerator.java for details. | ||
public interface DrawDistanceMeshBetweenTouchingLabelsSuggestion extends SuggestedPlugin { | ||
default Class[] suggestedNextSteps() { | ||
return new Class[] { | ||
MaximumZProjection.class | ||
net.haesleinhuepf.clijx.incubator.interactive.generated.MaximumZProjection.class | ||
}; | ||
} | ||
|
||
default Class[] suggestedPreviousSteps() { | ||
return new Class[]{ | ||
ExtendLabelingViaVoronoi.class, | ||
ExtendLabelsWithMaximumRadius.class | ||
net.haesleinhuepf.clijx.incubator.interactive.generated.ExtendLabelingViaVoronoi.class, | ||
net.haesleinhuepf.clijx.incubator.interactive.generated.ExtendLabelsWithMaximumRadius.class | ||
}; | ||
} | ||
} |
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
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
Oops, something went wrong.