From fa6148dea2e6b68ea906bd36502c6493a13be04e Mon Sep 17 00:00:00 2001 From: Armin Wolf Date: Sun, 5 Apr 2020 23:07:52 +0200 Subject: [PATCH] updated README.md --- README.md | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0647d92..6a358cd 100644 --- a/README.md +++ b/README.md @@ -1 +1,21 @@ -# README # +# Algorithms for computing line estimators + +This project was initially the practical part of my master thesis at [WWU Münster](https://www.uni-muenster.de/Informatik/). +The git-Tag 'Release' marks the state of the source code at the deadline of submission. + +Since then, I started to improve the code. I switched the source code compatibility to Java 11 and replaced the *Swing* GUI with *JavaFX*. + +## How to checkout the Tag Release +First of all, you have to clone the repository. +```git +$ git clone git@bitbucket.org:arminwolf/algorithms-for-computing-line-estimators.git +``` +After you cloned the project, switch to the directory (e.g. algorithms-for-computing-line-estimators) and use the ``git checkout`` command. +```git +$ git checkout tags/Release +``` +To get the Application running, on the System needs to be [OpenCV](https://opencv.org/releases/page/3/) installed in the Version 3.2.0. +Alternatively you could update the version in the ``pom.xml``. + +Cheers, +[Armin Wolf](https://www.armin-wolf.de)!