Skip to content

Road detection in satellite imagery using fully convolutional neural networks.

Notifications You must be signed in to change notification settings

AICIP-UTK/spacenet-round3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Spacenet-round3

The SpaceNet Challenge Round 3

In this challenge, we were tasked with finding automated methods for extracting map-ready road networks from high-resolution satellite imagery. Moving towards more accurate fully automated extraction of road networks will help bring innovation to computer vision methodologies applied to high-resolution satellite imagery, and ultimately help create better maps where they are needed most. The goal is to extract navigable road networks that represent roads from satellite images. The linestrings the algorithm returns is compared to ground truth data, and the quality of the solution is judged by the Average Path Length Similarity (APLS) metric.

We solved the road detection problem in SpacenNet challenge as a semantic segmentation task in computer vision. Our model is based on a variant of fully convolutional neural network, U-Net [https://arxiv.org/abs/1505.04597]. U-Net is one of the most successful and popular convolutional neural network architecture for image segmentation.

TO DO: More details about the codes and the algorithm will be added soon...

Linestring Conversion

First, we created a function which would draw the ground truth LineString objects into a binary mask, with different width settings available for the road.

screen shot 2018-01-26 at 10 20 49 am

screen shot 2018-01-26 at 10 29 19 am

Here are the results of skeletonizing a 10 pixel wide mask.

screen shot 2018-01-26 at 10 35 18 am

Assuming we could generate single lines roads (possible with the skeletonizing function), we would follow a line of white pixels until that line ended, writing each point into the linestring. At an intersection, other paths would be saved to explore later. For our test example, we were able to perfectly replicate the image, using 16 linestrings but 7000 points. We further improved this solution to reduce the number of points to 3500 by tracking our current direction, and only adding a point when the direction changed.

Here is the mask generated when we draw the linestrings extracted from the skeletonized 10 pixel image.

screen shot 2018-01-26 at 10 35 35 am

About

Road detection in satellite imagery using fully convolutional neural networks.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published