* limitations under the License.
*/
+using System;
+
namespace Tizen.Multimedia.Vision
{
/// <summary>
/// <summary>
/// Initializes a new instance of the <see cref="BarcodeDetectionConfiguration"/> class.
/// </summary>
- /// <exception cref="System.NotSupportedException">The feature is not supported.</exception>
+ /// <exception cref="NotSupportedException">The feature is not supported.</exception>
/// <since_tizen> 3 </since_tizen>
public BarcodeDetectionConfiguration() : base("barcode_detection")
{
/// <summary>
/// Gets or sets the target of the barcode detection.
/// </summary>
- /// <exception cref="System.ArgumentException"><paramref name="value"/> is not valid.</exception>
- /// <exception cref="System.ObjectDisposedException">The <see cref="BarcodeDetectionConfiguration"/> already has been disposed of.</exception>
+ /// <exception cref="ArgumentException"><paramref name="value"/> is not valid.</exception>
+ /// <exception cref="ObjectDisposedException">The <see cref="BarcodeDetectionConfiguration"/> already has been disposed of.</exception>
/// <since_tizen> 3 </since_tizen>
public BarcodeDetectionTarget Target
{
* limitations under the License.
*/
+using System;
using Tizen.Common;
namespace Tizen.Multimedia.Vision
/// <summary>
/// Initializes a new instance of the <see cref="BarcodeGenerationConfiguration"/> class.
/// </summary>
- /// <exception cref="System.NotSupportedException">The feature is not supported.</exception>
+ /// <exception cref="NotSupportedException">The feature is not supported.</exception>
/// <since_tizen> 3 </since_tizen>
public BarcodeGenerationConfiguration() : base("barcode_generation")
{
/// <summary>
/// Gets or sets the text visibility of the barcode to be generated.
/// </summary>
- /// <exception cref="System.ArgumentException"><paramref name="value"/> is not valid.</exception>
+ /// <exception cref="ArgumentException"><paramref name="value"/> is not valid.</exception>
/// <exception cref="ObjectDisposedException">The <see cref="BarcodeGenerationConfiguration"/> already has been disposed of.</exception>
/// <since_tizen> 3 </since_tizen>
public Visibility TextVisibility
* limitations under the License.
*/
+using System;
+
namespace Tizen.Multimedia.Vision
{
/// <summary>
/// <summary>
/// Initializes a new instance of the <see cref="FaceRecognitionConfiguration"/> class.
/// </summary>
- /// <exception cref="System.NotSupportedException">The feature is not supported.</exception>
+ /// <exception cref="NotSupportedException">The feature is not supported.</exception>
/// <since_tizen> 3 </since_tizen>
public FaceRecognitionConfiguration() : base("face_recognition")
{
/// Gets or sets the method used for face recognition model learning.
/// Default value is <see cref="FaceRecognitionModelType.Lbph"/>.
/// </summary>
- /// <exception cref="System.ArgumentException"><paramref name="value"/> is not valid.</exception>
+ /// <exception cref="ArgumentException"><paramref name="value"/> is not valid.</exception>
/// <since_tizen> 3 </since_tizen>
public FaceRecognitionModelType ModelType
{
/// Initializes a new instance of the <see cref="FaceRecognitionModel"/> class with the specified path.
/// </summary>
/// <remarks>
- /// Models saved by <see cref="Save()"/> can be loaded.
+ /// Models saved by <see cref="Save(string)"/> can be loaded.
/// </remarks>
/// <param name="modelPath">Path to the model to load.</param>
/// <exception cref="ArgumentNullException"><paramref name="modelPath"/> is null.</exception>
/// Initializes a new instance of the <see cref="FaceTrackingModel"/> class with the specified path.
/// </summary>
/// <remarks>
- /// Models saved by <see cref="Save()"/> can be loaded.
+ /// Models saved by <see cref="Save(string)"/> can be loaded.
/// </remarks>
/// <param name="modelPath">Path to the model to load.</param>
/// <exception cref="ArgumentNullException"><paramref name="modelPath"/> is null.</exception>
/// <paramref name="modelPath"/> is not supported format.
/// </exception>
/// <exception cref="UnauthorizedAccessException">No permission to access the specified file.</exception>
- /// <seealso cref="Save()"/>
+ /// <seealso cref="Save(string)"/>
/// <since_tizen> 3 </since_tizen>
public FaceTrackingModel(string modelPath)
{
* limitations under the License.
*/
+using System;
+
namespace Tizen.Multimedia.Vision
{
/// <summary>
/// <summary>
/// Initializes a new instance of the <see cref="ImageFillConfiguration"/> class.
/// </summary>
- /// <exception cref="System.NotSupportedException">The feature is not supported.</exception>
+ /// <exception cref="NotSupportedException">The feature is not supported.</exception>
/// <since_tizen> 3 </since_tizen>
public ImageFillConfiguration() : base("image_recognition")
{
/// Initializes a new instance of the <see cref="ImageObject"/> class from the specified file.
/// </summary>
/// <remarks>
- /// ImageObject has been saved by <see cref="Save()"/> can be loaded.
+ /// ImageObject has been saved by <see cref="Save(string)"/> can be loaded.
/// </remarks>
/// <param name="path">Path to the image object to load.</param>
/// <exception cref="ArgumentNullException"><paramref name="path"/> is null.</exception>
/// Initializes a new instance of the <see cref="ImageTrackingModel"/> class with the specified path.
/// </summary>
/// <remarks>
- /// Model saved by <see cref="Save()"/> can be loaded.
+ /// Model saved by <see cref="Save(string)"/> can be loaded.
/// </remarks>
/// <param name="modelPath">Path to the model to load.</param>
/// <exception cref="ArgumentNullException"><paramref name="modelPath"/> is null.</exception>
/// <paramref name="modelPath"/> is not supported format.
/// </exception>
/// <exception cref="UnauthorizedAccessException">No permission to access the specified file.</exception>
- /// <seealso cref="Save()"/>
+ /// <seealso cref="Save(string)"/>
/// <since_tizen> 3 </since_tizen>
public ImageTrackingModel(string modelPath)
{