antithing
antithing
hi @alessandroTorresani , I am wondering the same thing. Did you solve this? Thanks!
.. if I use a pipeline like this: ``` bool loadResult = trainingData.load("TrainingData.grt"); //Print out some stats about the training data trainingData.printStats(); //Create a new Gesture Recognition Pipeline using an...
... Ah, switching to SVM is working for me. Thanks!
Ah! I found this. https://github.com/PaddlePaddle/PaddleSeg/tree/457af2edb51a3c85ac9fd019e564c4099b1ee8bd/deploy/onnxruntime_cpp Will this work with the matting model? Thanks!
Thank you! I have the demo running fine, but now i need to run the matting model. I am using the tutorial here: https://github.com/PaddlePaddle/PaddleSeg/blob/release/2.5/docs/deployment/inference/cpp_inference.md and the model downloaded: pp-humanmatting-resnet34_vd, whish...
Thank you, would you be able to point me at the code to change? It looks like this line: `output_t->CopyToCpu(out_data.data());` Is causing the issue. Where do i need to make...
Leaving this here in case anyone else has the same issue. making the following changes allow you to use the matting models in c++. ``` // Get output auto output_names...
..although I think something is still wrong here, my matte looks incorrect, and lacks detail. From this image:  The above code returns:  Changing to float type, and using...
Hi @JunGenius , did you manage to compile this code in windows? Any tips greatly appreciated!
Hi @samhodge @shuiqingliu , I am also trying to use deeplab in a c++ application. Would either of you mind sharing the code you used to get it running? where...