# Recommended Parameters

Go to: [#dji](#dji "mention") [#insta360](#insta360 "mention") [#ladybug](#ladybug "mention") [#mosaic](#mosaic "mention")

{% hint style="success" %}
When starting with a demo of Celantur Container, our team will send you a customized code sample.
{% endhint %}

## Anonymize Mobile Mapping Images

Due to large resolution panorama images require special parametrization to achieve the best anonymization results.

Run following command after, specifying the format value according to [Predefined Formats](https://doc.celantur.com/container/batch-and-stream-mode#predefined-formats) if the panorama's resolution exactly matches an item in the list of predefined formats (e.g. `pano:8192`):

{% code title="Batch mode, face / license-plate" overflow="wrap" %}

```bash
./celantur.sh \
  -a face \
  -a license-plate \
  --format pano:8192 \
```

{% endcode %}

If your panorama's resolution is not part of [Predefined Formats](https://doc.celantur.com/container/batch-and-stream-mode#predefined-formats), specify the [middle section](https://doc.celantur.com/container/batch-and-stream-mode#custom-tiling-for-improved-results) (x1, y1, x2, y2) of the panorama.

<pre class="language-bash" data-title="Batch mode, face / license-plate" data-overflow="wrap"><code class="lang-bash"><strong>./celantur.sh \
</strong>  -a face \
  -a license-plate \
  --format '{"number":[4,1],"overlap":[300,0],"section":[0,1870,12288,4950]}' \
</code></pre>

{% hint style="info" %}
`-f '{"number":[4,3],"overlap":[200,200]}'` specifies into how many tiles (and their respective overlap) the image will be split. For best results anonymization results, tiles should roughly cover 1000x1000 pixels.
{% endhint %}

### Mosaic

#### Mosaic X

Panorama images (13504x6752, 91.2 MP)

{% code title="Batch mode, face / license-plate" overflow="wrap" %}

```bash
./celantur.sh \
  -a face \
  -a license-plate \
  --face-threshold 0.1 \
  --license-plate-threshold 0.1 \
  --model segmentatio-omnium \
  -f '{"number":[5,1],"overlap":[400,0],"section":[0,2200,13504,5300]}'
```

{% endcode %}

**Optimize:** Adapt thresholds (lower = better detections, potentially more false positives; higher = less false positives)\
\--`face-threshold 0.3` , `--license-plate-threshold 0.3` ([Batch/Stream mode](https://doc.celantur.com/container/batch-and-stream-mode#parameters))

#### Mosaic 51

Panorama images (12288x6144, 75.5 MP)

```sh
./celantur.sh
  -a face
  -a license-plate
  --face-threshold 0.1
  --license-plate-threshold 0.1
  --model segmentatio-omnium
  -f '{"number":[4,1],"overlap":[200,0],"section":[0,1870,12288,4950]}'
```

### Insta360

#### Insta360 X4

Panorama images (11904x5952):

{% code title="Batch mode, face / license-plate" overflow="wrap" %}

```bash
celantur.sh \
  -a face \
  -a license-plate \
  --model segmentatio-omnium \
  -f '{"number":[4,1],"overlap":[200,0],"section":[0,2000,11904,4900]}' 
```

{% endcode %}

### GoPro

#### GoPro MAX

Panorama images (5760x2880)

{% code title="Batch mode, face / license-plate" overflow="wrap" %}

```bash
celantur.sh \
  -a face \
  -a license-plate \
  --model segmentatio-omnium \
  -f '{"number":[4,1],"overlap":[100,0],"section":[0,1000,5760,2340]}'
  
```

{% endcode %}

### Ladybug

#### Ladybug 5+

Panorama images (8000x4000)

{% code title="Batch mode, face / license-plate" overflow="wrap" %}

```bash
celantur.sh \
  -a face \
  -a license-plate \
  --license-plate-threshold 0.2 \
  --model segmentatio-omnium \
  -f pano:8000 
```

{% endcode %}

#### Ladybug 6

Panorama images (12288x6144)

{% code title="Batch mode, face / license-plate" overflow="wrap" %}

```bash
celantur.sh \
  -a face \
  -a license-plate \
  --quality 85 \
  -f '{"number":[4,1],"overlap":[300,0],"section":[0,1870,12288,4950]}'
```

{% endcode %}

Planar images (2992x4096)

{% code title="Batch mode, face / license-plate" overflow="wrap" %}

```bash
celantur.sh \
  -a face \
  -a license-plate \
  --license-plate-threshold 0.1 \
  --model segmentatio-omnium \
  -f '{"number":[2,1],"overlap":[750,0],"section":[0,1500,2992,4096]}'
```

{% endcode %}

Comment to planar images: Upper part of image is ignored.

### Smart Delta

#### SmartPano Gen2

Panorama images (7680x3840)

{% code title="Batch mode, face / license-plate" overflow="wrap" %}

```bash
-a face -a license-plate --face-threshold 0.1 --license-plate-threshold 0.1 -f '{"number":[4,1],"overlap":[200,0],"section":[0,1200,7680,2900]}'
```

{% endcode %}

{% code title="Batch mode, person / vehicle" overflow="wrap" %}

```bash
-a person -a vehicle -f '{"number":[4,1],"overlap":[200,0],"section":[0,1200,7680,2900]}'
```

{% endcode %}

### AVT

#### Prosilica GT4500

Planar images (5472x3084)

{% code title="Batch mode, face / license-plate" overflow="wrap" %}

```bash
celantur.sh \
  -a face \
  -a license-plate \
  --license-plate-threshold 0.1 \
  --model segmentatio-omnium \
  -f '{"number":[2,1],"overlap":[750,0],"section":[0,1000,5328,4608]}'
```

{% endcode %}

Comment: Upper part of image is ignored.

## Anonymize Drone Images

Example for images (4032x3024) from a **DJI** Mini 3 Pro.&#x20;

Persons and vehicles:

{% code title="Batch mode, person / vehicle" overflow="wrap" %}

```bash
celantur.sh \
  -a person \
  -a vehicle \
  --model segmentatio-omnium \
  -f '{"number":[4,3],"overlap":[200,200]}' \
  --vehicle-threshold 0.4 \
  --person-threshold 0.3
```

{% endcode %}

Faces and license plates:

{% code title="Batch mode, face / license-plate" overflow="wrap" %}

```bash
celantur.sh \
  -a face \
  -a license-plate \
  --model segmentatio-omnium \
  -f '{"number":[4,3],"overlap":[200,200]}' \
  --face-threshold 0.1 \
  --license-plate-threshold 0.1
```

{% endcode %}

### DJI

#### DJI Mini 3 Pro

Images (4032x3024):

{% code title="Batch mode, person / vehicle" overflow="wrap" %}

```bash
celantur.sh \
  -a person \
  -a vehicle \
  --model segmentatio-omnium \
  -f '{"number":[4,3],"overlap":[200,200]}' \
  --vehicle-threshold 0.4 \
  --person-threshold 0.3
```

{% endcode %}

{% code title="Batch mode, face / license plate " overflow="wrap" %}

```bash
celantur.sh \
  -a face \
  -a license-plate \
  --model segmentatio-omnium \
  -f '{"number":[4,3],"overlap":[200,200]}' \
  --face-threshold 0.1 \
  --license-plate-threshold 0.1
```

{% endcode %}

## Anonymize FullHD Videos

{% hint style="success" %}
Check if your video's [codec](https://doc.celantur.com/container/usage/batch-and-stream-mode#supported-video-codecs) is supported.
{% endhint %}

Run following command:

{% code title="Batch mode, face / license-plate" overflow="wrap" %}

```bash
celantur.sh \
  -a face \
  -a license-plate \
  --model segmentatio-omnium \
  --face-threshold 0.2 \
  --license-plate-threshold 0.2 \
  --video \
  --keep-bit-rate
```

{% endcode %}

### Anonymize FullHD Dashcam Frames

Run following command:

{% code title="Batch mode, face / license-plate" overflow="wrap" %}

```bash
celantur.sh \
  -a face \
  -a license-plate \
  --model segmentatio-omnium \
  --face-threshold 0.2 \
  --license-plate-threshold 0.2
```

{% endcode %}
