Tag: Computer Vision
-
Turn Your Photos into Artistic Sketches with Code
Simple Computer Vision Programming Project. How to convert your photos into hand-drawn art pieces using python code. Artificial Intelligence, and OpenCV(Computer Vision Library) in hands-on python projects.
-
Rendering Responsive Text on Video using Python
In this post, I will show you how to render responsive text on video using Python. We will use the OpenCV python package for the whole project. This may sound a little difficult to do with just OpenCV, which is a computer vision package, but in this project, you will see that it is also good…
-
Enhance Your Images using OpenCV Noise Reduction Algorithm
Image Noise Reduction in 3 Steps using Python In this article, I will show you how to do noise reduction in 3 simple steps. We will be using a machine learning trained noise reduction model. It is one of the best noise reduction models I’ve found out there. I will share more about the model…
-
Building a Photo Translator using Python and Google Translator API
Combining Text Recognition with Google Translator in a Single Machine Learning Project
-
Edit Your Old Photos with Machine Learning – Computational Photography
Image Noise Reduction with one of the most powerful noise reduction algorithm In this article, I will show you how to reduce the noise in your photos using Python programming language. This process is known as Image Noise Reduction. As you may know that the term ‘noise’ is not used only in sound. Noise is…
-
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…
-
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…