-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmine.yaml
40 lines (38 loc) · 2.06 KB
/
mine.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# This is an example of a parameters file
# It is written according to the YAML-convention (www.yaml.org) and is checked by the code for consistency.
# Three types of parameters are possible and reflected in the structure of the document:
#
# Parameter category:
# Setting Name: <value>
#
# The three parameter categories are:
# - setting: Setting to use for preprocessing and class specific settings. if no <value> is specified, the value for
# this setting is set to None.
# - featureClass: Feature class to enable, <value> is list of strings representing enabled features. If no <value> is
# specified or <value> is an empty list ('[]'), all features for this class are enabled.
# - imageType: image types to calculate features on. <value> is custom kwarg settings (dictionary). if <value> is an
# empty dictionary ('{}'), no custom settings are added for this input image.
#
# Some parameters have a limited list of possible values. Where this is the case, possible values are listed in the
# package documentation
# Settings to use, possible settings are listed in the documentation (section "Customizing the extraction").
setting:
binWidth: 8
#interpolator: 'sitkBSpline' # This is an enumerated value, here None is not allowed
#resampledPixelSpacing: [0.66, 0.66, 0.66]# This disables resampling, as it is interpreted as None, to enable it, specify spacing in x, y, z as [x, y , z]
weightingNorm: # If no value is specified, it is interpreted as None
# Image types to use: "Original" for unfiltered image, for possible filters, see documentation.
imageType:
Original: {} # no custom settings
#LoG: {sigma: [0.5, 1.0, 2.0, 3.0, 4.0]} # custom settings defined in-line
#Wavelet: {}
#LBP2D: {}
#LBP3D: {}
#Square: {}
#SquareRoot: {}
#Logarithm: {}
#Exponential: {}
#Gradient: {}
# Featureclasses, from which features must be calculated. If a featureclass is not mentioned, no features are calculated
# for that class. Otherwise, the specified features are calculated, or, if none are specified, all are calculated (excluding redundant/deprecated features).
#featureClass: