Metadata-Version: 2.1
Name: cusum
Version: 0.1.19
Summary: Full cumulative sum processing for change detection
Home-page: 
Author: Antoine Pfefer
Author-email: 
License: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENCE

# Cusum

Package for processing Cumulative Sum (CuSum) change detection algorithm from downloading SAR images to visual shapefile result

### Environment Setup

Start with creating a dedicated environment with conda, installing python 3.9. In a terminal or command prompt : 

`conda create -n my_env python=3.9`

### Install

In a terminal, activate your dedicated environment and install gdal 3.6.4 : 

`conda activate my_env`

`conda install -c conda-forge gdal=3.6.4`

Install the cusum package using pip : 

`pip install cusum`

