Deployment using c++


I am deploying my model on my Mac using C++. After doing all the processes why only 11 parameters are showing as output? I have used a dataset that contains approx 1000 images. I have labeled the images using a bounding box. Each T-shirt image has 12 labeled points ( 2 HSP, 2 LSP, 4AP, 2 UP, 2WP). Why it is showing like this please help me out.

Hello @S.sarkar,

The model here detected 11 boxes (2 HSP, 1 LSP, 3 AP, 3 WP and 2 UP).
If you want the center of the objects, just do x+4 and y+4; 4 being the height/2 and width/2 of the object.

Best,

Louis

please tell me how can I extract the coordinates as my project is about "automatic garment measurement’. I want to make something, where from clicking an image my desktop should automatically tell the garment’s measurement. how can I extract the coordinates as I have trained the model on edge impulse and also run the code on Mac. what will be the next step?

Hello @S.sarkar,

Here is the place where you can grab the coordinates with our C++ SDK for Linux:

You might want to have a look at our Linux CLI (which also works on Mac):

or our Linux Python SDK

See also for advanced usage using the Python SDK:

Best,

Louis

1 Like