# Contour

The `Contour` interface represents a contour made up of multiple points.

```typescript
interface Contour {
    points: Array<Point>;
}
```

## points

An array of [`Point`](https://www.dynamsoft.com/capture-vision/docs/web/programming/javascript/api-reference/core/basic-structures/point.md) objects defining the vertices of the contour.
