You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/docs/configuration/object_detectors.md
+20-21Lines changed: 20 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -365,8 +365,8 @@ detectors:
365
365
366
366
model:
367
367
model_type: rfdetr
368
-
width: 560
369
-
height: 560
368
+
width: 320
369
+
height: 320
370
370
input_tensor: nchw
371
371
input_dtype: float
372
372
path: /config/model_cache/rfdetr.onnx
@@ -616,8 +616,8 @@ detectors:
616
616
617
617
model:
618
618
model_type: rfdetr
619
-
width: 560
620
-
height: 560
619
+
width: 320
620
+
height: 320
621
621
input_tensor: nchw
622
622
input_dtype: float
623
623
path: /config/model_cache/rfdetr.onnx
@@ -777,8 +777,8 @@ model:
777
777
labelmap_path: /labelmap/coco-80.txt
778
778
input_tensor: nchw
779
779
input_pixel_format: rgb
780
-
width: 320
781
-
height: 320
780
+
width: 320# MUST match the chosen model i.e yolov7-320 -> 320, yolov4-416 -> 416
781
+
height: 320# MUST match the chosen model i.e yolov7-320 -> 320 yolov4-416 -> 416
782
782
```
783
783
784
784
## Rockchip platform
@@ -983,22 +983,21 @@ Make sure you change the batch size to 1 before exporting.
983
983
984
984
### Download RF-DETR Model
985
985
986
-
To export as ONNX:
987
-
988
-
1. `pip3 install rfdetr`
989
-
2. `python3`
990
-
3. `from rfdetr import RFDETRBase`
991
-
4. `x = RFDETRBase()`
992
-
5. `x.export()`
993
-
994
-
#### Additional Configuration
986
+
RF-DETR can be exported as ONNX by running the command below. You can copy and paste the whole thing to your terminal and execute, altering `MODEL_SIZE=Nano` in the first line to `Nano`, `Small`, or `Medium` size.
995
987
996
-
The input tensor resolution can be customized:
997
-
998
-
```python
999
-
from rfdetr import RFDETRBase
1000
-
x = RFDETRBase(resolution=560) # resolution must be a multiple of 56
Copy file name to clipboardExpand all lines: web/public/locales/hu/views/settings.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,7 @@
42
42
"desc": "Automatikusan váltson át a kamera élő nézetére, amikor aktivitást észlel. Ha ez az opció ki van kapcsolva, akkor az Élő irányítópulton a statikus kameraképek csak percenként egyszer frissülnek."
43
43
},
44
44
"playAlertVideos": {
45
-
"label": "Riadó Videók Lejátszása",
45
+
"label": "Riasztási Videók Lejátszása",
46
46
"desc": "Alapértelmezetten az Élő irányítópulton a legutóbbi riasztások kis, ismétlődő videóként jelennek meg. Kapcsolja ki ezt az opciót, ha csak állóképet szeretne megjeleníteni a legutóbbi riasztásokról ezen az eszközön/böngészőben."
0 commit comments