Packages intended to assist in the preprocessing of SpaceNet satellite imagery data corpus to a format that is consumable by machine learning algorithms.
Other
249
stars
97
forks
source link
adding confidence base functionality to createGeoJSONFromRaster #89
Adding a conf=None default argument to createGeoJSONFromRaster(). The createGeoJSONFromRaster function now adds a conf column to the featureGDF that it outputs. This is currently set to 1 when conf=None with no alternative methods to calculate it within this function. conf argument - the plan will be to enable future confidence estimation in polygonize (by adding additional arguments there as well). This enables use of createGeoJSONFromRaster() with cw-eval's eval_base().
This has been tested on one specific case and found to work.
Adding a
conf=None
default argument tocreateGeoJSONFromRaster()
. ThecreateGeoJSONFromRaster
function now adds aconf
column to thefeatureGDF
that it outputs. This is currently set to 1 whenconf=None
with no alternative methods to calculate it within this function.conf
argument - the plan will be to enable future confidence estimation inpolygonize
(by adding additional arguments there as well). This enables use ofcreateGeoJSONFromRaster()
with cw-eval'seval_base()
.This has been tested on one specific case and found to work.