This repository has been archived by the owner on Jun 24, 2023. It is now read-only.
-
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
1 parent
22470e5
commit 029d313
Showing
1 changed file
with
17 additions
and
0 deletions.
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 |
---|---|---|
@@ -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 |