-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
65 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]> or | ||
- John K. Tsotsos <[email protected]> | ||
|
||
## 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 | ||
``` | ||
|
||
|