Posts

Showing posts from July, 2020

Hand Gesture based Simple Jump unity game

Image
This game was developed using unity and python opencv using simple hand recognition using contour. To learn more on unity visit:                https://learn.unity.com/tutorials You  should know how to use Hand Gesture Recognition in this tutorial, as well as how to communicate and make use of the data generated by the Hand Gesture Recognition in order to control a player in your Unity game. Specifially, you’ll learn: Basics of communication protocols in Networking. What is OpenCV and some of its applications. How to install, set up and run the Python version of OpenCV on your system. How to send data to a specific port via Sockets in Python. How to read data from a Socket with the help of UDP Client in Unity. Setting Up Your Scene Open the  Main  scene inside the  Scenes  folder. You can create your own game my suggestion is watch Brackeys tutorial https://www.youtube.com/channel/UCYbK_tjZ2OrIZFBvU6CCMiA If you click...

Gender Age Facial prediction

Image
Gender Age Facial prediction The project idea was implemented using OpenCV-Python and aws. The aim was to predict the gender,age and other facial features of the image or frame in a video. Requirements:  Python3 library: opencv-python  https://pypi.org/project/opencv-python/ AWS account Step 1:            Sign up an aws account and create iam user service (amazon rekogmition and amazon bucket s3) enabled.          Once created iam user account download credential.csv file and copy the file to your folder location.( Note don't share your credential to anyone ) Step 2:            write a  python program to capture the video using webcam.                        Read the credential file to your program and read  aws_access_key_id  and aws_secret_access_key. with open ( "new_user_credentials.csv" , 'r' ) as in...