LabelRecognizerParameter Object
GrayscaleTransformationModes
Mode Properties
GrayscaleTransformationModes
is a parameter for setting the mode for the grayscale image conversion. It consisits of one or more GrayscaleTransformationMode
items. The array index represents the priority of the item. The smaller index is, the higher priority is.
Value Type | Value Range | Default Value |
---|---|---|
GrayscaleTransformationMode array |
“GTM_SKIP” “GTM_INVERTED” “GTM_ORIGINAL” |
[“GTM_ORIGINAL”, “GTM_SKIP”, “GTM_SKIP”, “GTM_SKIP”, “GTM_SKIP”, “GTM_SKIP”, “GTM_SKIP”, “GTM_SKIP”] |
- See also:
GrayscaleTransformationMode
Enumeration
Setting Methods
As JSON Parameter
GrayscaleTransformationModes
as a JSON parameter is a JSON Object array. ach JSON Object has a key Mode
for setting the mode, and the array index decides the priority of the mode for the grayscale image conversion. Default values will be used if there is no manual setting.
Json Object | Json Parameter Name | Value Type |
---|---|---|
LabelRecognitionParameter | GrayscaleTransformationModes | JSON Object Array |
Json Parameter Example
{
"GrayscaleTransformationModes": [
{
"Mode": "GTM_INVERTED"
},
{
"Mode": "GTM_ORIGINAL"
}
]
}
As DLR_RuntimeSettings
Member
GrayscaleTransformationModes
is a GrayscaleTransformationMode
array defines in DLRRuntimeSettings
. It is used for setting the modes and the priority for the grayscale image conversion. Default value will be used if there is no manual setting.
Struct | Struct Member Name | Value Type |
---|---|---|
DLR_RuntimeSettings ->furtherModes |
grayscaleTransformationModes |
GrayscaleTransformationMode [8] |
See Also