**• Hardware Platform (Jetson / GPU): Jetson Nan
**• DeepStream Version: 6.0.1
**• JetPack Version: 4.6 • TensorRT Version 8.0
**• Issue Type: Bug
**• Iam using deepstream to make face recognition app.
The process will be to use scrfd to detect the face, then use arcface to extract the vector
currently having problems at custom parsing output for scrfd model. Below is the c++ code to render the library, but in the python code obj_meta_list still returns None.
This is my model architech output
My C++ code for parsing the output, I have log out the boundbox parameter in the c++ code and it works. But in python code it return None
These 3 files: file nvds_parsebbox_scrfd.cpp for custom parse bounding box,
file srcfd_config.txt use for nvinfer, and file python for run app (base on deepstream-test1-usbcam, i just replace the file config path)
oh, I checked, the above convert c++ code I didn’t declare the detectionConfidence part so this parameter always returns 0, so the filter cannot pass, in the config file I changed the pre-cluster-threshold=0 and define the parameter detectionConfidence and error have been fixed. Thanks a lot