From 1d6ae2dabcbaacf71b6e209a266182d092982c80 Mon Sep 17 00:00:00 2001 From: Bert Chang Date: Thu, 16 Jan 2014 11:49:56 +0800 Subject: [PATCH] Add webcam sample to README. --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 0d2eb8d..0d033e3 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,8 @@ Original project (https://code.google.com/p/go-opencv) looks abandoned. Therefor ## Example +### Resizing + ```go package main @@ -42,6 +44,18 @@ func main() { opencv.SaveImage("resized3.jpg", resized3, 0) } ``` + +### Webcam + +Yet another cool example is created by @saratovsource which demos how to use webcam: + +``` +cd samples +go run webcam.go +``` + +### More + You can find more samples at: https://github.com/lazywei/go-opencv/tree/master/samples ## Contribute