Skip to content

Commit

Permalink
Fix example docs and background width
Browse files Browse the repository at this point in the history
  • Loading branch information
e10harvey committed Oct 9, 2024
1 parent b7816bf commit a3fff11
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,5 @@
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = []
html_static_path = ['_static']
html_css_files = ['table_theme.css']
2 changes: 2 additions & 0 deletions example/scene_reconstruction/example_scene_reconstruction.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ def scene_reconstruction(dir_output, dir_input):
The directory where the output files, including point locations and calibration figures, will be saved.
dir_input : str
The directory containing the input files needed for scene reconstruction. This includes:
- 'camera.h5': HDF5 file containing camera parameters.
- 'known_point_locations.csv': CSV file with known point locations.
- 'aruco_marker_images/NAME.JPG': Directory containing images of Aruco markers.
Expand All @@ -29,6 +30,7 @@ def scene_reconstruction(dir_output, dir_input):
Notes
-----
This function performs the following steps:
1. Loads the camera parameters from an HDF5 file.
2. Loads known point locations, point pair distances, and alignment points from CSV files.
3. Initializes the SceneReconstruction object with the camera parameters and known point locations.
Expand Down

0 comments on commit a3fff11

Please sign in to comment.