Building footprint segmentation from satellite and aerial imagery
Project description
Building Footprint Segmentation
Library to train building footprint on satellite and aerial imagery.
Installation
pip install building-footprint-segmentation
Dataset
Training
-
Train With Config , Use config template for generating training config
Visualize Training
Test images at end of every epoch
- Follow Example
Visualizing on Tensorboard
from building_footprint_segmentation.helpers.callbacks import CallbackList, TensorBoardCallback
where_to_log_the_callback = r"path_to_log_callback"
callbacks = CallbackList()
# Ouptut from all the callbacks caller will be stored at the path specified in log_dir
callbacks.append(TensorBoardCallback(where_to_log_the_callback))
To view Tensorboard dash board
tensorboard --logdir="path_to_log_callback"
Defining Custom Callback
from building_footprint_segmentation.helpers.callbacks import CallbackList, Callback
class CustomCallback(Callback):
def __init__(self, log_dir):
super().__init__(log_dir)
where_to_log_the_callback = r"path_to_log_callback"
callbacks = CallbackList()
# Ouptut from all the callbacks caller will be stored at the path specified in log_dir
callbacks.append(CustomCallback(where_to_log_the_callback))
Segmentation for building footprint
- binary
- building with boundary (multi class segmentation)
Weight File
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
File details
Details for the file building-footprint-segmentation-0.2.1.tar.gz
.
File metadata
- Download URL: building-footprint-segmentation-0.2.1.tar.gz
- Upload date:
- Size: 21.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0.post20201006 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 790ffc4acb382be85f60257501315b5c6f83a429e0c6322a7a89ad5d4a0a1444 |
|
MD5 | a810341a498ef042c22b763d4ca06116 |
|
BLAKE2b-256 | 1817496869516bdc7232590d66ba71455b9432a07bb115accd98758a5a86d173 |