AIUtil Class
Registers or unregisters images as AI custom classes.

C# Syntax

public class AIUtil

Public Methods

 NameDescription
Public Methodstatic (Shared in Visual Basic)RegisterCustomClass Method

Registers an image as an AI custom class.

Public Methodstatic (Shared in Visual Basic)UnregisterAllCustomClasses MethodUnregisters all custom classes.
Public Methodstatic (Shared in Visual Basic)UnregisterCustomClass Method

Unregisters an AI custom class.

Top

Detailed Description

RegisterCustomClass Method

Registers an image as an AI custom class.

C# syntax

static void RegisterCustomClass (string className, string imagePath)

Parameters

className

The class name to be registered.

imagePath
The path of the image to be registered.

Exceptions

Send Help Center Feedback

Top

UnregisterAllCustomClasses Method

Unregisters all AI custom classes.

C# syntax

static void UnregisterAllCustomClasses ()

Top

UnregisterCustomClass Method

Unregisters an AI custom class.

C# syntax

static void UnregisterCustomClass (string className)

Parameters

className

The class name to be unregistered.

Top