# EnumResolution

`EnumResolution` is an enumeration representing different camera resolutions.

## Definition

*Assembly:* dynamsoft_capture_vision_flutter

```dart
enum EnumResolution {
  auto,
  sd480p,
  hd720p,
  fhd1080p,
  uhd4k,
  max
}
```

## Members

| Member | Description |
| ------ | ----------- |
| `auto` | Automatic resolution selection. |
| `sd480p` | Standard Definition 480p. |
| `hd720p` | High Definition 720p. |
| `fhd1080p` | Full High Definition 1080p. |
| `uhd4k` | Ultra High Definition 4K. |
| `max` | Maximum available resolution supported by the device. |
