Skip to main content
Version: 1.0.0

sdpostprocess

개요

이미지 추론결과에 대한 후처리를 수행하는 element입니다.
sdinfer에서 추론한 결과를 metadata 형태로 받아 후처리합니다. 후처리 결과를 buffer에 custom metadata로 추가하는 것으로 다음 프레임을 수정하는 element에 전달합니다.
반드시 sdpostprocess는 sdinfer과 프레임 수정 element 사이에 위치해야합니다.

Properties

  • model-config : config 파일의 경로를 입력합니다. 필수 입력사항입니다. config 파일에서 output_config 항목을 읽어 후처리를 수행합니다.

사용 예시

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> \
! sdtextoverlay \
! videoconvert \
! autovideosink