Class ImageFillConfiguration
Definition
- Namespace:
- Tizen.Multimedia.Vision
- Assembly:
- Tizen.Multimedia.Vision.dll
- API Level:
- 4
- Feature:
- http://tizen.org/feature/vision.image_recognition
Represents a configuration of fill operations of ImageObject instances.
C#Copypublic class ImageFillConfiguration : EngineConfiguration, IDisposable
- Inheritance
- Implements
-
System.IDisposable
Constructors
ImageFillConfiguration()
Initializes a new instance of the ImageFillConfiguration class.
Declaration
C#Copypublic ImageFillConfiguration()
Exceptions
Type | Condition |
---|---|
System.NotSupportedException | The feature is not supported. |
API Level: 4
Fields
DefaultMaxKeypoints
A read-only field that represents the default value of ObjectMaxKeyPoints.
Declaration
C#Copypublic static readonly int DefaultMaxKeypoints
Field Value
Type | Description |
---|---|
System.Int32 |
API Level: 4
DefaultScaleFactor
A read-only field that represents the default value of ObjectScaleFactor.
Declaration
C#Copypublic static readonly double DefaultScaleFactor
Field Value
Type | Description |
---|---|
System.Double |
API Level: 4
Properties
ObjectMaxKeyPoints
Gets or sets the maximum key points should be detected on the image.
The maximal number of key points can be selected on the image object to calculate descriptors.
This key points will be used for image (object) recognition and has to be specified as integer number.
The default value is 1000.
Declaration
C#Copypublic int ObjectMaxKeyPoints { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Exceptions
Type | Condition |
---|---|
ObjectDisposedException | The ImageFillConfiguration already has been disposed of. |
API Level: 4
ObjectScaleFactor
Gets or sets the scale factor the image to be recognized.
The value of the factor will be used for resizing of the images (objects) for recognition.
The default value is 1.2.
Declaration
C#Copypublic double ObjectScaleFactor { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Exceptions
Type | Condition |
---|---|
ObjectDisposedException | The ImageFillConfiguration already has been disposed of. |