Why you'd recommend 'x' library/framework - Stack Overflow [closed]most recent 30 from stackoverflow.com2009-12-05T14:56:32Zhttp://stackoverflow.com/feeds/question/211224http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/211224/why-youd-recommend-x-library-framework-2Why you'd recommend 'x' library/framework [closed]RodgerB2008-10-17T06:30:16Z2009-01-26T12:10:42Z
<p>In todays developing age, there are a lot of libraries and frameworks to choose from. </p>
<p>Selecting a bad one could set you back a couple of hours, selecting a good one could buy you some time in a project where you have a tight deadline and can't afford to waste time reinventing the wheel.</p>
<p>In a nutshell, describe how 'x' framework or library has bought yourself some time. Please give each framework/library their own individual answer, so we can have an orderly bite-sized wiki.</p>
<p>For each framework, please clearly state:</p>
<ul>
<li>Intended platform</li>
<li>The license</li>
<li>Which language(s) the library/framework supports</li>
<li>Pre-requisite libraries that need to be installed prior (if applicable)</li>
<li>How it saved you time</li>
<li>The pros and cons</li>
</ul>
<p>It would be acceptable to add some constructive comparisons to other similar libraries/frameworks as well, just to know where it stands in the line.</p>
<p>EDIT: Why the downvotes? This is an on-topic, well formed question with intent of possibly making another developer's job easier.</p>
http://stackoverflow.com/questions/211224/why-youd-recommend-x-library-framework/211232#2112321Answer by Claudiu for Why you'd recommend 'x' library/frameworkClaudiu2008-10-17T06:38:04Z2008-10-17T06:38:04Z<p><b>Python</b> - because I don't have to spend time looking up irrelevant types that functions return for things which I will only use in the next line of code and then throw away anyway.</p>
http://stackoverflow.com/questions/211224/why-youd-recommend-x-library-framework/211253#2112530Answer by RodgerB for Why you'd recommend 'x' library/frameworkRodgerB2008-10-17T06:54:34Z2008-10-17T06:54:34Z<h2>AForge.NET</h2>
<blockquote>
<p>AForge.NET is a C# framework designed for developers and researchers in the fields of Computer Vision and Artificial Intelligence - image processing, neural networks, genetic algorithms, machine learning, etc. </p>
</blockquote>
<p>AForge.NET is licensed under the GPLv2 license, and is intended for use on Windows. It works with C#, and doesn't require anything else other than your compiler.</p>
<p>AForge.NET saved me time with it's image simularity option, I was using this to test the simularity of my face and another persons face to see if I could get my computer to recognise me over webcam.</p>
<p>Pros:</p>
<ul>
<li>Great for getting the simularity of two images.</li>
<li>Nicely documented, easy to dive into.</li>
</ul>
<p>Cons:</p>
<ul>
<li>The hand recognition didn't work for me :(.</li>
<li>Might be a bit too resource-intensive for slower computers.</li>
</ul>
<p>I haven't really been able to compare it to any other library, because I haven't seen any that does it any better really.</p>