The purpose of this module is to convert a video with an aruco marker in it into an array of locations & timestamps
Project description
ArUCo markers and Computer Vision for Localisation
This module was modified from ArUCo-Markers-Pose-Estimation-Generation-Python. The original license still applies to this code regardless of these modifications.
Purpose
The purpose of this module is to convert a video into an array of locations & timestamps like this:
[{"location": [108.404, -0.314, 172.88], "timestamp": "2025-09-13 17:59:31.348000"},
{"location": [108.378, -0.304, 172.877], "timestamp": "2025-09-13 17:59:31.414000"},
...
{"location": [109.216, -0.114, 173.852], "timestamp": "2025-09-13 18:00:02.558000"}]
Equipment Required
- a camera high-quality camera = more precision further away from camera
- a printed ArUCo tag
- a chessboard for calibration printed on paper or a real game board
Setup Repository
Create a virtual environment
Windows: python -m venv venv
Activate virtual environment
Windows: venv/Scripts/activate
Install dependencies
pip install -r requirements.txt
Setup Done, start localising below 🙃
Localisation Method
Step 0: Calibrate camera
This means to find out your current camera calibration including distortion (skew, round distortion) and intrinsic camera properties (focal length, principal point). The calibration output is two matrices which are saved as intrinsic_matrix.npy and distortion_coefficients.npy.
To calibrate your camera, do:
a. take a video of a chessboard
b. save the video under previously_calibrated_cameras
c. open calibrate_camera.py
d. adjust camera_filename, chessboard_size to match
e. run python calibrate_camera.py
Step 1: Place your camera
During localisation the camera needs to be fixed in the same place. It is ok if the target is moving. Notice where you place your camera i.e. what is the translation and rotation relative to a origin (e.g. corner of building). Adjust these variables in the measure_locations.py file:
camera_translation = [103.849, 0, 183.396] # in metres from origin
camera_rotation = [0, 90, 0]
camera = Camera(load_calibration_details_for_camera_name("My Smartphone Camera"),
camera_translation, camera_rotation)
Step 2: State your ArUCo tag
State how which type of ArUCo tag you printed out and how big it is in cm:
aruco_dict_type = "DICT_5X5_100"
aruco_marker_length = 15.9
If you don't have a ArUCo tag, use the following command to generate one and then print it out after:
python ./aruco_markers_computer_vision/generate_aruco_tags.py --id 24 --type DICT_5X5_100 --output tags/
Step 3: Record localisation video
Placing your calibrated camera in its correct spot, record a video and specify its location and when you started recording:
video_start_time = datetime(2025, 9, 18, 14, 55, 28)
video_file_path = f"./calculating_location/original_source_videos/{video_name}"
Step 4: Run python measure_locations.py
By default, the locations are output to calculating_location/output folder.
Notes
If you found this repository useful, take a look at and star ⭐️ the original repository.
Feel free to reach out to me or the original author:
Me - arnard76@gmail.com or ashe292@aucklanduni.ac.nz
Original Author - github.com/GSNCodes
Happy Learning! Keep chasing your dreams!
References
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aruco_markers_cv_localisation_arnard76-0.0.1.tar.gz.
File metadata
- Download URL: aruco_markers_cv_localisation_arnard76-0.0.1.tar.gz
- Upload date:
- Size: 31.7 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f1a2b804d5866f0bd9aaceb03fbe7898ff0d408a65fef5c2b28f7ea8e8f6e743
|
|
| MD5 |
03966f9bdf6ddf808b222950f27787af
|
|
| BLAKE2b-256 |
ee1e02b1b2ffcd5bb4111f803ec58956c835aa1e747767fd3774c303db20549e
|
File details
Details for the file aruco_markers_cv_localisation_arnard76-0.0.1-py3-none-any.whl.
File metadata
- Download URL: aruco_markers_cv_localisation_arnard76-0.0.1-py3-none-any.whl
- Upload date:
- Size: 128.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ce7315deb25b2c59f65df136ac0b3b80882cff1c1e1b40ec8ae939969807de6
|
|
| MD5 |
a25d16d0a3fb52868b3f682a50d02921
|
|
| BLAKE2b-256 |
c77f58fc3824e9356e653145c8152b07e19f259ae641fa82948e56a82ff217c4
|