Class InferenceModelConfiguration

Definition

Namespace:
Tizen.Multimedia.Vision
Assembly:
Tizen.Multimedia.Vision.dll
API Level:
6
Feature:
http://tizen.org/feature/vision.inference.facehttp://tizen.org/feature/vision.inference.image
C#
Copy
public class InferenceModelConfiguration : EngineConfiguration
Inheritance
InferenceModelConfiguration
Remarks

'Inference model' means pre-learned data, which is represented by ConfigurationFilePath and WeightFilePath, CategoryFilePath.
If user want to use tizen default inference model and its related value, Please refer Tizen guide page(https://developer.tizen.org/development/guides/.net-application).

Constructors

View Source

InferenceModelConfiguration()

Initializes a new instance of the InferenceModelConfiguration class.

Declaration
C#
Copy
public InferenceModelConfiguration()
API Level: 6
Feature: http://tizen.org/feature/vision.inference.facehttp://tizen.org/feature/vision.inference.image

Properties

View Source

Backend

Gets or sets the inference model's backend engine.

Declaration
C#
Copy
public InferenceBackendType Backend { get; set; }
Property Value
Type Description
InferenceBackendType
Remarks

The default backend type is OpenCV

See Also
API Level: 6
View Source

CategoryFilePath

Gets or sets the path of inference model's category file.

Declaration
C#
Copy
public string CategoryFilePath { get; set; }
Property Value
Type Description
String
Remarks

This value should be set to use ImageClassifier or ObjectDetector.

API Level: 6
View Source

ConfidenceThreshold

Gets or sets the threshold of confidence.

Declaration
C#
Copy
public double ConfidenceThreshold { get; set; }
Property Value
Type Description
Double
Remarks

The vaild range is greater than or equal to 0.0 and less than or equal to 1.0.
The value 1.0 means maximum accuracy.

API Level: 6
View Source

ConfigurationFilePath

Gets or sets the path of inference model's configuration data file.

Declaration
C#
Copy
public string ConfigurationFilePath { get; set; }
Property Value
Type Description
String
API Level: 6
View Source

DataType

Gets or sets the type of data used for inference model.

Declaration
C#
Copy
public InferenceDataType DataType { get; set; }
Property Value
Type Description
InferenceDataType
Remarks

For example, this value should be set to Float32 for a model data supporting float32.
Float32 will be used internally if a user doesn't set the value.

API Level: 8
View Source

Device

Gets or sets the processor type for inference models.

Declaration
C#
Copy
public InferenceTargetDevice Device { get; set; }
Property Value
Type Description
InferenceTargetDevice
Remarks

The default device is CPU.
If a device doesn't support GPU and Custom, CPU will be used internally, despite the user's choice.

API Level: 8
View Source

InputNodeName

Gets or sets the name of an input node

Declaration
C#
Copy
public string InputNodeName { get; set; }
Property Value
Type Description
String
API Level: 6
View Source

MaxOutputNumber

Gets or sets the maximum output number of detection or classification.

Declaration
C#
Copy
public int MaxOutputNumber { get; set; }
Property Value
Type Description
Int32
Remarks

The input value over 10 will be set to 10 and the input value under 1 will be set to 1.
This value can be used to decide the size of Roi, it's length should be the same.

API Level: 6
View Source

MeanValue

Gets or sets the inference model's mean value.

Declaration
C#
Copy
public double MeanValue { get; set; }
Property Value
Type Description
Double
Remarks

It should be greater than or equal to 0.

API Level: 6
View Source

MetadataFilePath

Gets or sets the path of inference model's metadata file.

Declaration
C#
Copy
public string MetadataFilePath { get; set; }
Property Value
Type Description
String
Remarks

This value should be set to use ImageClassifier or ObjectDetector.

API Level: 9
View Source

OutputNodeName

Gets or sets the name of an output node

Declaration
C#
Copy
public IList<string> OutputNodeName { get; set; }
Property Value
Type Description
IList<String>
API Level: 6
View Source

Roi

Gets or sets the ROI(Region Of Interest) of ImageClassifier and FacialLandmarkDetector

Declaration
C#
Copy
public Rectangle? Roi { get; set; }
Property Value
Type Description
Nullable<Rectangle>
Remarks

Default value is null. If Roi is null, the entire region of MediaVisionSource will be analyzed.

See Also
API Level: 6
View Source

StdValue

Gets or sets the inference model's STD(Standard deviation) value.

Declaration
C#
Copy
public double StdValue { get; set; }
Property Value
Type Description
Double
Remarks

It should be greater than or equal to 0.

API Level: 6
View Source

SupportedBackend

Gets the list of inference backend engine which is supported in the current device.

Declaration
C#
Copy
public IEnumerable<InferenceBackendType> SupportedBackend { get; }
Property Value
Type Description
IEnumerable<InferenceBackendType>

If there's no supported backend, empty collection will be returned.

API Level: 6
View Source

TensorChannels

Gets or sets the number of inference model's tensor channel.

Declaration
C#
Copy
public int TensorChannels { get; set; }
Property Value
Type Description
Int32
Remarks

For example, for RGB colorspace this value should be set to 3
It should be greater than 0.

API Level: 6
View Source

TensorSize

Gets or sets the size of inference model's tensor.

Declaration
C#
Copy
public Size TensorSize { get; set; }
Property Value
Type Description
Size
Remarks

Both width and height of tensor should be greater than 0.
'Size(-1, -1) is allowed when the intention is to use original image source size as TensorSize.

API Level: 6
View Source

WeightFilePath

Gets or sets the path of inference model's weight file.

Declaration
C#
Copy
public string WeightFilePath { get; set; }
Property Value
Type Description
String
API Level: 6

Methods

View Source

Dispose(Boolean)

Releases the resources used by the InferenceModelConfiguration object.

Declaration
C#
Copy
protected override void Dispose(bool disposing)
Parameters
Type Name Description
Boolean disposing

true to release both managed and unmanaged resources, otherwise false to release only unmanaged resources.

Overrides
API Level: 6
View Source

LoadInferenceModel()

Loads inference model data and its related attributes.

Declaration
C#
Copy
public void LoadInferenceModel()
Remarks

Before calling this method, user should set all properties which is required by each inference model.
The properties set after calling this method will not be affected in the result.

Exceptions
Type Condition
FileFormatException

Invalid data type is used in inference model data.

API Level: 6
Privilege Level: public
Privilege: http://tizen.org/privilege/mediastoragehttp://tizen.org/privilege/externalstorage
Feature: http://tizen.org/feature/vision.inference.facehttp://tizen.org/feature/vision.inference.image

Extension Methods