I am working on a face recognition project by setting this pipeline:
face detection → face alignment → face recognition
And for this i am using jetson agx orin
Currently, I am facing issues related to face alignment, as for face detection i am using an open source insightface SCRFD model and it is working as pgie by giving the bounding boxes now i want to implement another model that provides facial landmark points for face alignment and for that i am using the following model 2d106det from the following repo:
The model works fine in onnxruntime so i want to know how to implement this in deepstream sdk-7.0 because as i think only detection classification and segmentation based task are possible till now so i just wanted to know that whether facial landmarks are possible or not?
This is the sample code to show how to customize the no image input for some models. DeepStream is a SDK, there are many samples to show how to use the DeepStream APIs.
You can customize your own application according to your own model.
Thanks for the help, i tried the given sample application of facial landmarks and it worked but the results were not accurate like the landmarks were spilled on the whole face randomly, and also i want to implement my custom facial landmark model which works on whole input frame so can you tell me how can i do it or like can you share any resources?
i don’t want to train any model i have a pre trained model and i want to use it for facial landmarks application so and the main issue is that my model works on full frame so it will not work on the meta data generated by the face detection models
Do you mean your model works on the whole frame which contains multiple faces and the model can output all the faciallandmarks for all faces in the frame?
No my face detection model takes full frame as input and then the landmark model takes those faces as input and then provides landmarks on all the faces for each frame…and that’s what i want to do using deepstream sdk…so tell me how should i configure the config files or should i do something else