Share via


RecognizedEntityGroup Constructors

Definition

Overloads

RecognizedEntityGroup()

Initializes a new instance of the RecognizedEntityGroup class.

RecognizedEntityGroup(IList<RecognizedEntityRegion>, String)

Initializes a new instance of the RecognizedEntityGroup class.

RecognizedEntityGroup()

Initializes a new instance of the RecognizedEntityGroup class.

public RecognizedEntityGroup ();
Public Sub New ()

Applies to

RecognizedEntityGroup(IList<RecognizedEntityRegion>, String)

Initializes a new instance of the RecognizedEntityGroup class.

public RecognizedEntityGroup (System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Search.ImageSearch.Models.RecognizedEntityRegion> recognizedEntityRegions, string name);
new Microsoft.Azure.CognitiveServices.Search.ImageSearch.Models.RecognizedEntityGroup : System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Search.ImageSearch.Models.RecognizedEntityRegion> * string -> Microsoft.Azure.CognitiveServices.Search.ImageSearch.Models.RecognizedEntityGroup
Public Sub New (recognizedEntityRegions As IList(Of RecognizedEntityRegion), name As String)

Parameters

recognizedEntityRegions
IList<RecognizedEntityRegion>

The regions of the image that contain entities.

name
String

The name of the group where images of the entity were also found. The following are possible groups. CelebRecognitionAnnotations: Similar to CelebrityAnnotations but provides a higher probability of an accurate match. CelebrityAnnotations: Contains celebrities such as actors, politicians, athletes, and historical figures.

Applies to