<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>seam-carving &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://wordpress.com/tag/seam-carving/</link>
	<description>Feed of posts on WordPress.com tagged "seam-carving"</description>
	<pubDate>Tue, 14 Oct 2008 00:03:38 +0000</pubDate>

	<generator>http://wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Seam Carving]]></title>
<link>http://caligraffiti.wordpress.com/?p=564</link>
<pubDate>Fri, 16 May 2008 05:50:57 +0000</pubDate>
<dc:creator>OMAGAD</dc:creator>
<guid>http://caligraffiti.pt-br.wordpress.com/2008/05/16/seam-carving/</guid>
<description><![CDATA[Geralmente quando agente redimensiona uma imagem, tudo nela fica menor ou distorcido, certo ? Mas e ]]></description>
<content:encoded><![CDATA[<p>Geralmente quando agente redimensiona uma imagem, tudo nela fica menor ou distorcido, certo ? Mas e se vc quiser espremer uma imagem em um certo espaço sem perder as proporções dos elementos principais da composição, e sem cropar ? Abre ela no Photoshop e fica horas extraindo o que vc acha legal manter e o que pode ser de fato redimensionado ...</p>
<p>Mas existe uma alternativa criada pelos pesquisadores israelitas <a href="http://www.shaiavidan.org/" target="_self">Shai Avidan</a> e <a href="http://www.faculty.idc.ac.il/arik/" target="_self">Ariel Shamir</a>, chamada <strong>Seam Carving</strong> ou <strong>Retargeting</strong>. Trata-se de um algoritmo que redimensiona a imagem, mas detectando nela os pixels de menor importância, pra serem deletados. Uma vez processada, a foto pode ser espremida ou esticada, baseado da hierarquia de importância dos pixels gerada pelo sistema.</p>
<p>Bom, os próprios caras explicam a ciência muito melhor do que eu nesse vídeo :</p>
<p style="text-align:center;"> <span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/vIFCV2spKtg'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/vIFCV2spKtg&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></span></p>
<p>Como isso ainda está em fase de testes e prototipagem, não existe nenhum programa comercial que faça todas as funcionalidades descritas. O que existe, pra experimentar, é um aplicativo de web chamado <a href="http://rsizr.com/" target="_self">Rsizr</a>. Apesar de não oferecer todas as funcionalidades como detecção facial ou diferentes interpretações para a imagem, dá pra experimentar e ver como a idéia funciona.</p>
<p>Agora eu só vejo isso virando um plugin pra Photoshop, ou até mesmo um filtro já incorporado em uma versão futura do programa. Pra quem mexe com editorial, e precisa de versatilidade na hora de layoutar, pode ser uma ferramenta bem útil. Imagino também a introdução de novos formatos de arquivo de imagem, com a informação da hierarquia de pixels já incorporada, pra que o redimensionamento possa ser feito em tempo real, o que seria útil pra adaptações de resolução na web e dispositivos móveis.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Content aware image resizing]]></title>
<link>http://ithinkit.wordpress.com/?p=12</link>
<pubDate>Sun, 27 Apr 2008 10:12:56 +0000</pubDate>
<dc:creator>ithinkit</dc:creator>
<guid>http://ithinkit.pt-br.wordpress.com/2008/04/27/content-aware-image-resizing/</guid>
<description><![CDATA[Image resizing, sounds a bit technical for few people but highly familiar to many. Very commonly ima]]></description>
<content:encoded><![CDATA[<p><strong>Image resizing</strong>, sounds a bit technical for few people but highly familiar to many. Very commonly images are resized to fit in the layout along with the other contents. Resizing an image to a different dimensions is basically of 2 types, one maintaining the proportions of the image and the other not maintaining them. In the first case there is no problem with the shape of objects inside the image, but there is no possibility of getting the exact dimensions you want. In the later case we can resize the image to the exact dimensions we want, but the objects gets distorted. What if there is some technique which can resize the image to the desired dimensions still retaining the actual shapes of objects inside the image ? fantastic right ? Effective resizing of images should not only use geometric constraints, but consider the image content as well.</p>
<p>"content-aware resizing" is a resizing technique developed by Shai Avidan and Ariel Shamir using which Image resizing is done with an awareness to the content inside the image. Watch the below video for a demonstartion.</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/6NcIJXTlugc'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/6NcIJXTlugc&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></span></p>
<p><strong>How this happens ?</strong> This technique is based on a concept of <em>seam carving</em>. Seam carving can be easily understood as 'Resizing image by gracefully adding or removing pixels from the not so important parts of image, thus preserving the contents of the image'.<br />
Then 'How to determine those <em>not so important parts</em> of image?'. The answer as told by Shai Avidan and Ariel Shamir is </p>
<blockquote><p>Seam carving uses an energy function defining the importance of pixels. A seam is a connected path of low energy pixels crossing the image from top to bottom, or from left to right. By successively removing or inserting seams we can reduce, as well as enlarge, the size of an image in both directions. For image reduction, seam selection ensures that while preserving the image structure, we remove more of the low energy pixels and fewer of the high energy ones. For image enlarging, the order of seam insertion ensures a balance between the original image content and the artificially inserted pixels. These operators produce, in effect, a content-aware resizing of images.</p></blockquote>
<p>A detailed paper presented by Avidan and Shamir can be found at <a href="http://www.seamcarving.com/arik/imret.pdf">here</a>.</p>
<p>This algorithm is already implemented in many languages and also used as plug-ins for <a href="http://www.gimp.org/">GIMP</a> and <a href="http://www.adobe.com/products/photoshop/index.html">Photoshop</a>.<br />
You can find the GIMP plug-in <a href="http://liquidrescale.wikidot.com/">here</a>.</p>
<p>A dedicated group on Flickr for this kind of resize images can be found <a href="http://www.flickr.com/groups/511212@N23/">here</a>.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Intelligent imaging]]></title>
<link>http://techiteasy.org/2007/10/27/intelligent-imaging/</link>
<pubDate>Sat, 27 Oct 2007 12:59:37 +0000</pubDate>
<dc:creator>Emmanuel Perez-Duarte</dc:creator>
<guid>http://techiteasy.org/2007/10/27/intelligent-imaging/</guid>
<description><![CDATA[What does “photo editing” mean? Back in the old days, when coming up with a barely recognizable ]]></description>
<content:encoded><![CDATA[<p><span>What does “photo editing” mean? Back in the old days, when coming up with a barely recognizable image was considered a feat, it probably meant nothing. Later on, for professionals and pretty skilled amateurs, it meant playing on successive stages of the chemistry process, using special gases that left particular imprints on the negatives, cutting and adjusting the latter, and so on. And then came the digital era. Nowadays, any mouse-able kid can do practically anything with a photograph: change the lighting, the colors, add a third eye to a friend’s forehead, etc. You get the gist.</span></p>
<p class="MsoNormal"><span>But photo editing is changing once again. I came across a couple innovations in photo editing that show that efforts are being channeled towards what can be called “intelligent imaging”. To edit a photo today, you still have to understand the image: you and you alone know what is an object, what is a face, or where this object can (or cannot) realistically be; you and you alone can determine from where the photo should be taken, at what angle, with the focus on which object, etc. “Intelligent imaging” goes beyond that.</span></p>
<p class="MsoNormal"><span>Better than a hundred words, two examples should do it: </span></p>
<p class="MsoNormal"><span>- The first one is a <a href="http://audioblog.fr/archives/2007/10/02/adobe-dave-story-future/" title="Dave Story conference">video of conference by Dave Story</a>, vice president of interactive design at Adobe. The website is in French, but the video at the end (in English) is the interesting part.</span></p>
<p class="MsoNormal"><span>- The second one is a technology called “seam carving” (thanks Steve for the pointer), which is being developed in several universities and companies at this moment. The following video explains pretty much most of what there is to know. You can then download an open-source GUI software <a href="http://www.gabeiscodingstatic.com/contentawareimageresizing-seamcarving" title="Seam carving GUI">here</a> if you want to try it out. For other examples and other software (including a Gimp plug-in), you can visit <a href="http://flickr.com/groups/511212@N23/" title="Flickr group on seam carving">this</a> Flickr group.</span></p>
<p class="MsoNormal"><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/c-SSu3tJ3ns'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/c-SSu3tJ3ns&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[rsizr - Image Resizing Flash Applikation]]></title>
<link>http://one59.wordpress.com/2007/10/04/rsizr-image-resizing-flash-applikation/</link>
<pubDate>Thu, 04 Oct 2007 19:56:18 +0000</pubDate>
<dc:creator>David</dc:creator>
<guid>http://one59.pt-br.wordpress.com/2007/10/04/rsizr-image-resizing-flash-applikation/</guid>
<description><![CDATA[Gerade bei guymon gefunden:
rsizr ist eine Flash-Applikation zum Resizen, Croppen und Drehen von Bil]]></description>
<content:encoded><![CDATA[<p>Gerade bei <a href="http://www.guymon.de/">guymon</a> gefunden:</p>
<p><a href="http://rsizr.com/">rsizr</a> ist eine Flash-Applikation zum Resizen, Croppen und Drehen von Bildern. Zum Resizen wird der relativ neu veröffentlichte "Seam Carving" Algorithmus benutzt - sehr geile Umsetzung!</p>
<p>Infos zu "Seam Carving" <a href="http://www.faculty.idc.ac.il/arik/">hier</a>, bzw. <a href="http://www.faculty.idc.ac.il/arik/imret.pdf">hier</a> (pdf download, ~20MB).</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[A new and brilliant photo editing technique]]></title>
<link>http://rawstylus.wordpress.com/2007/10/01/a-new-brilliant-photo-editing-technique/</link>
<pubDate>Mon, 01 Oct 2007 11:59:42 +0000</pubDate>
<dc:creator>Chris Hoskin</dc:creator>
<guid>http://rawstylus.pt-br.wordpress.com/2007/10/01/a-new-brilliant-photo-editing-technique/</guid>
<description><![CDATA[The first time I saw seam carving in action, I thought it was an optical illusion. It isn&#8217;t.  ]]></description>
<content:encoded><![CDATA[<p><strong>The first time I saw seam carving in action, I thought it was an optical illusion. It isn't.  </strong>Back 1 month ago it was a proof of concept.   Now you can finally use seam carving on your own images!</p>
<p>First, a quick summary of the technique: Typically, when you resize a photo, you<br />
just make everything in it smaller. Simple, right? Well seam carving is like a<br />
smarter version of resizing. Your computer analyzes the photo and figures out what's<br />
important and what isn't, then it eliminates the less important areas first as you<br />
shrink the image.</p>
<p>That means you can resize a photo to be half as wide without shrinking everyone in<br />
it, or even make a photo wider without making it look stretched. You can even pick<br />
areas you definitely want to leave alone, or areas you definitely want to lose,<br />
making it a super easy way to remove an ex or a stranger from a otherwise lovely<br />
photo.</p>
<p>Well, enough already. You really need to give it a try for yourself.</p>
<p><a href="http://rsizr.com/" title="Rsizr Homepage" target="_blank">Rsizr</a> Free seam-carving image resizing on the web</p>
<p><a href="http://www.youtube.com/watch?v=6NcIJXTlugc" title="Seam Carving YouTube Video" target="_blank">A demonstration video</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Aware Image Resizing 2]]></title>
<link>http://chasestinyworld.wordpress.com/2007/10/01/aware-image-resizing-2/</link>
<pubDate>Mon, 01 Oct 2007 09:54:21 +0000</pubDate>
<dc:creator>Chase Carver</dc:creator>
<guid>http://chasestinyworld.pt-br.wordpress.com/2007/10/01/aware-image-resizing-2/</guid>
<description><![CDATA[Après vous avoir présenté l&#8217;Aware Image Resizing, je vais maintenant vous donner l&#8217;ad]]></description>
<content:encoded><![CDATA[<p>Après vous avoir <a href="http://chasestinyworld.wordpress.com/2007/08/22/aware-image-resizing/" title="Aware Image Resizing @ CTW" target="_blank">présenté l'Aware Image Resizing</a>, je vais maintenant vous donner <a href="http://www.thegedanken.com/retarget/" title="Aware Image Resizing" target="_blank">l'adresse où on peut le télécharger</a>... :)</p>
<p>En effet, peu après avoir <a href="http://www.dailymotion.com/video/x2swhh_redimensionnement-intelligent-dimag_news" title="Aware Image Resizing @ DailyMotion" target="_blank">mis en ligne la vidéo</a>, une version bêta du logiciel a été mise en ligne sur la toile, pour notre plus grand bonheur.</p>
<p>Je n'ai pas encore testé ce bijou, mais <a href="http://www.plopblog.com/blog/" title="PlopBlog" target="_blank">Bastien</a>, blogueur @ <a href="http://www.plopblog.com/blog/" title="PlopBlog" target="_blank">plopblog.com</a>, a présenté <a href="http://www.plopblog.com/blog/index.php?2007/09/08/874-le-redimensionnement-intelligent-disponible-en-tlchargement" title="Image Resizing Demo @ PlopBlog" target="_blank">une démo qui vaut le détour</a>, en partant de cette image :</p>
<p style="text-align:center;"><img src="http://chasestinyworld.wordpress.com/files/2007/10/tree.jpg" alt="Tree" /></p>
<p><!--more-->Vous verrez, le résultat est impressionnant, surtout quand on le compare à un redimentionnement automatique...</p>
<p>(Via <a href="http://www.plopblog.com/blog/" title="PlopBlog" target="_blank">PlopBlog</a>)</p>
<p><strong>Edit</strong></p>
<p>Je viens de tomber sur un post @ <a href="http://www.emob.fr/dotclear/index.php" title="Emob" target="_blank">Emob</a> <a href="http://www.emob.fr/dotclear/index.php?2007/10/02/1369-seam-carving-pour-tous" title="Seam Carving @ Emob" target="_blank">qui parle du Seam Carving</a> et qui donne quelques liens intéressants dont <a href="http://rsizr.com/" title="Rsizr - Intelligent Image Resizing [en]" target="_blank">Rsizr</a>, un site en flash qui propose de retailler vos images intelligemment directement en ligne.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Seam carving again]]></title>
<link>http://wolfger.wordpress.com/2007/09/29/seam-carving-again/</link>
<pubDate>Sun, 30 Sep 2007 00:26:06 +0000</pubDate>
<dc:creator>wolfger</dc:creator>
<guid>http://wolfger.pt-br.wordpress.com/2007/09/29/seam-carving-again/</guid>
<description><![CDATA[I got a comment on my last post pointing me to a flash-based site that allows you to alter your imag]]></description>
<content:encoded><![CDATA[<p>I got a comment on my last post pointing me to a <a href="http://rsizr.com/about/2007/09/28/first-release/#comments">flash-based</a> site that allows you to alter your images with (it sounds like) greater control than the Gimp plugin. I say "it sounds like", because I can't seem to upload a picture to this app at all. I left a comment to that effect, and told him which flash and browser versions I was running, and he said it's never been tested against Linux, so I'd appreciate any other Linux folks to give it a shot and give feedback. And if you get it to work (Linux or otherwise), let me know how cool it is. </p>
]]></content:encoded>
</item>

</channel>
</rss>
