Skip to main content
Version: 1.0.0

sdsegvisual

개요

UNET과 같은 Image Segmentation 모델로 추론한 결과를 프레임에 표시하는 element입니다.
특정 객체의 테두리 내부를 검은색으로 채우고 나머지 부분을 흰색으로 채웁니다. 반드시 sdsegvisual은 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> \
! sdsegvisual \
! videoconvert \
! autovideosink