How can we use Artificial Intelligence to work in a more efficient and ecological way ?

Wondering how we can use artificial intelligence to help incite better behaviour?
That's the purpose of our application! Using image recognition, the application will identify people's attitudes through image classifications. A database will then be used to match the classified images to a behavior: positive or negative for the environment. Our application uses both a supervised learning machine and can also be associated with an API that will allow to give a score to the people who want it. Thus, by using the "serious game" aspect, people can be encouraged to have better environmental behaviors in the company.

How does it work? How do you achieve this result?

First of all, what is artificial intelligence ?

" every aspect of learning or any other feature of intelligence can in principle be so precisely described that a machine can be made to simulate it. "
John Mc Carthy

For gesture recognition thanks to ml5: Pose net. We have severals parameters to cope with:
video: VideoElement input to run poses on.
type: A String value to run single or multiple estimation. Changes the detectionType property of the options. Default is multiple.
callback: A function that is called when the model is loaded.
options:A object that contains properties that effect the posenet model accuracy, results, etc.

If you want to know how to code it:

"// Initialize with video, type and callback

const poseNet = ml5.poseNet(?video, ?type, ?callback);

// OR Initialize with video, options and callback

const poseNet = ml5.poseNet(?video, ?options, ?callback);

// OR Initialize WITHOUT video. Just options and callback here

const poseNet = ml5.poseNet(?callback, ?options);
"

Here you can go to the ml5 Posenet page for more informations to code it. Pose Net Here you can go to the Pose Net