Coder Social home page Coder Social logo

satellite-image-path-planning's Introduction

Path Planning from Satellite Images

Training Data

Two open access geospatial imaging datasets have been used to train the segmentation models:

  1. Massachusetts Roads Dataset
    • 1438 images with masks
    • 1500x1500 resolution
    • Urban terrain
  2. DeepGlobe Road Extraction Dataset
    • 6226 images with masks
    • 1024x1024 resolution
    • Semi-Urban & Rural terrain

Model Architecture

Two models have been used to train on respective datasets, imported from segmentation_models_pytorch:

  1. UNet
    • Encoder: ResNet-34 pretrained on imagenet
    • Activation : Sigmoid
    • Loss fn : DiceLoss , Optimizer : Adam(lr=4e-5)
    • Batch Size : 16, epochs : 6
    • Dataset : Massachusetts
  2. DeepLabV3+
    • Encoder : ResNet-50 pretrained on imagenet
    • Activation : Sigmoid
    • Loss fn : DiceLoss , Optimizer : Adam(lr=8e-5)
    • Batch Size : 4, epochs : 4
    • Dataset : DeepGlobe

Algorithms

  1. Image Processing
    • opening : erosion + dilation
    • closing : dilation + erosion
    • Skeletonize (scikit-image)
  2. Route Finding
    • BFS : considering adjacent pixels of same color as connected
    • Dijkstra : using [0.1*d + sum{(c1-c2)^2}] as weights of edges followed by pruning of redundant nodes
    • A* : using a heuristic that underestimates the distance to the goal

Workflow

Input

Input Satellite Image

Mask

Generate Road Mask

Map

Skeletonize Road Map

Route

Shortest Road Path

Image 1

Prune & Smoothen Path

Image 1

Find Shortest Path

satellite-image-path-planning's People

Contributors

sydarb avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.