active questions tagged image-processing - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T15:40:17Z http://stackoverflow.com/feeds/tag/image-processing http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1819124/image-comparison-algorithm 5 Image comparison algorithm unknown (google) 2009-11-30T10:57:54Z 2009-12-18T11:39:31Z <p>I'm trying to compare images to each other to find out whether they are different. First I tried to make a Pearson correleation of the RGB values, which works also quite good unless the pictures are a litte bit shifted. So if a have a 100% identical images but one is a little bit moved, I get a bad correlation value.</p> <p>Any suggestions for a better algorithm? </p> <p>BTW, I'm talking about to compare thousand of imgages...</p> <p>Edit: Here is an example of my pictures (microscopic):</p> <p>im1: <a href="http://www.freeimagehosting.net/uploads/c603225337.jpg" rel="nofollow">http://www.freeimagehosting.net/uploads/c603225337.jpg</a></p> <p>im2: <a href="http://www.freeimagehosting.net/uploads/9b78f22f42.jpg" rel="nofollow">http://www.freeimagehosting.net/uploads/9b78f22f42.jpg</a></p> <p>im3: <a href="http://www.freeimagehosting.net/uploads/854dcd81eb.jpg" rel="nofollow">http://www.freeimagehosting.net/uploads/854dcd81eb.jpg</a></p> <p>im1 and im2 are the same but a little bit shifted/cutted, im3 should be recognized as completly different...</p> <p><strong>Edit:</strong> <strong>Problem is solved with the suggestions of Peter Hansen! Works very well! Thanks to all answers! Some results can be found here <a href="http://www.file-upload.net/download-2054026/image%5Fcomparision.pdf.html" rel="nofollow">http://www.file-upload.net/download-2054026/image%5Fcomparision.pdf.html</a></strong></p> http://stackoverflow.com/questions/1925701/combining-and-converting-tiff-separations-into-1-bitmap-in-c 0 Combining (and converting) TIFF separations into 1 bitmap in C# krebstar 2009-12-18T01:14:11Z 2009-12-18T02:25:30Z <p>Hi, is there a simple way to take a number of 1-bit TIFF files (say, 4 for CMYK) and convert it into one contone RGB bitmap?</p> <p>This problem has me stumped..</p> <p>Thanks..</p> http://stackoverflow.com/questions/1918263/reading-pixels-of-image-in-c 1 Reading Pixels of Image in C++ Ahmad Farid 2009-12-16T22:28:53Z 2009-12-17T16:56:33Z <p>How to open and read the pixels of an image in c++? Read them in the form of X, Y and to know the color.</p> http://stackoverflow.com/questions/823564/determine-the-differences-between-two-nearly-identical-photographs 4 Determine the differences between two nearly identical photographs Yoooder 2009-05-05T06:11:08Z 2009-12-16T20:23:32Z <p>This is a fairly broad question; what tools/libraries exist to take two photographs that are not identical, but extremely similar, and identify the specific differences between them?</p> <p>An example would be to take a picture of my couch on Friday after my girlfriend is done cleaning and before a long weekend of having friends over, drinking, and playing rock band. Two days later I take a second photo of the couch; lighting is identical, the couch hasn't moved a milimeter, and I use a tripod in a fixed location.</p> <p>What tools could I use to generate a diff of the images, or a third heatmap image of the differences? Are there any tools for .NET?</p> http://stackoverflow.com/questions/1914950/can-i-convert-a-swf-file-to-an-image-format 1 Can I convert a .swf file to an image format? ciaranarcher 2009-12-16T14:24:14Z 2009-12-16T15:50:36Z <p>Hi all - </p> <p>I need to take a .swf Flash file, ideally from a URL (but I can read the file from disk also) and create an image preview of it (png, gif or jpeg is fine). </p> <p>I am using Adobe Coldfusion 8 so I'm looking for a Java solution. I need to get the first frame of the Flash movie only. </p> <p>Many thanks in advance. </p> <p>EDIT: I need to do this on the server in Java/CF at runtime - it's got to be automatic - I'm not looking for screen-grab software! :)</p> http://stackoverflow.com/questions/1637000/how-to-divide-an-image-into-blocks-in-matlab 3 How to divide an image into blocks in MATLAB? anubhav 2009-10-28T12:36:55Z 2009-12-16T14:15:11Z <p>I have a 256x256 image and I want to divide it into 4 blocks of 128x128 each and address them as A1 to A4. Now I want to call them separately and do some operations on them. I know this can be done using the <code>blkproc</code> function -- but how exactly?</p> <p>Do I call <code>blkproc</code> like this?</p> <pre><code>B=blkproc(I,[4 4],?) </code></pre> <p>What do I put in place of the "?", and how can I address the 4 blocks created?</p> http://stackoverflow.com/questions/1914430/calculating-corresponding-pixels 0 Calculating corresponding pixels Janusz 2009-12-16T12:39:13Z 2009-12-16T13:43:02Z <p>I have a computer vision set up with two cameras. One of this cameras is a time of flight camera. It gives me the depth of the scene at every pixel. The other camera is standard camera giving me a colour image of the scene. </p> <p>We would like to use the depth information to remove some areas from the colour image. We plan on object, person and hand tracking in the colour image and want to remove far away background pixel with the help of the time of flight camera. It is not sure yet if the cameras can be aligned in a parallel set up. </p> <p>We could use OpenCv or Matlab for the calculations.</p> <p>I read a lot about rectification, Epipolargeometry etc but I still have problems to see the steps I have to take to calculate the correspondence for every pixel. </p> <p>What approach would you use, which functions can be used. In which steps would you divide the problem? Is there a tutorial or sample code available somewhere?</p> <p><strong>Update</strong> We plan on doing an automatic calibration using known markers placed in the scene</p> http://stackoverflow.com/questions/1911628/ken-burns-effect-on-actionscript3 1 Ken Burns Effect on actionscript3 ArgenDeveloper 2009-12-16T01:09:50Z 2009-12-16T05:03:33Z <p>Hi,</p> <p>I want to develop a zooming effect like this gallery: <a href="http://www.monoslideshow.com/" rel="nofollow">http://www.monoslideshow.com/</a> Can anyone give me a hint? I'm not sure about the math that i have to do for getting something similar Thanks in advance</p> http://stackoverflow.com/questions/1910157/gluing-a-number-of-pngs-together 0 Gluing a number of PNGs together Pekka 2009-12-15T20:27:24Z 2009-12-15T20:40:18Z <p>I am building a new icon set for a <a href="http://ckeditor.com/" rel="nofollow">CKEditor</a> skin. The skin requires the icons to be one huge PNG file, where they are stacked underneath each other. The buttons then use the PNG as background image and define different y offsets to get the right image.</p> <p>I have many separate icons in PNG format that I need to glue together into one such PNG file. One could write a PHP script that does this, but maybe somebody knows a quicker way? The special requirement is that all the icons need to occupy 32x32 pixels in the end, but the input material is not always exactly of that size. Icons smaller than 32x32 would have to be centered into a 32x32 space.</p> <p>I thought about ImageMagick but doubt that it can fulfill that last requirement. Or can it?</p> http://stackoverflow.com/questions/773901/what-java-library-can-i-use-to-search-for-colours-with-a-tolerance-in-an-image 2 What Java Library can I use to search for colours, with a tolerance, in an image? hornairs 2009-04-21T18:18:21Z 2009-12-15T09:01:45Z <p>I would like to find a Java library that will allow me to search for colours within an image with a tolerance. Preferably quickly. I know how I would do it if I had to write it myself, and it's not super difficult, but I'm hoping to find a library with features other than that principle one. I'd like to be able to also:</p> <ul> <li>Find another image within an image, with a tolerance, and figure out how closely matched the image is to whatever the function finds</li> <li>Specify the manner in which to search for colors or images in an image (such as a outward spiraling manner or whatever)</li> <li>Find and return a string containing what it thinks is the text at a particular location in an image</li> <li>(trivial) Find colors and images on the display as opposed to an image (I know I could just make an image out of the display, but this would help)</li> </ul> <p>What I really want is SCAR Divi, the program best known for cheating at Runescape, but in Java form so I can use it with my project and I don't feel dirty.</p> http://stackoverflow.com/questions/1904865/how-to-scale-pixels-in-an-image-to-adjust-brightness 1 How to scale pixels in an image to adjust brightness? Norman Ramsey 2009-12-15T02:30:53Z 2009-12-15T05:22:14Z <p>I have a grayscale image from a photograph. I've determined that certain parts of the image are underilluminated, and that a pixel with luminance Y = 0.8 should actually be adjusted to 90% grey, i.e., that pixel should be given luminance 0.9. My question is <strong>how do I scale the other pixels nearby?</strong> I'm pretty sure multiplying all the luminances by 9/8 is wrong, because I vaguely remember hearing that in order to <em>look</em> uniform, the scaling has to be nonlinear. But I'm having trouble finding an equation that would enable me to make progress. (Of course I am actually writing a program to make this adjustment to a great many photographs.)</p> <p>The source of my pixels is the pbmplus PGM format, about which the man page says:</p> <blockquote> <p>Each gray value is a number proportional to the intensity of the pixel, adjusted by the CIE Rec. 709 gamma transfer function. (That transfer function specifies a gamma number of 2.2 and has a linear section for small intensities). A value of zero is therefore black. A value of Maxval represents CIE D65 white and the most intense value in the image and any other image to which the image might be compared.</p> </blockquote> <p>If I understood this better I would probably have a better idea how to proceed.</p> <p>I found a related question on <a href="http://stackoverflow.com/questions/664760">making an image of uniform brightness</a>.</p> http://stackoverflow.com/questions/1877452/splitting-a-multipage-tiff-image-with-net-and-ironpython 1 Splitting a multipage TIFF image - With .NET and IronPython Kevin Pullin 2009-12-09T22:44:21Z 2009-12-14T16:01:56Z <p>I had a scanned multipage TIFF image and needed to split each page out into individual files.</p> <p>This is easy to do in by leveraging the .NET framework and C#, but since I did not have all the development tools installed on the machine I was using, I instead opted to use IronPython (via ipy.exe) to quickly script the processing logic.</p> <p>Using Stack Overflow as a 'blog' engine, I'll provide an answer to my own question. Comments, suggestions, alternatives, etc. are welcome!</p> http://stackoverflow.com/questions/1897856/when-trying-to-load-an-external-image-which-does-not-exist-stop-loading-the-imag 1 When trying to load an external image which does not exist, stop loading the image using a timeout. Michael H 2009-12-13T21:34:40Z 2009-12-14T10:09:33Z <p>Hi,</p> <p>I have got a JSP page which loads images dynamically. Now, I also have some "input" elements on this page such as a checkbox and select menus which are being created using a javascript module (creating a different styling for the input elements).</p> <p>My issue is, one of the images the page is trying to load does not exist on the external link it is trying to open. The server only responds after 15 seconds to say that the image does not exist. This means that I have to wait 15 seconds for my "input" elements to load, since the activation of the javascript module only happens after all images are fully loaded on my page.</p> <p>Is there a way for me to set a timeout for loading images, such that for example, after 5 seconds of trying to load an image, it stops the request?</p> <p>Thanks,</p> <p>Michael</p> http://stackoverflow.com/questions/1897947/how-do-i-write-an-image-to-a-file-in-matlab 0 How do I write an image to a file in MATLAB Tasbeer 2009-12-13T22:05:29Z 2009-12-14T00:12:43Z <p>I am particularly stuck in this case </p> <pre><code>I = imread('liftingbody.png'); S = qtdecomp(I,.27); blocks = repmat(uint8(0),size(S)); for dim = [512 256 128 64 32 16 8 4 2 1]; numblocks = length(find(S==dim)); if (numblocks &gt; 0) values = repmat(uint8(1),[dim dim numblocks]); values(2:dim,2:dim,:) = 0; blocks = qtsetblk(blocks,S,dim,values); end end blocks(end,1:end) = 1; blocks(1:end,end) = 1; imshow(I), figure, imshow(blocks,[]) </code></pre> <p>( The example above is from the MATLAB help )</p> <p>If I try to write the image i.e blocks using <code>imwrite(blocks)</code> then the whole image appears to be black. This happens for any input images. But I want to write exactly the output that imshow shows here. Can anyone help ? </p> http://stackoverflow.com/questions/1897011/quadtree-decomposition-matlab 1 Quadtree Decomposition - MATLAB Tasbeer 2009-12-13T16:41:32Z 2009-12-13T19:38:31Z <p>How can I use the <code>qtdecomp(Image,threshold)</code> function in MATLAB to find a <strong>quadtree decomposition</strong> of an RGB image? </p> <p>I tried this:</p> <pre><code>Ig = rgb2gray(I); % I is the rgb image S = qtdecomp(I,.27); </code></pre> <p>but I get this error:</p> <pre><code>??? Error using ==&gt; qtdecomp&gt;ParseInputs A must be two-dimensional Error in ==&gt; qtdecomp at 88 [A, func, params, minDim, maxDim] = ParseInputs(varargin{:}); </code></pre> <p>Also I get this error:</p> <pre><code>??? Error using ==&gt; qtdecomp&gt;ParseInputs Size of A is not a multiple of the maximum block dimension </code></pre> <p>Can someone tell me how can I do it?</p> http://stackoverflow.com/questions/1889036/image-comparison-in-vb-net 4 Image Comparison in VB.Net Becky Franklin 2009-12-11T16:03:57Z 2009-12-13T15:43:48Z <p>Hey folks,</p> <p>After reading many related posts on this site on the subject of image comparison I'm thinking I'll try implementing a PCA on each image in order to see if an image is 'similar' or not, but I'm not sure how to get the data from my images - is there a VB function that I can use to convert the image into an array of bytes or something in order to compare images? Or a simpler way to compare two images (should be black and white but they'll be scanned, v. small images)</p> <p>Thanks very much, Becky</p> http://stackoverflow.com/questions/1654449/with-php-gd-how-do-i-trim-an-image 0 With PHP/GD, how do I trim an image? Alix Axel 2009-10-31T13:54:18Z 2009-12-13T13:00:01Z <p>I want to <strong>mimic the trim behavior of Photoshop</strong> (crop the area that is covered by the same color on all sides) with <strong>GD and PHP</strong> but I'm lacking ideas on how to accomplish this.</p> <p>If someone has any idea on how to do this I would very much like to hear it.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/402810/camellia-ruby-computer-vision-library-on-os-x 2 Camellia Ruby Computer Vision Library on OS X ezkl 2008-12-31T11:43:51Z 2009-12-12T00:21:14Z <p>Has anyone had any luck getting the <a href="http://camellia.sourceforge.net/" rel="nofollow">Camellia</a> computer vision library to install on OS X? I've been banging my head against a wall trying to get it to install. There is <a href="http://po-ru.com/diary/camellia-and-ruby-on-mac-os-x/" rel="nofollow">only one reference I can find</a> online and it is a bit dated. I've followed the instructions to the T with no luck.</p> <p>I'm hoping one of your brilliant folks on SO can help a dude out.</p> http://stackoverflow.com/questions/1571683/opencv-image-on-image 0 openCV: image on image eomer 2009-10-15T11:09:45Z 2009-12-11T14:03:51Z <p>hi</p> <p>i want to paste an image to a captured video frame on the coordinates which i determined </p> <p>i asked that before and i have been told to use cvCopy and cvSetImageROI but i dont want to crop on those coordinates i want to add another image maybe its the right way but i didnt understand it (if its right pls explain it)</p> <p>thank for suggestions</p> http://stackoverflow.com/questions/1887972/how-is-the-icewing-tracking-plugin-working 0 How is the icewing tracking plugin working? Janusz 2009-12-11T13:09:43Z 2009-12-11T13:09:43Z <p>I'm trying to develop a tracking software with <a href="http://icewing.sourceforge.net/" rel="nofollow">icewing</a>. Icewing has its own tracking plugin that somehow sends tracking information after initialized. How is this plugin working? How can i initialize it and how do I get the data?</p> http://stackoverflow.com/questions/1887338/how-to-apply-aritstic-effect-to-images-and-methods-used-to-achieve-it 0 How to Apply Aritstic effect to images and methods used to achieve it ? Mac 2009-12-11T11:03:56Z 2009-12-11T12:56:37Z <p>I am a newbie and i would like to give artistic effects to the images such as photocopy , blur ,glow edge, mosaic bubble ,pencil sketch ,marker , glass effect,paint brush,glow diffused effect programatically?</p> <p>I want to implement it and any input is appreciated. The following link depicts what i want to do exactly...</p> <p><a href="http://picasaweb.google.com/ashish.j.soni/BloggerPictures?authkey=Gv1sRgCMPHzP2P%5FfjRlgE#5413931800038472178" rel="nofollow">http://picasaweb.google.com/ashish.j.soni/BloggerPictures?authkey=Gv1sRgCMPHzP2P_fjRlgE#5413931800038472178</a></p> http://stackoverflow.com/questions/1874851/image-orientation-and-validation-with-paperclip 0 Image orientation and validation with Paperclip? The Tailor 2009-12-09T15:56:52Z 2009-12-10T19:59:01Z <p>Hi, I'm looking for a way to determine image orientation preferably with Paperclip, but is it even possible or do I need to user RMagick or another image library for this?</p> <p>Case scenario: When a user uploads an image i want to check the orientation/size/dimensions to determine if the image is in portrait/landscape or square and save this attribute to the model.</p> http://stackoverflow.com/questions/1815948/good-book-on-computer-vision-algorithms-in-c-with-easy-to-understand-code-samp 2 Good book on computer vision algorithms in C++ (with easy to understand code samples) dotnetdev 2009-11-29T16:20:51Z 2009-12-10T19:21:26Z <p>I am in the beginning stages of learning about machine vision/edge detection etc. I want to master this specialist area and my language of choice is C++.</p> <p>I am looking at various books on the internet for one to buy but can't find one which is good and covers things such as Sobel algorithm and is in C++. Can anyone recommend a book? The book must also have code samples which are well commented (I am just starting out to learn C++ too but I am an experienced C# coder).</p> http://stackoverflow.com/questions/1596691/cvcanny-and-float-32-bit-ipldepth32f-problem 0 cvCanny and float 32 bit (IPL_DEPTH_32F) problem. zhengtonic 2009-10-20T19:05:56Z 2009-12-10T19:00:17Z <p>I have some problems with <a href="http://en.wikipedia.org/wiki/OpenCV" rel="nofollow">OpenCV</a>s <strong>cvCanny(...)</strong> and the Image data types it can handle. Well, maybe you guys/gals know a solution.</p> <p>I have a 32 bit float image and I want to perform cvCanny on it. The problem is cvCanny can only handle "IPL_DEPTH_8S" or U (signed / unsigned short), or at least that's what I suspect. The OpenCV manual does not indicate how much it can handle and this line in cv/cvcanny.cpp didn't raise my hopes:</p> <pre><code>... if( CV_MAT_TYPE( src-&gt;type ) != CV_8UC1 || CV_MAT_TYPE( dst-&gt;type ) != CV_8UC1 ) CV_ERROR( CV_StsUnsupportedFormat, "" ); ... </code></pre> <p>The images I have are greyscale / single channel float32 bit and the values in the image are between 0.0 and 16.0. Casting my float32 to unsigned short wouldn't help much since the values would loose their precision and I would miss edges with OpenCVs canny.</p> <p>Do you guys/gals happen to know a solution for my problem? (besides using <a href="http://en.wikipedia.org/wiki/Insight%5FSegmentation%5Fand%5FRegistration%5FToolkit" rel="nofollow">ITK</a> :) )</p> http://stackoverflow.com/questions/1650568/how-do-i-create-an-opencv-image-from-a-pil-image 2 How do I create an OpenCV image from a PIL image? scrible 2009-10-30T15:38:23Z 2009-12-10T15:14:37Z <p>I want to do some image processing with OpenCV (in Python), but I have to start with a PIL <code>Image</code> object, so I can't use the <code>cvLoadImage()</code> call, since that takes a filename. </p> <p>This recipe (adapted from <a href="http://opencv.willowgarage.com/wiki/PythonInterface" rel="nofollow">http://opencv.willowgarage.com/wiki/PythonInterface</a>) does not work because <code>cvSetData</code> complains <code>argument 2 of type 'void *'</code> . Any ideas?</p> <pre><code>from opencv.cv import * from PIL import Image pi = Image.open('foo.png') # PIL image ci = cvCreateImage(pi.size, IPL_DEPTH_8U, 1) # OpenCV image data = pi.tostring() cvSetData(ci, data, len(data)) </code></pre> <p>I think the last argument to the <code>cvSetData</code> is wrong too, but I am not sure what it should be.</p> http://stackoverflow.com/questions/1877405/detecting-grayscale-images-with-net 6 Detecting grayscale images with .Net Dave 2009-12-09T22:32:56Z 2009-12-10T15:06:41Z <p>I am scanning documents to JPG images. The scanner must scan all pages as color or all pages as black and white. Since many of my pages are color, I must scan all pages as color. After the scanning is complete, I would like to examine the images with .Net and try to detect what images are black and white so that I can convert those images to grayscale and save on storage.</p> <p>Does anybody know how to detect a grayscale image with .Net?</p> <p>Please let me know.</p> http://stackoverflow.com/questions/1881013/is-there-a-algorithm-or-library-that-can-detect-motion-blur-in-images 1 Is There a Algorithm or Library that can Detect Motion Blur in Images? Kyle Brandt 2009-12-10T13:35:03Z 2009-12-10T13:45:06Z <p>Anyone know of an algorithm that can return fuzzy true/false to if a image has motion blur / camera shake in a image?</p> <p>Ideally it would be particular to <em>motion</em> blur, as lots of the images in the set might have blurred (<a href="http://en.wikipedia.org/wiki/Bokeh" rel="nofollow">Bokeh</a>) backgrounds.</p> <p>A language preference would be C, Perl, Shell Utility, or Python, but I'm open to anything really.</p> <p>With my current knowledge of Math / Programming, I don't think I really have a hope of writing such an algorithm, only using one that takes some parameters...</p> http://stackoverflow.com/questions/1876926/how-can-i-create-bitmaps-in-c 2 How can I create bitmaps (in C)? Austin Kelley Way 2009-12-09T21:14:17Z 2009-12-10T02:46:22Z <p>I am wondering how I can both import and export bitmaps to and from C. I'm basically lost on where to begin.</p> http://stackoverflow.com/questions/1868009/speed-up-matrix-addition-in-c 9 Speed up Matrix Addition in C# Jean Azzopardi 2009-12-08T16:14:41Z 2009-12-09T21:44:24Z <p>Hi, I'd like to optimize this piece of code :</p> <pre><code>public void PopulatePixelValueMatrices(GenericImage image,int Width, int Height) { for (int x = 0; x &lt; Width; x++) { for (int y = 0; y &lt; Height; y++) { Byte pixelValue = image.GetPixel(x, y).B; this.sumOfPixelValues[x, y] += pixelValue; this.sumOfPixelValuesSquared[x, y] += pixelValue * pixelValue; } } } </code></pre> <p>This is to be used for image processing, and we're currently running this for about 200 images. We've optimized the GetPixel value to use unsafe code, and we're not using image.Width, or image.Height, as those properties were adding to our runtime costs.</p> <p>However, we're still stuck at a low speed. The problem is that our images are 640x480, so the middle of the loop is being called about 640x480x200 times. I'd like to ask if there's a way to speed it up somehow, or convince me that it's fast enough as it is. Perhaps a way is through some fast Matrix Addition, or is Matrix Addition inherently an n^2 operation with no way to speed it up?</p> <p>Perhaps doing array accesses via unsafe code would speed it up, but I'm not sure how to go about doing it, and whether it would be worth the time. Probably not. Thanks.</p> <p>EDIT : Thank you for all your answers.</p> <p>This is the GetPixel method we're using:</p> <pre><code> public Color GetPixel(int x, int y) { int offsetFromOrigin = (y * this.stride) + (x * 3); unsafe { return Color.FromArgb(this.imagePtr[offsetFromOrigin + 2], this.imagePtr[offsetFromOrigin + 1], this.imagePtr[offsetFromOrigin]); } } </code></pre> http://stackoverflow.com/questions/943781/where-can-i-find-a-good-read-about-bicubic-interpolation-and-lanczos-resampling 4 Where can I find a good read about bicubic interpolation and Lanczos resampling? Vilx- 2009-06-03T09:08:53Z 2009-12-09T11:09:25Z <p>I want to implement the two above mentioned image resampling algorithms (bicubic and Lanczos) in C++. I know that there are dozens of existing implementations out there, but I still want to make my own. I want to make it partly because I want to understand how they work, and partly because I want to give them some capabilities not found in mainstream implementations (like configurable multi-CPU support and progress reporting).</p> <p>I tried reading Wikipedia, but the stuff is a bit too dry for me. Perhaps there are some nicer explanations of these algorithms? I couldn't find anything either on SO or Google.</p> <p><strong>Added:</strong> Seems like nobody can give me a good link about these topics. Can anyone at least try to explain them here?</p>