Remove surrounding whitespace from an image - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T22:32:30Z http://stackoverflow.com/feeds/question/248141 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/248141/remove-surrounding-whitespace-from-an-image 4 Remove surrounding whitespace from an image Kyle B. 2008-10-29T19:42:20Z 2009-04-26T09:20:19Z <p>I have a block of product images we received from a customer. Each product image is a picture of something and it was taken with a white background. I would like to crop all the surrounding parts of the image but leave only the product in the middle. Is this possible?</p> <p>As an example: <a href="http://www.5dnet.de/media/catalog/product/d/r/dress_shoes_5.jpg" rel="nofollow">http://www.5dnet.de/media/catalog/product/d/r/dress_shoes_5.jpg</a></p> <p>I don't want all white pixels removed, however I do want the image cropped so that the top-most row of pixels contains one non-white pixel, the left-most vertical row of pixels contains one non-white pixel, bottom-most horizontal row of pixels contains one non-white pixel, etc.</p> <p>Code in C# or VB.net would be appreciated.</p> <p>Thanks, Kyle</p> <p><hr /></p> <p><em>Edit: If anyone would like source code for this, I have posted my solution online here: <a href="http://www.fitnessconnections.com/blog/post/2008/11/Remove-Surrounding-White-Space-From-An-Image.aspx" rel="nofollow">http://www.fitnessconnections.com/blog/post/2008/11/Remove-Surrounding-White-Space-From-An-Image.aspx</a></em></p> http://stackoverflow.com/questions/248141/remove-surrounding-whitespace-from-an-image/248205#248205 5 Answer by Bevan for Remove surrounding whitespace from an image Bevan 2008-10-29T20:00:07Z 2008-10-29T20:00:07Z <p>I've written code to do this myself - it's not too difficult to get the basics going. </p> <p>Essentially, you need to scan pixel rows/columns to check for non-white pixels and isolate the bounds of the product image, then create a new bitmap with just that region.</p> <p>Note that while the Bitmap.GetPixel() method works, it's relatively slow. If processing time is important, you'll need to use Bitmap.LockBits() to lock the bitmap in memory, and then some simple pointer use inside an unsafe { } block to access the pixels directly.</p> <p><a href="http://www.codeproject.com/KB/GDI-plus/csharpgraphicfilters11.aspx?fid=3488&amp;df=90&amp;mpp=25&amp;noise=3&amp;sort=Position&amp;view=Quick&amp;fr=76&amp;select=1123224" rel="nofollow">This article</a> on CodeProject gives some more details that you'll probably find useful.</p> http://stackoverflow.com/questions/248141/remove-surrounding-whitespace-from-an-image/248220#248220 2 Answer by Claudiu for Remove surrounding whitespace from an image Claudiu 2008-10-29T20:05:47Z 2008-10-29T20:05:47Z <p>It's certainly possible. In pseudocode:</p> <pre><code>topmost = 0 for row from 0 to numRows: if allWhiteRow(row): topmost = row botmost = 0 for row from numRows-1 to 0: if allWhiteRow(row): botmost = row </code></pre> <p>And similarly for left and right.</p> <p>The code for <code>allWhiteRow</code> would involve looking at the pixels in that row and making sure they're all <em>close</em> to 255,255,255.</p> http://stackoverflow.com/questions/248141/remove-surrounding-whitespace-from-an-image/249590#249590 0 Answer by Alnitak for Remove surrounding whitespace from an image Alnitak 2008-10-30T08:38:27Z 2008-10-30T08:38:27Z <p>The <code>pnmcrop</code> utility from the <code>netpbm</code> graphics utilities library does exactly that.</p> <p>I suggest looking at their code, available from <a href="http://netpbm.sourceforge.net/" rel="nofollow">http://netpbm.sourceforge.net/</a></p> http://stackoverflow.com/questions/248141/remove-surrounding-whitespace-from-an-image/790541#790541 0 Answer by Dmitri Nesteruk for Remove surrounding whitespace from an image Dmitri Nesteruk 2009-04-26T09:20:19Z 2009-04-26T09:20:19Z <p>Here's my (rather lengthy) solution:</p> <pre><code>public Bitmap Crop(Bitmap bmp) { int w = bmp.Width, h = bmp.Height; Func&lt;int, bool&gt; allWhiteRow = row =&gt; { for (int i = 0; i &lt; w; ++i) if (bmp.GetPixel(i, row).R != 255) return false; return true; }; Func&lt;int, bool&gt; allWhiteColumn = col =&gt; { for (int i = 0; i &lt; h; ++i) if (bmp.GetPixel(col, i).R != 255) return false; return true; }; int topmost = 0; for (int row = 0; row &lt; h; ++row) { if (allWhiteRow(row)) topmost = row; else break; } int bottommost = 0; for (int row = h - 1; row &gt;= 0; --row) { if (allWhiteRow(row)) bottommost = row; else break; } int leftmost = 0, rightmost = 0; for (int col = 0; col &lt; w; ++col) { if (allWhiteColumn(col)) leftmost = col; else break; } for (int col = w-1; col &gt;= 0; --col) { if (allWhiteColumn(col)) rightmost = col; else break; } int croppedWidth = rightmost - leftmost; int croppedHeight = bottommost - topmost; try { Bitmap target = new Bitmap(croppedWidth, croppedHeight); using (Graphics g = Graphics.FromImage(target)) { g.DrawImage(bmp, new RectangleF(0, 0, croppedWidth, croppedHeight), new RectangleF(leftmost, topmost, croppedWidth, croppedHeight), GraphicsUnit.Pixel); } return target; } catch (Exception ex) { throw new Exception( string.Format("Values are topmost={0} btm={1} left={2} right={3}", topmost, bottommost, leftmost, rightmost), ex); } } </code></pre>