Auto-encoders from scratch will be done over the concept of Neural Network from Scratch that I already did. You can find it on my following blogs. Feed Forward Neural Network from Scratch Convolutional Neural Network from Scratch I also have written Run Length Encoding from Scratch and you can give it a try if you’d […]
Computer Vision
Something about Computer Vision.
Building Image Size Reducer Tool In Python
Image Size Reducer is much needed tool these days because most site wants us to upload various documents in the form of image but with the size limit. Modern days camera gives us image with size in megabytes but the server or site we need to upload the site has size limitation. There are sites […]
Gesture Based Calculator
Gesture Based Calculator Hello and welcome everyone to our last project on the #7DaysOfComputerVisionProjects series where we did some cool computer vision projects using image processing and opensource tools. Here in this project, we will build a calculator and we will control it by moving our fingers in front of the camera. We will make […]
Computer Vision Game: Kill a Fly
Kill The Fly Hello surfer, if you were following our series [#7DaysOfComputerVisionProjects]() then this is the 6th project and this is going to be different and fun than the previous because in this project, we are going to kill the fly. Don’t get confused, we will not kill the real fly. This blog is the […]
Gesture Based Visually Writing System
Gesture Based Writing Method This blog is the part of the series #7DaysOfComputerVisionProjects. Links to the blogs and videos of each projects are: Real-time Background Changing: Video | Blog Air Mouse: Control Mouse with Gestures Video | Blog Play Trex Game With Gesture Video | Blog Auto Dino: Play Trex Game Automatically Video | Blog […]
Auto Trex: Playing Chrome Trex Game with Image Processing
Playing Trex Game With Image Processing Hello everyone, in the last part, we used gestures to perform jump and duck but in this part, we will not use gestures. We will use only some image processing techniques and then let the code play it. But our code will not be any kind of Machine Learning […]
Playing Chrome Trex Game with Gestures
Play Trex Game on Chrome By Gesture Using OpenCV and Mediapipe Hello there surfer! Since few days, I am thinking about some cool projects that can be done within some hours using Mediapipe and OpenCV in Python. In this blog, I am writing about how can we play the popular trex game by only moving […]
Air Mouse: Controlling Mouse With Gestures in Air
Air Mouse: Doing Mouse Operations Using Finger Gestures Hey surfer, in this blog, I am going to write about how can we do basic mouse operations like move pointer, click, double click and right click using only finger gestures. This blog is the part of the series #7DaysOfComputerVisionProjects. Links to the blogs and videos of […]
Realtime Background Changing in Python
Real Time Background Changing With OpenCV and Python This blog is the part of the series #7DaysOfComputerVisionProjects. Links to the blogs and videos of each projects are: Real-time Background Changing: Video | Blog Air Mouse: Control Mouse with Gestures Video | Blog Play Trex Game With Gesture Video | Blog Auto Dino: Play Trex Game […]
Image Compression: Run Length Encoding in Python
Run Length Encoding is one of the image compression algorithms that is lossless. So let’s get started with simple intro of Run Length Encoding and getting hands dirty. This blog is cross-posted from q-viper.github.io. (Teaser Image taken from here.) If you are interested to learn about Huffman encoding of lossless image compression then please visit […]