Dr Tran's playground

Dr Tran's step by step programming lessons

Friday, 12 September 2014

using Zxing for barcode reading

No comments :
I needed to be able to decode barcodes so looked for a library and stumbled across ZXing which is an open source project originally written in java. It was ported over to C# and can be found at https://zxingnet.codeplex.com/ Here is how to use it - download the library with github,...
Read more

Saturday, 6 September 2014

Using opencsharp

No comments :
Now this was much simpler than I thought, and since I don’t anticipate going into OpenCV functions to alter them, I will just run with the DLLs of OpenCV. - download gitgui for windows. This program will allow us to easily clone GitHub repositories to our hard drive. http://git-scm.com/downloads/guis -...
Read more

Open CV setup

No comments :
For all of us less fluent Visual Studio users, here are step by step of how I setup Visual Studio, Cmake, and OpenCV to running a working “hello world” type project. Please let me know if I’m doing something unconventional or that is bad practice. We’re all here to learn! - install...
Read more

Tuesday, 1 May 2012

How to display Hello World with C#

No comments :
Well, this is where it begins, C#, a HelloWorld console and Windows form application. Microsoft has made it super easy for anybody to start programming, but this is really just the beginning. You'll find tons of sweet additions in C#, my favorite is Intellisense, which accurately predicts what I'm going to be typing simply based on a few letters and history of what I've typed....
Read more