Correctly rotating an image to an arbitrary angle in OpenCV
Introduction
Have you ever tried to rotate an image in OpenCV? It's damn simple, right?
You include the OpenCV headers:#include <cmath>
#include <iostream>
#include <algorithm>
#include <opencv2/core.hpp>
#include <opencv2/imgproc.hpp>
#include <ope...
blog.srikanth.one3 min read