Srikanth Anantharam
Srikanth Anantharam's Blog

Srikanth Anantharam's Blog

Follow
homeWesumebadges
Tag

C++

#cpp

More content

Read more stories on Hashnode


Articles with this tag

Converting any class into a Singleton class in C++

Aug 31, 20234 min read

Singleton is one of the creational design patterns. A singleton class has only one instance and provides a global point of access to that instance....

Converting any class into a Singleton class in C++

A tutorial for accessing C/C++ functions within a shared library (.dll/.so/.dylib) from Rust

Dec 4, 20227 min read

[19-09-2023] Updates: Add instructions and code for an alternative way to build and run using build.rs and cmake-rs Fix the reason why not to link...

A tutorial for accessing C/C++ functions within a shared library (.dll/.so/.dylib) from Rust

Correctly rotating an image to an arbitrary angle in OpenCV

Sep 10, 20223 min read

Introduction Have you ever tried to rotate an image in OpenCV? It's damn simple, right? You include the OpenCV headers:#include <cmath> #include...

Correctly rotating an image to an arbitrary angle in OpenCV