Python library for solving computer vision tasks specifically for satellite imagery
Project description
earth-vision
Earth Vision is a python library for solving computer vision tasks specifically for satellite imagery.
Objective
To ease researcher to run ML pipelines for AI or Deep Learning Applications in solving Earth Observation (EO) tasks.
Examples
Dataset Download
from torch.utils.data import DataLoader
from earthvision.datasets import DeepSat
train_dataset = DeepSat(root='./', dataset_type='SAT-4', download=True, data_mode=0)
test_dataset = DeepSat(root='./', dataset_type='SAT-4', download=False, data_mode=1)
train_dataloader = DataLoader(train_dataset, batch_size=64, shuffle=True)
test_dataloader = DataLoader(test_dataset, batch_size=64, shuffle=True)
train_data, train_label = next(iter(train_dataloader))
test_data, test_label = next(iter(test_dataloader))
Features
- Wrapper to download open sourced EO dataset for ML tasks:
- AerialCactus
- COWC
- DeepSat
- DroneDeploy
- EuroSat
- L8SPARCS
- LandCover
- RESISC45
- UCMercedLand
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
earth-vision-0.0.3.tar.gz
(11.9 kB
view details)
File details
Details for the file earth-vision-0.0.3.tar.gz
.
File metadata
- Download URL: earth-vision-0.0.3.tar.gz
- Upload date:
- Size: 11.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/54.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a649873811f3327e2f1bd9b17a5ed4570730b23b22c73166bbd8a1c9938cbb9d |
|
MD5 | 5222f13ec54964904245ff680640a337 |
|
BLAKE2b-256 | cf5b5ffda11f2769e2014bde792138a21ff92a4a7c32d276199d9860f8881669 |