-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Bram Veldhoen
committed
Jun 6, 2024
1 parent
4efdd5b
commit c82ed4d
Showing
4 changed files
with
51 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
bash_script/example_yolo/gst-launch-object-detection-yolov5-tensorrt.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#!/usr/bin/env bash | ||
|
||
## tensorrt | ||
gst-launch-1.0 \ | ||
v4l2src name=cam_src ! videoconvert ! videoscale ! \ | ||
video/x-raw,width=1000,height=1000,format=RGB,pixel-aspect-ratio=1/1,framerate=30/1 ! tee name=t \ | ||
t. ! queue leaky=2 max-size-buffers=2 ! videoscale ! \ | ||
video/x-raw,width=320,height=320,format=RGB ! tensor_converter ! \ | ||
tensor_transform mode=transpose option=1:2:0:3 ! \ | ||
tensor_transform mode=arithmetic option=typecast:float32,div:255.0 ! \ | ||
queue ! tensor_filter framework=tensorrt model=yolov5su.onnx latency=1 ! \ | ||
tensor_transform mode=transpose option=1:0:2:3 ! \ | ||
other/tensors,num_tensors=1,types=float32,dimensions=84:2100:1,format=static ! \ | ||
tensor_decoder mode=bounding_boxes option1=yolov8 option2=coco.txt option3=1 option4=1000:1000 option5=320:320 ! \ | ||
video/x-raw,width=1000,height=1000,format=RGBA ! mix.sink_0 \ | ||
t. ! queue leaky=2 max-size-buffers=10 ! mix.sink_1 \ | ||
compositor name=mix sink_0::zorder=2 sink_1::zorder=1 ! videoconvert ! autovideosink sync=false | ||
|
||
## Note that the `tensor_transfrom mode=transpose option=1:2:0:3` | ||
## change the data layout NHWC -> NCHW: | ||
## [1, 320h, 320w, 3] -> [1, 3, 320h, 320w] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters