krikk
krikk

Reputation: 25

Implementing Seam Carving Method in C#

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#.

Upvotes: 1

Views: 1752

Answers (2)

Ivan Kochurkin
Ivan Kochurkin

Reputation: 4501

I've found following implementations of seam carving on C#:

Upvotes: 3

Orn Kristjansson
Orn Kristjansson

Reputation: 3485

I would just use ImageMagic since your doing C#, it will give you all kind of conversion possibilities.

Upvotes: 2

Related Questions