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
Describe the desired feature
Currently only the configuration properties of MinPartConfidence and MinPoseConfidence can be queried? Would like to see PoseConfidence and {Part}Confidence to be available for all parts.
Give an example of how this feature would be used
// the following callback only works when the pose detection passes MinPoseConfidence
// so I would want to paint the canvas whether there's a pose inside the camera feed or not,
// and meanwhile I want the pose analysis to start only when the picture has an actual pose in it.
when posenetExtension.PoseUpdated {
canvas.setBackgroundImageInBase64(posenetExtension.backgroundImage);
if (posenetExtension.PoseConfidence > 0.4) {
// analyze the pose
}
}
Same thing goes for {Part}Confidence properties but that can wait.
Why doesn't the current App Inventor system address this use case?
As in the example, currently I have to set a low MinPoseConfidence so that I can paint the canvas's background image on every frame, that means I would have to compute inside the callback each time whether there's a real pose inside the frame or not. This is not good.
Why is this feature beneficial to App Inventor's educational mission?
The text was updated successfully, but these errors were encountered:
I would like to paint the canvas even when no body is detected in the frame. Currently as I understand, the only event for me to paint the canvas is when PoseUpdated() {}. With a high min confidence, this event would not trigger and I would not get a chance paint the canvas with nobody in it.
Describe the desired feature
Currently only the configuration properties of MinPartConfidence and MinPoseConfidence can be queried? Would like to see PoseConfidence and {Part}Confidence to be available for all parts.
Give an example of how this feature would be used
Same thing goes for {Part}Confidence properties but that can wait.
Why doesn't the current App Inventor system address this use case?
As in the example, currently I have to set a low MinPoseConfidence so that I can paint the canvas's background image on every frame, that means I would have to compute inside the callback each time whether there's a real pose inside the frame or not. This is not good.
Why is this feature beneficial to App Inventor's educational mission?
The text was updated successfully, but these errors were encountered: