Skip to content

Commit 1dcd18d

Browse files
committed
updated readme for several opencv_contrib modules (done by Gary)
1 parent 48b5ded commit 1dcd18d

File tree

3 files changed

+22
-4
lines changed

3 files changed

+22
-4
lines changed

modules/alphamat/README.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
# Computer Vision based Alpha Matting
22

3+
![Trimap Alphamat Example from Askoy et al 2017](https://github.com/opencv/opencv_contrib/assets/810997/5cafae51-18e1-4e75-9035-6b40c9a064cb)
4+
5+
6+
37
This project was part of the Google Summer of Code 2019.
48

5-
####Student: Muskaan Kularia
6-
####Mentor: Sunita Nayak
9+
#### Student: Muskaan Kularia
10+
#### Mentor: Sunita Nayak
11+
712
***
813
Alphamatting is the problem of extracting the foreground from an image. Given the input of an image and its corresponding trimap, we try to extract the foreground from the background.
914

@@ -20,4 +25,4 @@ This project is implementation of "[Designing Effective Inter-Pixel Information
2025

2126
[4] Qifeng Chen, Dingzeyu Li, Chi-Keung Tang, "[KNN Matting](http://dingzeyu.li/files/knn-matting-tpami.pdf)", IEEE TPAMI, 2013.
2227

23-
[5] Yagiz Aksoy, "[Affinity Based Matting Toolbox](https://github.com/yaksoy/AffinityBasedMattingToolbox)".
28+
[5] Yagiz Aksoy, "[Affinity Based Matting Toolbox](https://github.com/yaksoy/AffinityBasedMattingToolbox)".

modules/aruco/README.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,15 @@ ArUco Marker Detection
33

44
**ArUco**
55

6+
![markers](https://github.com/opencv/opencv_contrib/assets/810997/8d587456-f27f-49e4-9540-28a0477d43fc)
7+
68
ArUco markers are easy to detect pattern grids that yield up to 1024 different patterns. They were built for augmented reality and later used for camera calibration. Since the grid uniquely orients the square, the detection algorithm can determing the pose of the grid.
79

810
**ChArUco**
911

12+
![screen_charuco](https://github.com/opencv/opencv_contrib/assets/810997/64610da1-ee06-406c-a19b-006b02ac44fd)
13+
14+
1015
ArUco markers were improved by interspersing them inside a checkerboard called ChArUco. Checkerboard corner intersections provide more stable corners because the edge location bias on one square is countered by the opposite edge orientation in the connecting square. By interspersing ArUco markers inside the checkerboard, each checkerboard corner gets a label which enables it to be used in complex calibration or pose scenarios where you cannot see all the corners of the checkerboard.
1116

12-
The smallest ChArUco board is 5 checkers and 4 markers called a "Diamond Marker".
17+
The smallest ChArUco board is 5 checkers and 4 markers called a "Diamond Marker".

modules/line_descriptor/README.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,11 @@ Binary Descriptors for Line Segments
22
====================================
33

44
This module shows how to extract line segments from an image by 2 different methods: First segmenting lines with Line Segment Detector LSDDetector and then (or just) using the Binary Descriptor to get the lines and give them a descriptor -- BinaryDescriptor. Finally, we can then match line segments using the BinaryDescriptorMatcher class.
5+
6+
## Two views of a builing
7+
![Two views of a building](https://github.com/opencv/opencv_contrib/assets/810997/e5d438f9-5745-447c-b189-111a16fcdc76)
8+
9+
## Line segments detected and matched
10+
![LSD segments detected and matched](https://github.com/opencv/opencv_contrib/assets/810997/22d89e93-24ad-4939-b48c-9223c76889bd)
11+
12+
* [Image examples from CSDN](https://blog.csdn.net/Small_Munich/article/details/87990946)

0 commit comments

Comments
 (0)