Posts

Showing posts with the label opencv

Pencil Photo Sketching

Image
In the present time, we are encircled by various sorts of photograph controlling channels in our cell phones, applications… and so on In any case, do you know how they do these pictures controls… ..? In the backend, they are utilizing PC vision strategies. PC vision has a wide assortment of uses not exclusively to lessen the human exertion yet in addition utilized for diversion applications. Numerous photograph-altering applications like FaceApp, Instagram channels… and so on are utilizing PC vision procedures.  In this article, we will attempt to change over an ordinary photograph into a pencil sketch utilizing PC vision in a python programming language. In this article, we will tell the best way to change over a picture into its relating pencil sketch in a couple of steps.. Step-1: Importing required libraries import cv2 Step-2: Loading the image Using the below code snippet, we will read the image that is to be processed. img = cv2.imread('/content/pic.jpeg',  Step-3: Con...

Facial Expression Recogonition AWS

Image
  The project idea was implemented using OpenCV-Python and aws.rekognition The aim was to predict the facial expression 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 input: next (...

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...