Update RT-DETR and YOLOX

This commit is contained in:
Marcos Luciano
2024-11-14 23:52:05 -03:00
parent f5c486cb7f
commit 0cc84af9b9
7 changed files with 50 additions and 4 deletions

View File

@@ -141,6 +141,15 @@ maintain-aspect-ratio=0
...
```
**NOTE**: The **RT-DETR** do not require NMS. To get better accuracy, use
```
[property]
...
cluster-mode=4
...
```
##
### Edit the deepstream_app_config file

View File

@@ -160,6 +160,15 @@ maintain-aspect-ratio=0
...
```
**NOTE**: The **RT-DETR** do not require NMS. To get better accuracy, use
```
[property]
...
cluster-mode=4
...
```
##
### Edit the deepstream_app_config file

View File

@@ -160,6 +160,15 @@ maintain-aspect-ratio=0
...
```
**NOTE**: The **RT-DETR Ultralytics** do not require NMS. To get better accuracy, use
```
[property]
...
cluster-mode=4
...
```
##
### Edit the deepstream_app_config file

View File

@@ -143,6 +143,24 @@ symmetric-padding=0
...
```
**NOTE**: The **YOLOX** uses BGR color format for the image input. It is important to change the `model-color-format` according to the trained values.
```
[property]
...
model-color-format=1
...
```
**NOTE**: The **YOLOX legacy** uses RGB color format for the image input. It is important to change the `model-color-format` according to the trained values.
```
[property]
...
model-color-format=0
...
```
**NOTE**: The **YOLOX** uses no normalization on the image preprocess. It is important to change the `net-scale-factor` according to the trained values.
```