Skip to main content

pyorc: free and open-source image-based surface velocity and discharge.

Project description


pyOpenRiverCam

PyPI Conda-Forge Coverage python docs_latest Binder License downloads

pyorc, short for "pyOpenRiverCam" is a fully Open Source library for performing image-based river flow analysis. It is the underlying library for computations on the fully open software stack OpenRiverCam. pyorc can only be successful if the underlying methods are made available openly for all. Currently pyorc implements Large-scale Particle Image Velocimetry (LSPIV) based flow analysis using the OpenPIV library and reprojections and image pre-processing with OpenCV. We wish to extend this to Large-scale Particle Tracking Velocimetry (LSPTV) and Space-Time Image Velocimetry (STIV) for conditions that are less favourable for LSPIV using open libraries or extensions to this code.

example_image Image: Example of pyorc velocimetry over Ngwerere river at the Zambezi Road crossing - Lusaka, Zambia.

Current capabilities are:

  • Reading of frames and reprojection to surface
  • Velocimetry estimation at user-defined resolution
  • Discharge estimation over provided cross-section
  • Plotting of velocimetry results and cross-section flows in camera, geographical and orthoprojected perspectives.

We use the well-known xarray data models and computation pipelines (with dask) throughout the entire library to guarantee an easy interoperability with other tools and methods, and allow for lazy computing.

We are seeking funding for the following frequently requested functionalities:

  • Exports to simple text formats and GIS-compatible layers
  • Exports to augmented reality videos
  • Implementation of additional processing algorithms (STIV and LSPTV)
  • Improved nighttime / poor weather conditions processing through learning approaches

If you wish to fund this or other work on features, please contact us at info@rainbowsensing.com.

[!NOTE] For instructions how to get Anaconda (with lots of pre-installed libraries) or Miniconda (light weight) installed, please go to https://docs.conda.io/projects/conda/en/latest/

[!TIP] Please go to https://localdevices.github.io/pyorc for the latest documentation

[!IMPORTANT] At this moment pyorc works with any video compatible with OpenCV as long as it has proper metadata.

Installation

You need a python environment. We recommend using the Miniforge project. Download the latest miniforge installer from https://github.com/conda-forge/miniforge and follow the installation instructions before continuing installing pyorc.

virtual environment

To get started with pyorc, we recommend to set up a python virtual environment. This ensures that installed libraries pyorc will not conflict with other libraries or library versions which you may need for other projects.

Setting up a virtual environment can be done with:

python -m venv pyorc_env

this creates a new folder pyorc_env on your disk which contains your virtual environment. After activating the environment, any package you install will be installed in this environment only. Activating in Unix/Linux is done as follows:

source pyorc_env/bin/activate

In Windows, the activation script is in a different folder. Type the following to activate the environment.

pyorc_env\Scripts\activate

Installation for direct use

If you simply want to add pyorc to an existing python installation or virtual environment, then follow these instructions.

First activate the environment you want pyorc to be installed in (if you don't care about virtual environments, then simply skip this step). See the above sub-section for information. You can simply install pyorc with all its dependencies as follows:

pip install pyopenrivercam[extra]

The [extra] section ensures that also geographical plotting is supported, which we recommend especially for the set up of a camera configuration with RTK-GPS measured control points.

[!NOTE]

Most of the heavy lifting is done while deriving cross-correlations for estimation of velocity vectors with Particle Image Velocimetry. You can speed up this process (x2) by installing rocket-fft. With python <= 3.12 this is automatically included. With higher versions, you need, for the moment, to install it separately as follows:

pip install git+https://github.com/localdevices/rocket-fft.git

Once rocket-fft gets updated in PyPi you will no longer need this separate installation procedure.

Upgrading from pypi with pip

Did you read about a new version and you want to upgrade? Simply activate your virtual environment, type

pip install --upgrade pyopenrivercam[extra]

and then enjoy the latest features.

installation with mamba package manager

If you use mamba as a package manager, then the steps are the same, except for the installation step, which is:

mamba install pyopenrivercam

The version installed may not have the latest underlying libraries and therefore may be slower than the latest PyPi version. We therefore recommend using pip for installation (see above).

Installation from latest code base

To install pyorc from scratch in a new virtual environment from the code base, go through these steps. Logical cases when you wish to install from the code base are when you wish to have the very latest non-released version.

First, clone the code with git and move into the cloned folder.

git clone https://github.com/localdevices/pyorc.git
cd pyorc

Set up a virtual environment with all dependencies as follows:

conda env create -f envs/pyorc-dev.yml
conda activate pyorc-dev

then install pyorc from the code base as follows:

pip install .

note: pyorc is now installed in a virtual environment called pyorc-dev. This means that if you wish to run python with pyorc. You need to always first activate this environment before running python (or jupyter). This is done with the following command:

conda activate pyorc-dev

Installation from latest code base as developer

Clone the repository with ssh and move into the cloned folder.

git clone git@github.com:localdevices/pyorc.git
cd pyorc

Setup a virtual developers environment and install the package as follows:

conda env create -f envs/pyorc-dev.yml
conda activate pyorc-dev
pip install -e .

Make sure you install pre-commit hooks so that code is properly linted before pushing.

pip install pre-commit
pre-commit install

Using pyorc

To use pyorc, you can use the API for processing. A command-line interface is forthcoming pending funding. A manual is also still in the making.

Acknowledgement

The first development of pyorc has been supported by the World Meteorological Organisation - HydroHub.

License

pyorc is licensed under AGPL Version 3 (see LICENSE file).

pyorc uses the following important libraries and software with said licenses.

Package Version License
ffpiv 0.1.2 AGPLv3
numpy 1.26.4 BSD License
opencv2 4.10.0 MIT License
openpiv 0.25.3 GPLv3
matplotlib 3.9.2 Python Software Foundation License
geopandas 1.0.1 BSD License
pandas 2.2.2 BSD License

Project organisation

.
├── CHANGELOG.md        <- Version-based changelog documentation
├── README.md           <- This file
├── LICENSE             <- License file containing AGPLv3.0 license terms
├── TRADEMARK.md        <- Trademark guidelines
├── pyproject.toml      <- setup pipeline compatible with pip
├── environment.yml     <- YML-file for setting up a conda environment with dependencies
├── docs                <- Sphinx documentation source code
    ├── ...             <- Sphinx source code files
├── examples            <- Jupyter notebooks with examples how to use the API
    ├── ...             <- individual notebooks and folder with example data files
├── pyorc               <- pyorc library
    ├── ...             <- pyorc functions and API files
├── tests               <- pytest suite
    ├── ...             <- pytest functions on API level

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

pyopenrivercam-0.9.3.tar.gz (145.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pyopenrivercam-0.9.3-py3-none-any.whl (143.1 kB view details)

Uploaded Python 3

File details

Details for the file pyopenrivercam-0.9.3.tar.gz.

File metadata

  • Download URL: pyopenrivercam-0.9.3.tar.gz
  • Upload date:
  • Size: 145.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for pyopenrivercam-0.9.3.tar.gz
Algorithm Hash digest
SHA256 7629b6992e8d15b8b08c7f91dcfd641a9ffa61766a14a6c1c36749205d66c2ae
MD5 fd5b3bb2c81d84df35f574655127a91b
BLAKE2b-256 7a99f401d0f00b4af388cfd3786435ade3437aa5c9a2be111afae337793dee6c

See more details on using hashes here.

File details

Details for the file pyopenrivercam-0.9.3-py3-none-any.whl.

File metadata

  • Download URL: pyopenrivercam-0.9.3-py3-none-any.whl
  • Upload date:
  • Size: 143.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for pyopenrivercam-0.9.3-py3-none-any.whl
Algorithm Hash digest
SHA256 7c1d6d4a80a6f8df50361a7eea5fa22c36f28bc530a128da8b5792e42b4465a4
MD5 429d4b0cd89d4655782bc4d2f8ea5e33
BLAKE2b-256 5cac20c3c2088381637b8bb8983fd0717301d9f638fd2b4c05ce0a6e46c9e841

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page