You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, thanks for your code. It helps me a lot.
I have successfully run multi_person_mobilenet_v1_075_float.tflite. My question now is how to get the coordinates of each keypoint?(such as nose, wristle, ankle)
Can you give me some guidance about getting coordinates? Thanks 3000 times.
The coordinates should be something like:
{
"score": 0.32371445304906,
"keypoints": [
{
"position": {
"y": 76.291801452637,
"x": 253.36747741699
},
"part": "nose",
"score": 0.99539834260941
},
...
uncomment:
//multi_person_mobilenet_v1_075_float
private static final int HEATMAPWIGHT = 23;
private static final int HEATMAPHEIGHT = 17;
private static final int NUMJOINT = 17;
change getImageSizeX()
The text was updated successfully, but these errors were encountered:
lmy931
changed the title
How to run multi_person_mobilenet_v1_075_float.tflite ?
How to get coordinates from multi_person_mobilenet_v1_075_float.tflite ?
May 22, 2019
Hi, thanks for your code. It helps me a lot.
I have successfully run multi_person_mobilenet_v1_075_float.tflite. My question now is how to get the coordinates of each keypoint?(such as nose, wristle, ankle)
Can you give me some guidance about getting coordinates? Thanks 3000 times.
The coordinates should be something like:
{
"score": 0.32371445304906,
"keypoints": [
{
"position": {
"y": 76.291801452637,
"x": 253.36747741699
},
"part": "nose",
"score": 0.99539834260941
},
...
What I have changed so far:
//multi_person_mobilenet_v1_075_float
private static final int HEATMAPWIGHT = 23;
private static final int HEATMAPHEIGHT = 17;
private static final int NUMJOINT = 17;
The text was updated successfully, but these errors were encountered: