Tag: Programming
-
Real v Fake: In the Age of AI
The rise of AI has led to a proliferation of fake content that can be used to manipulate people and spread misinformation. One of the most concerning examples is deepfake videos, which use AI algorithms to manipulate images and videos to create hyper-realistic simulations of people doing or saying things they never actually did.
-
Building a ChatBot in Python – Beginner’s Guide
Create your first artificial intelligence chatbot from scratch In this article, I will show you how to build a simple chatbot using python programming language. We will not use any external chatbot packages. The whole project will be written with plain Python. This is a great way to understand how chatbots actually work. Learning the…
-
Python for Art – Blending Two Images using OpenCV
In this article, I will show you how create nice looking custom designs using Python. There are many designing tools out there, but in this project our goal is to create a beautiful design without using those softwares. After working on this project, you will also have an idea on how to work with OpenCV…
-
Simple Edge Detection Model using Python
How machines uses edge detection to understand the real world In this post, I will show you how to detect the edges in an image. Writing an edge detection program will give you some understanding of computer vision and self driving cars. Edge detection is commonly used to understand objects in an image. It also…
-
The 5 High Demanding Data Science Roles
That you should know about… In this post, I would like to share the top five data science careers that are in high demand these days. Data Science field is growing so fast that it’s getting harder to keep track of the new updates and features. Even though new tools and new methods are getting…
-
Sorting and Subsetting in Python
Hands-on Data Analysis using Pandas Library In this post, we will learn some powerful data analysis techniques using Pandas library. Exploring the dataset is the first key step in data analysis. To have a better understanding of the data there are couple ways to do it. Today, we will cover the two simplest and most…
-
Image Manipulation in Python
In this post, I will show you how to edit an image using Python. This process editing an image is called Image Manipulation. You might be wondering why you need to do some manipulations on images before using them in your code. There are many reasons for this question, but couple main reasons can be…
-
Simple Face Detection in Python
In this post, I will show you how to build a simple face detector using Python. Building a program that detects faces is a very nice project to get started with computer vision. In a previous post, I showed how to recognize text in an image, it is a great way to practice python in…
-
Convert Your Speech to Text using Python
Convert your speech to text in real-time using your microphone You can read this post on my Medium page as well. Click here for free access. In this post, I will show you how to convert your speech into a text document using Python. In programming words, this process is basically called Speech Recognition. It…
-
Extract text from an image using Python
In this post I will show you a cool Python program that will help you extract text from an image and convert to a different language that you prefer and save them as a text document. Make your own OCR (Optical Character Recognition) system by using Python. Programming is fun, let’s get started! First…