# ContoursUnit

The `ContoursUnit` interface extends the `IntermediateResultUnit` interface and represents a unit of contours, which are collections of points that define the shape of an object in an image.

```typescript
interface ContoursUnit extends IntermediateResultUnit {
    contours: Array<Contour>;
}
```

## contours

An array of `Contour` objects, each representing a series of points that outline a shape within the image.

```typescript
contours: Array<Core.Contour>;
```
