@@ -31,7 +31,10 @@ normedview
31
31
rawview
32
32
permuteddimsview
33
33
StackedView
34
+ PaddedView
34
35
paddedviews
36
+ sym_paddedviews
37
+ StreamingContainer
35
38
```
36
39
37
40
Images with defined geometry and axis meaning can be constructed using the [ ` AxisArrays ` ] ( https://github.com/JuliaArrays/AxisArrays.jl ) package:
@@ -67,14 +70,22 @@ coords_spatial
67
70
size_spatial
68
71
indices_spatial
69
72
nimages
73
+ timeaxis
74
+ istimeaxis
75
+ timedim
70
76
assert_timedim_last
77
+ StreamIndexStyle
78
+ IndexAny
79
+ IndexIncremental
71
80
```
72
81
73
82
## Element transformation and intensity scaling
74
83
75
84
``` @docs
76
85
clamp01
86
+ clamp01!
77
87
clamp01nan
88
+ clamp01nan!
78
89
scaleminmax
79
90
scalesigned
80
91
colorsigned
@@ -93,6 +104,26 @@ n2f14
93
104
n0f16
94
105
```
95
106
107
+ ## Color channels
108
+
109
+ You can extract the numeric value of particular color channels:
110
+
111
+ ``` @docs
112
+ gray
113
+ red
114
+ green
115
+ blue
116
+ alpha
117
+ ```
118
+
119
+ You can also perform operations on channels:
120
+
121
+ ``` @docs
122
+ mapc
123
+ reducec
124
+ mapreducec
125
+ ```
126
+
96
127
## Color conversion
97
128
98
129
``` julia
@@ -106,6 +137,10 @@ imghsv = HSV.(img)
106
137
```
107
138
converts to an HSV representation of color information.
108
139
140
+ The [ ColorTypes] ( https://github.com/JuliaGraphics/ColorTypes.jl )
141
+ package has a rich set of traits that allow you to perform generic
142
+ operations on color types, see its README for more information.
143
+
109
144
## Image algorithms
110
145
111
146
### Linear filtering
@@ -127,7 +162,10 @@ Kernel.ando5
127
162
Kernel.gaussian
128
163
Kernel.DoG
129
164
Kernel.LoG
165
+ Kernel.gabor
130
166
Kernel.Laplacian
167
+ Kernel.bickley
168
+ Kernel.scharr
131
169
```
132
170
133
171
#### KernelFactors
@@ -141,6 +179,8 @@ KernelFactors.ando5
141
179
KernelFactors.gaussian
142
180
KernelFactors.IIRGaussian
143
181
KernelFactors.TriggsSdika
182
+ KernelFactors.bickley
183
+ KernelFactors.scharr
144
184
```
145
185
146
186
#### Kernel utilities
@@ -194,6 +234,7 @@ magnitude_phase
194
234
imedge
195
235
thin_edges
196
236
canny
237
+ Percentile
197
238
```
198
239
199
240
### Corner Detection
@@ -277,6 +318,9 @@ component_subscripts
277
318
component_centroids
278
319
feature_transform
279
320
distance_transform
321
+ convexhull
322
+ GuoAlgo
323
+ thinning
280
324
```
281
325
282
326
### Interpolation
@@ -320,6 +364,7 @@ spatialproperties
320
364
``` @docs
321
365
SegmentedImage
322
366
ImageEdge
367
+ otsu_threshold
323
368
labels_map
324
369
segment_labels
325
370
segment_pixel_count
@@ -340,6 +385,13 @@ region_splitting
340
385
341
386
## ImageFeatures
342
387
388
+ ### Geometric features
389
+
390
+ ``` @docs
391
+ hough_transform_standard
392
+ hough_circle_gradient
393
+ ```
394
+
343
395
### Types
344
396
345
397
``` @docs
@@ -351,6 +403,7 @@ BRIEF
351
403
ORB
352
404
FREAK
353
405
BRISK
406
+ HOG
354
407
```
355
408
356
409
### Corners
0 commit comments