VEdge_Detector prediction of coastal vegetation edge over a sample PlanetScope satellite image in Winterton, UK.
Recent advances in satellite imagery availability and spatial resolution are providing new opportunities for the rapid, cost-effective detection of a shoreline’s location and dynamics. Rogers et al. (2021) advance in coastal vegetation monitoring by developing VEdge_detector
, a tool to extract the coastal vegetation line from remote-sensing imagery, training a very deep convolutional neural network (holistically nested edge detection), to predict sequential vegetation line locations on annual to decadal timescales. The VEdge_Detector
model was trained using Planet 3 – 5 m spatial resolution imagery. It has also detected vegetation edges in Landsat and Copernicus Sentinel imagery, although performance is not guaranteed. The tool cannot detect the vegetation edge in aerial imagery.
In this notebook, we demonstrate how scivision
facilitates the discovery of the VEdge_detector
model for differentiating between the coastal vegetation edge and other boundaries in remote sensing images. We pair the model with one of the matched data sources from the scivision data catalog, in this case some sample of satellite images (n=3) from different geographical areas (Suffolk, United Kingdom; Wilk auf Föhr, Germany; Varela, Guinea Bissau) provided within the VEdge model repository.
The notebook is designed to be launched from Binder.
- Click the Launch Binder button at the top level of the repository
You may also download the notebook from GitHub to run it locally:
- Open your terminal
- Check your conda install with
conda --version
. If you don't have conda, install it by following these instructions (see here) - Clone the repository into your current folder
git clone https://github.com/scivision-gallery/coastalveg-edge-detection.git
- Move into the cloned repository,
cd coastalveg-edge-detection
- Install the dependencies in a new environment
conda env create -f environment.yml
- Activate the installed environment,
conda activate coastalvegedge-detection-scivision
- Launch the jupyter interface of your preference, notebook,
jupyter notebook
or labjupyter lab
This notebook was supported by Rogers et al. (2021)'s research. The scivision team thanks the model maintainer and collaborators involved in the deployment of the VEdge_detector
model, in particular Martin Rogers (British Antarctic Survey) for his feedback in the preparation of the scivision model plugin and sample images provided for this notebook.