I am looking for any example code or libraries to perform image morphing in C#. For example, taking two images, defining common points and "merging" the features. My google search failed me, unless the only option is to write this from scratch? Many thanks
Image Morphing in C#
3.8k Views Asked by JJanson At
3
There are 3 best solutions below
1

AForge.NET has a morph filter. I don't know if it lets you define the point set or if it just does a "dumb" default, but worth a look anyway. I use AForge for lots of things- pretty slick, and free.
0

Take a look at homographies. Its a way to merge the two images, given a common set (4 pairs) of points. If you want to match the two images by features you will need to use machine learning, techniques to detect the similarities. AForge has a few image processing techniques, and the necessary tools for machine learning.
Perhaps C++ is close enough ?