In this post, we will discuss about two Deep Learning based approaches for motion estimation using Optical Flow. FlowNet is the first CNN approach for calculating Optical Flow and RAFT which is the ...
January 21, 2021 Leave a Comment
Optical Flow in OpenCV (C++/Python)
January 4, 2021 Leave a Comment
In this post, we will learn about the various algorithms for calculating Optical Flow in a video or sequence of frames. We will discuss the relevant theory and implementation in OpenCV of sparse and ...
Getting Started with OpenCV CUDA Module
September 15, 2020 Leave a Comment
If you have been working with OpenCV for some time, you should have noticed that in most scenarios OpenCV utilizes CPU, which doesn't always guarantee you the desired performance. To tackle this ...
Video Stabilization Using Point Feature Matching in OpenCV
January 22, 2019 Leave a Comment
In this post, we will learn how to implement a simple Video Stabilizer using a technique called Point Feature Matching in OpenCV library. We will discuss the algorithm and share the code(in python) to ...