I would like to Scale an Image from 640x480 to 64x48. There are different approaches used by the picture manipulating programs like Gimp and Photoshop. For eg.Gimp uses liquid rescale algorithm and photoshop uses path match algorithm for better scaling. Both uses Seam Carving approach. But I am unable to compare and implement them in C#. I downloaded some example code , but it is in Matlab. Is there an efficient algorithm in 开发者_如何学编程C# to implement this in better way. Please provide, if any existing code for the Seam carving Implementation in C#.
I've found following implementations of seam carving on C#:
- magicarver
- My library: Seam-Carving-Advanced. GPU processing under developing. This lib is porting of C++ lib: seam-carving-gui
I would just use ImageMagic since your doing C#, it will give you all kind of conversion possibilities.
精彩评论