Tutorials

golang.pngGolang : Pad file extension automagically

14th December 2016

Problem:

You want to pad file type extension to a given filename string without prompting your program users to do….... read more



golang.pngGolang : Serving HTTP and Websocket from different ports in a program example

14th December 2016

Problem:

For some reason you want to split the port use by your program to serve HTTP and Web-socket traffic.….... read more



golang.pngGolang : Calculate BMI and risk category

30th November 2016

I'm building a healthcare IoT device that will ask a person about their weight and report back the risk category.….... read more



golang.pngGolang : Calculate diameter, circumference, area, sphere surface and volume

21st November 2016

Let's travel back to high school for a while and learn some physics. We will learn how to calculate a….... read more



golang.pngGolang : Find change in a combination of coins example

21st November 2016

If you are planning to build a vending machine, self-service cashier machine or any machines that deal with money. Chances….... read more



golang.pngGolang : Handling image beyond OpenCV video capture boundary

20th November 2016

One of the problems that I was unable to solve at the previous tutorial on how to put….... read more



golang.pngGolang : Print UTF-8 fonts on image example

16th November 2016

Problem:

You need to write UTF-8 characters such as Icelandic,Chinese, Japanese, Korean, Russian or symbols like © Ø ® ß….... read more



golang.pngGolang : Changing a RGBA image number of channels with OpenCV

16th November 2016

Problem:

Golang image packages deal with RGBA ( 4 channels ) and OpenCV deals with BGR ( 3 channels ).….... read more



golang.pngGolang : Put UTF8 text on OpenCV video capture image frame

16th November 2016

The HERSHEY font use by OpenCV does not support UTF-8 characters. If you use my previous tutorial on how to….... read more



golang.pngGolang : Set image canvas or background to transparent

15th November 2016

Putting this down here for my own future reference. Maybe useful to you too. Anyway, basically what I need is….... read more



golang.pngGolang : Add text to image and get OpenCV's X, Y co-ordinates example

14th November 2016

Building on from the previous OpenCV-GTK-GUI application tutorial. For this tutorial, I need to know where to position….... read more



golang.pngGolang : Another camera capture GUI application with GTK and OpenCV

12th November 2016

For those that prefer to use GTK over Qt, this is another tutorial/example to show you how to .... read more



golang.pngGolang : GUI with Qt and OpenCV to capture image from camera

10th November 2016

After the tutorial on how to display image with Qt and Golang. I need to build a Graphical….... read more



golang.pngGolang : Qt image viewer example

9th November 2016

This is the Qt version of the previous tutorial on how to create a simple image viewer with….... read more



golang.pngGolang : Detect number of faces or vehicles in a photo

8th November 2016

This is a short tutorial on how to use OpenCV to detect the number of faces in an image. Knowing….... read more



golang.pngGolang : Calculate half life decay example

3rd November 2016

My wife is a chemistry lecturer and she was showing her student how to calculate half-life decay of an element.….... read more



golang.pngGolang : Play .WAV file from command line

3rd November 2016

Problem:

You have recorded your voice on a .wav file with the previous tutorial on how to activate….... read more



golang.pngGolang : ffmpeg with os/exec.Command() returns non-zero status

3rd November 2016

Problem:

You want to use ffmpeg with os/exec.Command() and Run() to create your video files.

However, it keeps bombing….... read more



Advertisement