Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Readme.md #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ This project is done as a part of my internship in ShapeAI in the role of Machin

This Project is mainly divided into 2 parts i.e frontend,backend part. Let's discuss each one of them in detail.

1. Frontend Part:- It mainly involves in collecting the image of the posture from front cam which is used for pose identification. This image is passed to posenet model which is pretrained in ml5.js and get the countor part locations x and y and save them for getting the data in form of json. We will be getting 17 poses detected from the image which has 2 values associated with it which will be in total 34 cordinates. Now once the data is converted we need to make use of pandas to convert to data frame and we need to train it with the KNN classifier and pickle it. The coordinates fro output is sent as request to flask app from ajax request.For getting the front cam i used p5.js.
1. Frontend Part:- It mainly involves in collecting the image of the posture from front cam which is used for pose identification. This image is passed to posenet model which is pretrained in ml5.js and get the countor part locations x and y and save them for getting the data in form of json. We will be getting 17 poses detected from the image which has 2 values associated with it which will be in total 34 cordinates. Now once the data is converted we need to make use of pandas to convert to data frame and we need to train it with the KNN classifier and pickle it. The coordinates for the output is sent as request to flask app from ajax request.For getting the front cam i used p5.js.

2. Backend Part:- Now coming to backend part we used flask as a backend micro frame work to accept the request from front ed java script.Now we need to unpickle the model and predict with the request values which are in form of form values and predict the results and send the response to ajax there by we can get the pose identified.

Expand Down