@@ -37,7 +37,7 @@ run("Close All");
37
37
Create a mask using the Otsu threshold algorithm
38
38
39
39
``` java
40
- Ext . CLIJ2_thresholdOtsu(input, mask);
40
+ Ext . [ CLIJ2_thresholdOtsu ](https : // clij.github.io/clij2-docs/reference_thresholdOtsu) (input, mask);
41
41
Ext . CLIJ2_pull(mask);
42
42
43
43
```
@@ -47,9 +47,9 @@ Draw a Voronoi diagram and invert it
47
47
48
48
```java
49
49
50
- Ext . CLIJ2_voronoiOctagon(mask, voronoi_diagram);
50
+ Ext . [ CLIJ2_voronoiOctagon ](https : // clij.github.io/clij2-docs/reference_voronoiOctagon) (mask, voronoi_diagram);
51
51
// invert
52
- Ext . CLIJ2_binaryNot(voronoi_diagram, inverted_voronoi);
52
+ Ext . [ CLIJ2_binaryNot ](https : // clij.github.io/clij2-docs/reference_binaryNot) (voronoi_diagram, inverted_voronoi);
53
53
54
54
Ext . CLIJ2_pullBinary(voronoi_diagram);
55
55
Ext . CLIJ2_pullBinary(inverted_voronoi);
@@ -61,10 +61,10 @@ Ext.CLIJ2_pullBinary(inverted_voronoi);
61
61
Generate a label map and extend it to make labels touch
62
62
63
63
```java
64
- Ext . CLIJ2_connectedComponentsLabelingBox(inverted_voronoi, labelled);
64
+ Ext . [ CLIJ2_connectedComponentsLabelingBox ](https : // clij.github.io/clij2-docs/reference_connectedComponentsLabelingBox) (inverted_voronoi, labelled);
65
65
66
66
// Extend labels so that they touch
67
- Ext . CLIJ2_maximum2DBox(labelled, labelled_extended, 2 , 2 );
67
+ Ext . [ CLIJ2_maximum2DBox ](https : // clij.github.io/clij2-docs/reference_maximum2DBox) (labelled, labelled_extended, 2, 2);
68
68
69
69
Ext . CLIJ2_pull(labelled);
70
70
Ext . CLIJ2_pull(labelled_extended);
@@ -76,7 +76,7 @@ Ext.CLIJ2_pull(labelled_extended);
76
76
Determine touch matrix
77
77
78
78
```java
79
- Ext . CLIJ2_generateTouchMatrix(labelled_extended, touch_matrix);
79
+ Ext . [ CLIJ2_generateTouchMatrix ](https : // clij.github.io/clij2-docs/reference_generateTouchMatrix) (labelled_extended, touch_matrix);
80
80
Ext . CLIJ2_pullBinary(touch_matrix);
81
81
82
82
```
@@ -87,16 +87,16 @@ Do statistics on the label map
87
87
88
88
```java
89
89
run(" Clear Results" );
90
- Ext . CLIJ2_statisticsOfBackgroundAndLabelledPixels(input, labelled_extended);
90
+ Ext . [ CLIJ2_statisticsOfBackgroundAndLabelledPixels ](https : // clij.github.io/clij2-docs/reference_statisticsOfBackgroundAndLabelledPixels) (input, labelled_extended);
91
91
92
- Ext . CLIJ2_resultsTableColumnToImage(intensity_values, " MEAN_INTENSITY" );
92
+ Ext . [ CLIJ2_resultsTableColumnToImage ](https : // clij.github.io/clij2-docs/reference_resultsTableColumnToImage) (intensity_values, "MEAN_INTENSITY");
93
93
94
94
```
95
95
96
96
Show Mean intensity per label as parametric image
97
97
98
98
```java
99
- Ext . CLIJ2_replaceIntensities(labelled_extended, intensity_values, intensity_map);
99
+ Ext . [ CLIJ2_replaceIntensities ](https : // clij.github.io/clij2-docs/reference_replaceIntensities) (labelled_extended, intensity_values, intensity_map);
100
100
Ext . CLIJ2_pull(intensity_map);
101
101
rename(" label intensity" );
102
102
@@ -107,8 +107,8 @@ Determine mean (mean) intensity of local neighbors and draw another parametric i
107
107
108
108
```java
109
109
110
- Ext . CLIJ2_meanOfTouchingNeighbors(intensity_values, touch_matrix, local_mean_intensity_values);
111
- Ext . CLIJ2_replaceIntensities(labelled_extended, local_mean_intensity_values, local_mean_intensity_map);
110
+ Ext . [ CLIJ2_meanOfTouchingNeighbors ](https : // clij.github.io/clij2-docs/reference_meanOfTouchingNeighbors) (intensity_values, touch_matrix, local_mean_intensity_values);
111
+ Ext . [ CLIJ2_replaceIntensities ](https : // clij.github.io/clij2-docs/reference_replaceIntensities) (labelled_extended, local_mean_intensity_values, local_mean_intensity_map);
112
112
Ext . CLIJ2_pull(local_mean_intensity_map);
113
113
rename(" mean neighbor intensity" );
114
114
@@ -120,14 +120,14 @@ Determine min and max (mean) intensity of local neighbors and draw two more para
120
120
```java
121
121
122
122
// min
123
- Ext . CLIJ2_minimumOfTouchingNeighbors(intensity_values, touch_matrix, local_minimum_intensity_values);
124
- Ext . CLIJ2_replaceIntensities(labelled_extended, local_minimum_intensity_values, local_minimum_intensity_map);
123
+ Ext . [ CLIJ2_minimumOfTouchingNeighbors ](https : // clij.github.io/clij2-docs/reference_minimumOfTouchingNeighbors) (intensity_values, touch_matrix, local_minimum_intensity_values);
124
+ Ext . [ CLIJ2_replaceIntensities ](https : // clij.github.io/clij2-docs/reference_replaceIntensities) (labelled_extended, local_minimum_intensity_values, local_minimum_intensity_map);
125
125
Ext . CLIJ2_pull(local_minimum_intensity_map);
126
126
rename(" minimum neighbor intensity" );
127
127
128
128
// max
129
- Ext . CLIJ2_maximumOfTouchingNeighbors(intensity_values, touch_matrix, local_maximum_intensity_values);
130
- Ext . CLIJ2_replaceIntensities(labelled_extended, local_maximum_intensity_values, local_maximum_intensity_map);
129
+ Ext . [ CLIJ2_maximumOfTouchingNeighbors ](https : // clij.github.io/clij2-docs/reference_maximumOfTouchingNeighbors) (intensity_values, touch_matrix, local_maximum_intensity_values);
130
+ Ext . [ CLIJ2_replaceIntensities ](https : // clij.github.io/clij2-docs/reference_replaceIntensities) (labelled_extended, local_maximum_intensity_values, local_maximum_intensity_map);
131
131
Ext . CLIJ2_pull(local_maximum_intensity_map);
132
132
rename(" maximum neighbor intensity" );
133
133
0 commit comments