Monday, 28 June 2021

GENDER DETECTION

                               GENDER DETECTION

We can use machine learning to detect the gender of a human using the facial appearance samples of men and women. Facial appearance is one of the common ways that we humans use to recognize the gender of another person. We can also use a person’s voice, but the best approach is to train a model with high-level characteristics of human beings such as:
1. distance between eyes, nose and mouth
2. measurements of different parts of the faces of both genders.
So I hope you now understand how a machine learning model can be trained for the task of recognizing the gender of a human being. But since Python provides libraries for almost every possible task today, we can also use the OpenCV and cvlib libraries in Python to detect a person’s gender. In the section below, I will take you through the task of Gender Detection with machine learning using Python.


Click here for source code

Don't forget to follow and comment.....
Happy Learning!!!!

Monday, 14 June 2021

EGG CATCHER GAME

 EGG CATCHER GAME

Eggs Catcher is a classic game where the goal is to catch as many eggs as possible. In this game, every egg you catch will increase your score and if you miss 3 eggs you will lose the game.

In this article, I will walk you through how to create an egg catcher game using Python.

Click Here For Source Code

Don't forget to follow and comment.

ENJOY LEARNING!!!!



Friday, 11 June 2021

OBJECT DETECTION USING MACHINE LEARNING

OBJECT DETECTION USING 
MACHINE LEARNING

Object detection has a close relationship with analyzing videos and images, which is why it has gained a lot of attention to so many researchers in recent years. In this article, I will introduce you to a machine learning project on object detection with Python.

What is Object Detection?

To gain a full understanding of the image, we should not only focus on classifying the different images but also try to accurately estimate the concepts and locations of the objects contained in each image. This task is known as object detection. Detecting Objects usually consists of different subtasks such as face detection, pedestrian detection, Number plate detection and skeleton detection.


Source Code Here



Friday, 4 June 2021

Image - Pencil Sketch using Python

 Hello Everyone!!!!

This is my new project - Image - Pencil Sketch using Python
IDLE used - Spyder3
Language Used - Python
This project helps you to convert any Image into Pencil Sketch using cv2.


Don't forget to follow and comment.

HAPPY CODING!!!!

Final Output Image with Input Image


Tuesday, 1 June 2021

Encryption - Decryption Tool

                               Encrypt - Decrypt using Python With GUI

Cryptography means changing the text of a message so that people who don’t know your secret never understand your message. In this project, I will create a GUI application to encrypt and decrypt using Python.

How to Encrypt and Decrypt using Python?

To encrypt and decrypt with Python, you need to create a program in which it will first ask you if you want to encrypt a message or decrypt it. Then the program should receive a message from the user.

If the user chooses to encrypt the message, the user’s message must be transformed into a secret code. But if the user chooses to decrypt the message, your program should be able to convert a secret code into a meaningful text.

For this task, you must write a program that rearranges the order of letters in user input so that it cannot be understood by anyone. This can be done by putting the letters in even and odd positions.

Then we have to swap the first two letters with the next two and so on. The code to convert encrypted text to decrypted text can be done by reversing the letters according to user input.