From c89e6128f248fdeaab087e847e8e8649ce459f22 Mon Sep 17 00:00:00 2001 From: lazywei Date: Mon, 9 Dec 2013 17:43:06 +0800 Subject: [PATCH] Add README. --- README | 0 README.md | 25 +++++++++++++++++++++++++ 2 files changed, 25 insertions(+) delete mode 100644 README create mode 100644 README.md diff --git a/README b/README deleted file mode 100644 index e69de29..0000000 diff --git a/README.md b/README.md new file mode 100644 index 0000000..ac494b5 --- /dev/null +++ b/README.md @@ -0,0 +1,25 @@ +#Go OpenCV binding + +## Why fork? +Original project (https://code.google.com/p/go-opencv) looks abandoned. Therefore, I decide to fork it and host it on Github, so that others can help to maintain this package. + +## TODOs +- More details doc +- Implement more bindings + +## Install + +Linux +- install Go1 and OpenCV +- go get code.google.com/p/go-opencv/trunk/opencv +- cd ${GoOpenCVRoot}/trunk/samples && go run hellocv.go + +Windows +- install Go1 and MinGW +- install OpenCV-2.4.x to MinGW dir + - libopencv*.dll --> ${MinGWRoot}\bin + - libopencv*.lib --> ${MinGWRoot}\lib + - include\opencv --> ${MinGWRoot}\include\opencv + - include\opencv2 --> ${MinGWRoot}\include\opencv2 +- go get code.google.com/p/go-opencv/trunk/opencv +- cd ${GoOpenCVRoot}/trunk/samples && go run hellocv.go