Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/satish1901/Methane-detection-from-hyperspectral-imagery
Deep Learning based Remote Sensing Methods for Methane Detection in Airborne Hyperspectral Imagery
https://github.com/satish1901/Methane-detection-from-hyperspectral-imagery
Last synced: about 2 months ago
JSON representation
Deep Learning based Remote Sensing Methods for Methane Detection in Airborne Hyperspectral Imagery
- Host: GitHub
- URL: https://github.com/satish1901/Methane-detection-from-hyperspectral-imagery
- Owner: satish1901
- License: mit
- Created: 2020-06-01T22:19:06.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-02-02T06:46:09.000Z (almost 2 years ago)
- Last Synced: 2024-06-11T20:08:12.112Z (7 months ago)
- Language: Python
- Size: 6.35 MB
- Stars: 46
- Watchers: 3
- Forks: 11
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- open-sustainable-technology - Methane-detection-from-hyperspectral-imagery - Deep Learning based Remote Sensing Methods for Methane Detection in Airborne Hyperspectral Imagery. (Emissions / Emission Observation and Modeling)
README
## Methane-detection-from-hyperspectral-imagery
H-MRCNN introduces fast algorithms to analyze large-area hyper-spectral information and methods to autonomously represent and detect CH4 plumes. This repo contains 2 methods for processing different type of data, Single detector works on 4-channels data and Ensemble detectors works on 432-channels raw hyperspectral data recorded from AVIRIS-NG instrument.
### [**Deep Remote Sensing Methods for Methane Detection in Overhead Hyperspectral Imagery**](https://openaccess.thecvf.com/content_WACV_2020/papers/Kumar_Deep_Remote_Sensing_Methods_for_Methane_Detection_in_Overhead_Hyperspectral_WACV_2020_paper.pdf)
[Satish Kumar*](https://www.linkedin.com/in/satish-kumar-81912540/), [Carlos Torres*](https://torrescarlos.com), [Oytun Ulutan](https://sites.google.com/view/oytun-ulutan), [Alana Ayasse](https://www.linkedin.com/in/alana-ayasse-18370972/), [Dar Roberts](http://geog.ucsb.edu/archive/people/faculty_members/roberts_dar.htm), [B S Manjunath](https://vision.ece.ucsb.edu/people/bs-manjunath).Official repository of our [**WACV 2020**](https://openaccess.thecvf.com/content_WACV_2020/papers/Kumar_Deep_Remote_Sensing_Methods_for_Methane_Detection_in_Overhead_Hyperspectral_WACV_2020_paper.pdf) paper.
This repository includes:
* Source code of single-detector and ensemble detectors(H-MRCNN) built on Mask-RCNN.
* Training code for single-detector and ensemble detectors(H-MRCNN)
* Pre-trained ms-coco weights of Mask-RCNN
* Annotation generator to read-convert mask annotation into json.
* Modified spectral library of python
* Example of training on your own dataset![supported versions](https://img.shields.io/badge/python-(3.5--3.8)-brightgreen/?style=flat&logo=python&color=green)
![Library](https://img.shields.io/badge/Library-TensorFlow-blue)
![GitHub license](https://img.shields.io/cocoapods/l/AFNetworking)The whole repo folder structure follows the same style as written in the paper for easy reproducibility and easy to extend. If you use it in your research, please consider citing our paper (bibtex below)
## Citing
If this work is useful to you, please consider citing our paper:
```
@inproceedings{kumar2020deep,
title={Deep Remote Sensing Methods for Methane Detection in Overhead Hyperspectral Imagery},
author={Kumar, Satish and Torres, Carlos and Ulutan, Oytun and Ayasse, Alana and Roberts, Dar and Manjunath, BS},
booktitle={2020 IEEE Winter Conference on Applications of Computer Vision (WACV)},
pages={1765--1774},
year={2020},
organization={IEEE}
}
```### Requirements
- Linux or macOS with Python ≥ 3.6
- Tensorflow <= 1.8
- CUDA 9.0
- cudNN (compatible to CUDA)### Installation
1. Clone this repository
2. Install dependencies
```
pip install -r requirements.txt
```
#### Single-detector
Running single-detector is quite simple. Follow the [README.md](https://github.com/satish1901/Methane-detection-from-hyperspectral-imagery/blob/master/single_detector/README.md) in single_detector folder
```
single_detector/README.md
```#### Ensemble-detector
For Running ensemble-detector we need some pre-processing. Follow the [README.md](https://github.com/satish1901/Methane-detection-from-hyperspectral-imagery/blob/master/ensemble_detectors/README.md) in emsemble_detector folder
```
ensemble_detector/README.md
```