Posts

Showing posts from March, 2015

Some C# Basics...

Image
Some C# / .NET techniques as I encounter them. More to follow... Arrays and Strings Using an array of strings in a foreach loop: [code language="csharp"] using System.IO; using System; class Program { static void Main() { string[] values = new string[]{ "abc", "xyz", "123" }; foreach( string s in values ) { Console.WriteLine( s ); } } } [/code] Console output:

Object Detection Using OpenCV

Free Downloads