# CharacterCluster

The `CharacterCluster` class represents a character cluster generated from the buffered character items. These buffered items will be clustered based on feature similarity to obtain cluster centers.

## Definition

*Namespace:* Dynamsoft.DLR


```csharp
class CharacterCluster
```

## Methods

| Method               | Description |
|----------------------|-------------|
| [`GetCharacter`](#getcharacter) | Gets the character value of the cluster. |
| [`GetMean`](#getmean) | Gets the mean of the cluster. |

### GetCharacter

Gets the character value of the cluster

```csharp
int GetCharacter()
```

**Return value**

Returns the character value of the cluster.

### GetMean

Gets the mean of the cluster.

```csharp
BufferedCharacterItem GetMean()
```

**Return value**

Returns the mean of the cluster.

**See Also**

[BufferedCharacterItem](https://www.dynamsoft.com/label-recognition/docs/server/programming/dotnet/api-reference/buffered-character-item.md)
