From b5d376bed775a5f937f49a41f3cefca6c7556dc4 Mon Sep 17 00:00:00 2001 From: tkunic Date: Fri, 22 May 2015 12:02:27 -0400 Subject: [PATCH] Updated Readme for GitHub --- README.md | 66 ++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 65 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a68f608..45cd9be 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,66 @@ # SimpleLabel -A simple and light program for semi automatic labeling of regions of interest on images or image sequences. + +SimpleLabel is a image labelling tool designed to simplify the task of labelling +targets (or regions of interest) on image sequences while providing simple and +intuitive user interface. At the moment SimpleLabel supports only rectangular regions +and uses linear interpolation to create intermediate marked regions. + +Developed by Eugene Simine at York University, Toronto in Laboratory for Active and +Attentive Vision (http://www.cse.yorku.ca/LAAV/home/) headed by John K. Tsotsos. + +## Contact: +- Eugene Simine or +- John K. Tsotsos + +## Development + +### Requirements + +Software: +- Qt4.* +- OpenCV2.4.2 +- [Microsoft Visual C++ 2010 SP1 Redistributable Package (x86)](http://www.microsoft.com/download/en/details.aspx?id=8328) + +OS Support: +- Windows (XP, Vista, 7) +- Linux (Ubuntu 10.04) +- MacOS (in theory) + +Main development is done on Windows 7, MS VisualStudio 2010. Major releases are tested on Ubuntu. + +## Installation: +Windows binaries can be obtained from svn server: +https://samson.cse.yorku.ca/svn/SimpleLabel_bin + +Login/Pass: guest/guest + +It requires Microsoft Visual C++ 2010 SP1 Redistributable Package (x86) to be installed +http://www.microsoft.com/download/en/details.aspx?id=8328 + + +Source code is available from: +https://samson.cse.yorku.ca/svn/SimpleLabel + +Login/Pass: guest/guest + + +### Windows: +Run `win_config.bat`. That will create MSVS project. + +In case you get a compilation error, try the following: + +1. Open the SimpleLabel project +2. Go to: Project->Properties->Configuration Properties->General->Target Name +3. There will be a number appended to value, should look something like this "SimpleLabel1" +4. Delete that number. The Target Name should have value "SimpleLabel" +5. Click OK +6. Compile the project + +### Linux: +``` +$ qmake SimpleLabel.pro +$ make +$ ./SimpleLabel +``` + +