Billions of square kilometers worth of fresh and historical imagery with global coverage and daily updates, all wrapped into an easy web app, so you find what you need fast.
Find an Image and ID Number
Use the search tools to find your image.
Click the ⊕ “Additional Information” icon
Copy / paste the image ID to your request form
Export an AOI Shapefile
Use the Rectangle or Polygon tool to outline your AOI
Click “Actions”
Click “Download Aera of Interest” and select “Shapefile”
Upload file to your request form
Note: Imagery in the library is not displayed at full resolution.
Can’t find what your looking for?
Get help navigating to your perfect image from our customer support team.
UNet architecture for semantic segmentation with ResNet34 as encoder or feature extraction part. ResNet34 is used as an encoder or feature extractor in the contracting path and the corresponding symmetric expanding path predicts the dense segmentation output.
UNet architecture for semantic segmentation with VGG16 as the encoder or feature extractor. VGG16 is used as an encoder or feature extractor in the contracting path and the corresponding symmetric expanding path predicts the dense segmentation output.
In this model, ResNet34 is used for feature extraction and the FCN operation remains as is. The feature of ResNet architecture is exploited where just like VGG, as the number of filters double, the feature map size gets halved. This gives a similarity to VGG and ResNet architecture while supporting deeper architecture and addressing the issue of vanishing gradients while also being faster. The fully connected layer at the output of ResNet34 is not used and instead converted to fully convolutional layer by means of 1×1 convolution.
In this model, VGG16 is used for feature extraction which also performs the function of an encoder. The fully connected layer of the VGG16 is not used and instead converted to fully convolutional layer by means of 1×1 convolution.