From 1c169d287f6818b68a8532b43d8530f2f5297e9a Mon Sep 17 00:00:00 2001 From: Piero Toffanin Date: Fri, 13 Sep 2024 08:47:28 -0400 Subject: [PATCH] Project -> Dataset --- README.md | 2 +- cameralib/__init__.py | 2 +- cameralib/projector.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a461018..1dd0c72 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # CameraLib -A Python library to perform forward and backward projection of 2D coordinates in camera space to geographic coordinates on [ODM](https://github.com/OpenDroneMap/ODM) projects. In simple terms, with an ODM project at hand you can use this library to ask: +A Python library to perform forward and backward projection of 2D coordinates in camera space to geographic coordinates on [ODM](https://github.com/OpenDroneMap/ODM) datasets. In simple terms, with an ODM dataset at hand you can use this library to ask: * Given a pixel coordinate in an image, where does it correspond on the map? * And it's inverse: given a location on the map, which images and pixels correspond to it? diff --git a/cameralib/__init__.py b/cameralib/__init__.py index 6789b1c..3bca03d 100644 --- a/cameralib/__init__.py +++ b/cameralib/__init__.py @@ -1,5 +1,5 @@ """ -CameraLib is a library for performing forward and backward projection of 2D coordinates in camera space to geographic coordinates on ODM projects. It's an official `OpenDroneMap`_ project. +CameraLib is a library for performing forward and backward projection of 2D coordinates in camera space to geographic coordinates on ODM datasets. It's an official `OpenDroneMap`_ project. Installation: ------------- diff --git a/cameralib/projector.py b/cameralib/projector.py index ff650e8..7efb7ba 100644 --- a/cameralib/projector.py +++ b/cameralib/projector.py @@ -7,7 +7,7 @@ from cameralib.exceptions import * class Projector: - """A projector to perform camera coordinates operations on ODM projects + """A projector to perform camera coordinates operations on ODM datasets Args: project_path (str): Path to ODM project