Using Intellesis Segmentation Models in OAD
Intellesis segmentation models can be applied within the Open Application Development (OAD) environment. Methods to list, import, and execute semantic segmentation models trained with Intellesis Segmentation or on arivis Cloud are available and can be used as part of automated OAD workflows. To use semantic segmentation models, Docker Desktop and a corresponding segmentation container need to be installed and running.
|
Method/Command |
Description |
|---|---|
|
Zen.Processing.Segmentation.TrainableSegmentation |
Function to segment an image using a trained model. |
|
ZenImage - Defines the input image to be segmented. |
|
ModelName - Defines the name of the model. |
|
Function to segment an image using a trained model. |
|
Zen.Processing.Segmentation.TrainableSegmentationWithConfidenceMap |
Addresses the Segmentation function including a confidence map. |
|
ZenImage - Defines the input image to be segmented. |
|
ModelName - Defines the name of the model. |
|
SegmentationFormat - Optional argument; Defines the desired output format, e.g. Multi-Channel or Labels |
|
Zen.Processing.Segmentation.MinimumConfidence |
Addresses the Minimum Confidence function. |
|
ZenImage - Defines the input image to be segmented. |
|
ZenImage - Confidence map containing the confidence values in %. |
|
Minimum Threshold – value in % - only pixel inside mask >= these values will be kept. |
|
ZenIntellesis.Segmentation.GetAvailableFeatureSets() |
Returns all available feature sets as an array of strings. |
|
ZenIntellesis.Segmentation.GetAvailablePostProcessings() |
Returns all available post-processing options as an array of strings. |
|
ZenIntellesis.Segmentation.ImportModel (modelfile, allowOverwrite) |
Imports a model file into the model repository and overwrites an existing one, if the option was set to True. Returns a ZenIntellesisModel. |
|
File path to modelfile to be imported. |
|
Allows overwriting an existing model. |
|
ZenIntellesis.Segmentation.ListAvailableSegmentationModels() |
Lists all available segmentation models. Returns an array of ZenIntellesisModels. |