Skip to content

Commit fa826aa

Browse files
committed
added Readme
1 parent e3b254c commit fa826aa

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## xView Data Utilities
2+
3+
This repository contains data processing scripts for the xView dataset. The script 'process_wv.py' is runnable and processes a folder containing xView imagery along with a groundtruth geojson file to create a TFRecord containing shuffled, chipped, and augmented xView patches in JPEG format. We provide several augmentation functions in 'aug_util.py' for rotating and shifting images and bounding boxes, as well as noise injecting techniques like salt-and-pepper and gaussian blurring. Additionally in 'wv_util.py' we provide several functions for loading, processing, and chipping xView data.
4+
5+
The Jupyter Notebook provided in this repository interactively illustrates an example xView processing pipeline using the provided utility functions.

process_wv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
import csv
3333

3434
"""
35-
A script that processes WorldView 3 imagery from Digital Globe.
35+
A script that processes xView imagery.
3636
3737
Args:
3838
image_folder: A folder path to the directory storing xView .tif files

wv_util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
from tqdm import tqdm
2222

2323
"""
24-
WorldView3 data processing helper functions for use in data processing.
24+
xView processing helper functions for use in data processing.
2525
"""
2626

2727
def scale(x,range1=(0,0),range2=(0,0)):

0 commit comments

Comments
 (0)