TorchSat is an open-source deep learning framework for satellite imagery analysis based on PyTorch.
This project is still work in progress. If you want to know the latest progress, please check the develop branch.
Hightlight
python3 setup.py installWe suppose all the input images, masks and bbox should be NumPy ndarray. The data shape should be [height, width] or [height, width, channels].
Pixel-level transforms only change the input image and will leave any additional targets such as masks, bounding boxes unchanged. It support all channel images. Some transforms only support specific input channles.
| Transform | Image | masks | BBoxes |
|---|---|---|---|
| ToTensor | ✓ | ✓ | ✓ |
| Normalize | ✓ | ✓ | ✓ |
| ToGray | ✓ | ✓ | ✓ |
| GaussianBlur | ✓ | ✓ | ✓ |
| RandomNoise | ✓ | ✓ | ✓ |
| RandomBrightness | ✓ | ✓ | ✓ |
| RandomContrast | ✓ | ✓ | ✓ |
Spatial-level transforms will simultaneously change both an input image as well as additional targets such as masks, bounding boxes. It support all channel images.
| Transform | Image | masks | BBoxes |
|---|---|---|---|
| Resize | ✓ | ✓ | ✓ |
| Pad | ✓ | ✓ | ✓ |
| RandomHorizontalFlip | ✓ | ✓ | ✓ |
| RandomVerticalFlip | ✓ | ✓ | ✓ |
| RandomFlip | ✓ | ✓ | ✓ |
| CenterCrop | ✓ | ✓ | ✓ |
| RandomCrop | ✓ | ✓ | ✓ |
| RandomResizedCrop | ✓ | ✓ | ✓ |
| ElasticTransform | ✓ | ✓ | |
| RandomRotation | ✓ | ✓ | ✓ |
| RandomShift | ✓ | ✓ | ✓ |
All models support multi-channels as input (e.g. 8 channels).
vgg11, vgg11_bn, vgg13, vgg13_bn, vgg16, vgg16_bn, vgg19_bn, vgg19resnet18, resnet34, resnet50, resnet101, resnet152, resnext50_32x4d,resnext101_32x8d, wide_resnet50_2, wide_resnet101_2densenet121, densenet169, densenet201inception_v3mobilenet_v2efficientnet_b0, efficientnet_b1, efficientnet_b2, efficientnet_b3,efficientnet_b4, efficientnet_b5, efficientnet_b6, efficientnet_b7resnest50, resnest101, resnest200, resnest269unet, unet34, unet101, unet152 (with resnet as backbone.)If you extend this repository or build projects that use it, we'd love to hear from you.
Content type
Image
Digest
Size
1.1 GB
Last updated
about 6 years ago
docker pull sshuair/torchsat:cpu-latest