-
Notifications
You must be signed in to change notification settings - Fork 15
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
Sep 27, 2020
1 parent
de827a2
commit 621c70f
Showing
14 changed files
with
156 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
## binaryWekaPixelClassifier | ||
<img src="images/mini_empty_logo.png"/><img src="images/mini_empty_logo.png"/><img src="images/mini_clijx_logo.png"/> | ||
|
||
Applies a pre-trained CLIJx-Weka model to a 2D image. | ||
|
||
You can train your own model using menu Plugins > Segmentation > CLIJx Binary Weka Pixel ClassifierMake sure that the handed over feature list is the same used while training the model. | ||
|
||
Categories: [Binary](https://clij.github.io/clij2-docs/reference__binary), [Segmentation](https://clij.github.io/clij2-docs/reference__segmentation) | ||
|
||
### Usage in ImageJ macro | ||
``` | ||
Ext.CLIJx_binaryWekaPixelClassifier(Image input, Image destination, String features, String modelfilename); | ||
``` | ||
|
||
|
||
[Back to CLIJ2 reference](https://clij.github.io/clij2-docs/reference) | ||
[Back to CLIJ2 documentation](https://clij.github.io/clij2-docs) | ||
|
||
[Imprint](https://clij.github.io/imprint) |
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 |
---|---|---|
@@ -0,0 +1,56 @@ | ||
## generateLabelFeatureImage | ||
<img src="images/mini_empty_logo.png"/><img src="images/mini_empty_logo.png"/><img src="images/mini_clijx_logo.png"/> | ||
|
||
Generates a feature image for Trainable Weka Segmentation. | ||
|
||
Use this terminology to specify which features should be generated: | ||
* BOUNDING_BOX_DEPTH | ||
* BOUNDING_BOX_WIDTH | ||
* BOUNDING_BOX_HEIGHT | ||
* CENTROID_X | ||
* CENTROID_Y | ||
* CENTROID_Z | ||
* MASS_CENTER_X | ||
* MASS_CENTER_Y | ||
* MASS_CENTER_Z | ||
* MAX_DISTANCE_TO_CENTROID | ||
* MAX_DISTANCE_TO_MASS_CENTER | ||
* MEAN_DISTANCE_TO_CENTROID | ||
* MEAN_DISTANCE_TO_MASS_CENTER | ||
* MAX_MEAN_DISTANCE_TO_CENTROID_RATIO | ||
* MAX_MEAN_DISTANCE_TO_MASS_CENTER_RATIO | ||
* MAXIMUM_INTENSITY | ||
* MEAN_INTENSITY | ||
* MINIMUM_INTENSITY | ||
* SUM_INTENSITY | ||
* STANDARD_DEVIATION_INTENSITY | ||
* PIXEL_COUNT | ||
* local_mean_average_distance_of_touching_neighbors | ||
* local_maximum_average_distance_of_touching_neighbors | ||
* count_touching_neighbors | ||
* local_minimum_average_distance_of_touching_neighbors | ||
* average_touch_pixel_count | ||
* local_minimum_count_touching_neighbors | ||
* average_distance_n_closest_neighbors | ||
* average_distance_of_touching_neighbors | ||
* local_mean_count_touching_neighbors | ||
* local_mean_average_distance_n_closest_neighbors | ||
* local_maximum_average_distance_n_closest_neighbors | ||
* local_standard_deviation_average_distance_of_touching_neighbors | ||
* local_maximum_count_touching_neighbors | ||
* local_standard_deviation_count_touching_neighbors | ||
* local_standard_deviation_average_distance_n_closest_neighbors | ||
* local_minimum_average_distance_n_closest_neighbors | ||
|
||
Example: "MEAN_INTENSITY count_touching_neighbors" | ||
|
||
### Usage in ImageJ macro | ||
``` | ||
Ext.CLIJx_generateLabelFeatureImage(Image input, Image label_map, Image label_feature_image_destination, String feature_definitions); | ||
``` | ||
|
||
|
||
[Back to CLIJ2 reference](https://clij.github.io/clij2-docs/reference) | ||
[Back to CLIJ2 documentation](https://clij.github.io/clij2-docs) | ||
|
||
[Imprint](https://clij.github.io/imprint) |
Oops, something went wrong.