Given an image and a quadralateral, Aaform will fit the image onto the quadraleteral passed using geometry.
Latest General Articles - Page 3
Clone Smart Pointer (clone_ptr)
Learn about a non-sharing smart pointer class that can be used with STL containers such as std::map, vector, list, set, and deque. The smart pointer has an assignment operator and greater than operator that call the target object's operator.
Convert Numbers to Various Display Formats
Learn about a set of several algorithms to convert a given number to various formats. This will add enhancement to your application.
Delaunay Triangles
Learn about an algorithm to calculate this intriguing and important data structure in computer graphics.
Selecting a Geometrical Object
Learn about a method of selecting a geometrical object which is described by its vertices. This article might be of use if you are creating 2D or 3D shape related software.
Message Digests and Digital Fingerprints
Learn about an OO implementation of the MD5 algorithm in C++. It does not simply copy Ron Rivest's C code into a class. It was written to help provide a better understanding of MD5 and how C++ and its STL may be used to implement it. The code is not optimised.
Latest Developer Videos
More...Latest CodeGuru Developer Columns
Comparing the stdio and iostream C++ Libraries
It's essential to know the differences in these libraries and use them correctly. This brief tutorial will guide you.

Managing Non-blocking Calls on the UI Thread with Async Await
Create a response application by managing asynchronous code on your UI thread.

Visual Basic: Formatting Currency Values as Words
You can use Visual Basic to convert numbers, as in currency values, into words. Let us show you how.
The Value of APIs
Application Programming Interfaces (APIs) are where you have to be. It's not a matter of if as much as a matter of which.