]> rtime.felk.cvut.cz Git - hercules2020/kcf.git/commitdiff
readme me file
authorvojirtom <vojirtom@cmp.felk.cvut.cz>
Mon, 16 Nov 2015 17:10:35 +0000 (18:10 +0100)
committervojirtom <vojirtom@cmp.felk.cvut.cz>
Mon, 16 Nov 2015 17:10:35 +0000 (18:10 +0100)
README.md [new file with mode: 0644]

diff --git a/README.md b/README.md
new file mode 100644 (file)
index 0000000..7b50c79
--- /dev/null
+++ b/README.md
@@ -0,0 +1,50 @@
+## Tracking with Kernelized Correlation Filters
+
+Code author : Tomas Vojir
+
+________________
+
+This is a C++ reimplementation of algorithm presented in "High-Speed Tracking with Kernelized Correlation Filters" paper.
+For more info and implementation in other languages visit the [autor's webpage!](http://home.isr.uc.pt/~henriques/circulant/). 
+
+It is free for research use. If you find it useful or use it in your research, please acknowledge my git repository 
+and cite the original paper [1].
+
+The code depends on OpenCV 2.4+ library and is build via cmake toolchain.
+
+_________________
+Quick start guide
+
+for linux: open terminal in the directory with the code
+
+$ mkdir build; cd build; cmake .. ; make
+
+This code compiles into binary **kcf_vot**
+
+./kcf_vot 
+- using VOT 2014 methodology (http://www.votchallenge.net/)
+ - INPUT : expecting two files, images.txt (list of sequence images with absolute path) and 
+           region.txt with initial bounding box in the first frame in format "top_left_x, top_left_y, width, height" or 
+           four corner points listed clockwise starting from bottom left corner.
+ - OUTPUT : output.txt containing the bounding boxes in the format "top_left_x, top_left_y, width, height"
+
+__________
+References
+
+[1] João F. Henriques, Rui Caseiro, Pedro Martins, Jorge Batista, “High-Speed Tracking with Kernelized Correlation Filters“, 
+IEEE Transactions on Pattern Analysis and Machine Intelligence, 2015
+
+_____________________________________
+Copyright (c) 2014, Tomáš Vojíř
+
+Permission to use, copy, modify, and distribute this software for research
+purposes is hereby granted, provided that the above copyright notice and 
+this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
\ No newline at end of file