Skip to content
This repository has been archived by the owner on Jun 24, 2023. It is now read-only.

Commit

Permalink
Added README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
milankostak committed Mar 13, 2020
1 parent 22470e5 commit 029d313
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
I am using this repository for works and implementation on the topic of *Marker Detection*. Three different versions, each with several improvements, were developed to this date.
All versions are implemented in WebGL, and therefore they are using GPU processing to speed up the process of detection.

## Version 1
This version is working by dividing areas into rectangles. Inside each rectangle, every pixel is processed. There are two steps to make the texture smaller for reading into CPU memory.

https://github.com/milankostak/Diploma-thesis

## Version 2
This version is built on a completely different algorithm. It works by projecting columns and rows of pixels. These projections are summed, and a weighted arithmetic mean of their coordinates is calculated.

https://github.com/milankostak/Marker-detection/releases/tag/v2.0

## Version 3
This version is based on the second version. The main focus of works on this version was finding improvements for eliminating false detections. This is achieved by color weighting and morphological operation of erosion. Another primary goal was implementing an algorithm that would allow selecting of the target color for every use.

https://github.com/milankostak/Marker-detection/releases/tag/v3.0

0 comments on commit 029d313

Please sign in to comment.