sdosd
개요
YOLO와 같은 Object Detection 모델로 추론한 결과를 프레임에 표시하는 element입니 다.
객체마다 상자를 그리고 어떤 종류인지 라벨링합니다.
반드시 sdosd는 sdpostprocess 뒤에 위치해야합니다.
사용 예시
gst-launch-1.0 videotestsrc \
! decodebin \
! videoconvert \
! sdpreprocess model-config=<model-config-path> n-threads=16 \
! sdinfer model-config=<model-config-path> \
! sdpostprocess model-config=<model-config-path> \
! sdosd \
! videoconvert \
! autovideosink