Skip to content
This repository was archived by the owner on Aug 22, 2024. It is now read-only.

Commit 04168ad

Browse files
kyrendon-msftKyle Rendon
andauthored
Adding calibration and registration tools to examples. (#1475)
* Adding tools for calibration and registration of cameras. * removing two unnecessary tools from pipfile * removing unused elements in pipfile * removing test pylintrcfile * Minor cleanup of the printing, template file fixes, and one edge case detection bug. * bugfix to how rms radians is computed and more quality of image checks * BUGFIX: enforcing that registration is attached to the correct camera and adding more images to examples * fixing spelling errors * remove unnecessary elements from gitignore * Removing package that is not relevant to this tool. Co-authored-by: Kyle Rendon <kyrendon@microsoft.com>
1 parent 36df754 commit 04168ad

49 files changed

Lines changed: 1073 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
## Ignore Visual Studio temporary files, build results, and
2+
## files generated by popular Visual Studio add-ons.
3+
##
4+
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
5+
6+
# VS Code
7+
.vscode
8+
9+
# Python
10+
.venv
11+
*.egg-info
56.8 KB
Loading
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) Microsoft Corporation. All rights reserved.
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[[source]]
2+
name = "pypi"
3+
url = "https://pypi.org/simple"
4+
verify_ssl = true
5+
6+
[packages]
7+
numpy = ">=1.19.2"
8+
opencv-contrib-python = ">=4.4.0.46"
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"target": "charuco1",
3+
"type": "charuco",
4+
"shapes": [
5+
{
6+
"shape": "charuco",
7+
"squares_x": 14,
8+
"squares_y": 9,
9+
"square_length": 40,
10+
"marker_length": 30,
11+
"margin_size": 20,
12+
"aruco_dict_name": 6,
13+
"width": 600,
14+
"height": 400,
15+
"x": -20,
16+
"y": -20,
17+
"dpi_factor": 5
18+
}
19+
]
20+
}
108 KB
Binary file not shown.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"target": "charuco_large",
3+
"type": "charuco",
4+
"shapes": [
5+
{
6+
"shape": "charuco",
7+
"squares_x": 14,
8+
"squares_y": 9,
9+
"square_length": 80,
10+
"marker_length": 60,
11+
"margin_size": 40,
12+
"width": 1200,
13+
"height": 800,
14+
"x": -40,
15+
"y": -40,
16+
"dpi_factor": 5,
17+
"aruco_dict_name": 6
18+
}
19+
]
20+
}
247 KB
Binary file not shown.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"target": "charuco_small",
3+
"type": "charuco",
4+
"shapes": [
5+
{
6+
"shape": "charuco",
7+
"squares_x": 10,
8+
"squares_y": 7,
9+
"square_length": 25,
10+
"marker_length": 19,
11+
"margin_size": 12,
12+
"width": 274,
13+
"height": 199,
14+
"x": -12,
15+
"y": -12,
16+
"dpi_factor": 5,
17+
"aruco_dict_name": 5
18+
}
19+
]
20+
}
36.4 KB
Binary file not shown.

0 commit comments

Comments
 (0)