AM68A: AM68A

Part Number: AM68A

Tool/software:

gchar *pipeline_str = g_strdup_printf(

        "v4l2src device=/dev/video-usb-cam0 io-mode=2 ! image/jpeg, width=1280, height=720 ! jpegdec ! tiovxdlcolorconvert ! video/x-raw, format=NV12 ! "

        "tiovxmultiscaler name=split src_0::roi-startx=0 src_0::roi-starty=0 src_0::roi-width=1280 src_0::roi-height=720 target=0 ! "

        "queue ! video/x-raw,width=320,height=320 ! "

        "tiovxdlpreproc model=/opt/model_zoo/TFL-OD-2020-ssdLite-mobDet-DSP-coco-320x320 out-pool-size=4 ! application/x-tensor-tiovx ! "

        "tidlinferer target=1 model=/opt/model_zoo/TFL-OD-2020-ssdLite-mobDet-DSP-coco-320x320 ! post.tensor "

        "split. ! queue ! video/x-raw,width=480,height=480 ! post.sink "

        "tidlpostproc name=post model=/opt/model_zoo/TFL-OD-2020-ssdLite-mobDet-DSP-coco-320x320 alpha=0.4 viz-threshold=0.6 top-N=5 display-model=true ! "

        "tee name=video_tee ! queue ! v4l2h264enc ! h264parse ! queue ! mux. "

        "alsasrc device=hw:0,0 ! audio/x-raw,format=S16LE,rate=16000,channels=1 ! audioconvert ! audioresample ! "

        "avenc_aac bitrate=128 ! aacparse ! queue ! mux. "

        "matroskamux name=mux ! filesink location=%s sync=true",

        output_file

    );

This is my TI object detection pipeline, which saves the results. However, I need the class names from the output separately in a variable or a format that I can reuse. I have checked the edgedl_inferer post-processing script to see if it's possible to print the class names from the output. I’m new to working with the TI board, is there a way to extract them?