active questions tagged seam-carving - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T00:14:19Zhttp://stackoverflow.com/feeds/tag/seam-carvinghttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/649475/what-is-a-seam-seam-carving2What is a seam (Seam-carving)Unknown2009-03-16T06:46:50Z2009-03-16T15:07:21Z
<p>I am reading the paper about seam carving for resizing an image.</p>
<p>Down on page 3 where they define a seam mathematically, I need help clarifying it.</p>
<p>The paper says that a seam is an 8-connected path of pixels. How can it be 8-connected if the pixel cannot be on the same row? Shouldn't it be 3-connected?</p>
<p><a href="http://www.seamcarving.com/arik/imret.pdf" rel="nofollow">http://www.seamcarving.com/arik/imret.pdf</a> 20 mb PDF</p>
http://stackoverflow.com/questions/188789/how-to-perform-seam-carving-on-an-image-using-phps-gd-library2How to perform seam carving on an image using PHP's GD library?Joe Lencioni2008-10-09T19:22:09Z2008-10-10T07:28:38Z
<p>I am working on a project that resizes images using <a href="http://us.php.net/gd" rel="nofollow">PHP's GD</a> library. I would like to be able to add the option to use <a href="http://en.wikipedia.org/wiki/Seam_carving" rel="nofollow">seam carving</a> to resize images but don't want to require something like <a href="http://www.imagemagick.org/script/index.php" rel="nofollow">ImageMagick</a> (which can do seam carving with <a href="http://www.imagemagick.org/Usage/resize/#liquid-rescale" rel="nofollow">its liquid rescale feature</a>) to accomplish this.</p>
<p>Since there are no built-in seam carving functions in GD, <strong>is there a way to perform seam carving on an image using PHP's GD library</strong> or other built-in PHP functions? Alternatively, do you know if seam carving will eventually be baked into GD?</p>