|
| 1 | +# coding: utf-8 |
| 2 | + |
| 3 | +import numpy as np |
| 4 | +import os |
| 5 | +import sys |
| 6 | +import pandas as pd |
| 7 | +from osgeo import gdal,ogr,osr |
| 8 | + |
| 9 | +PATH_TO_TEST_IMAGES_DIR = '/home/madi/Projects/models/research/trees_recognition/images/pred/' |
| 10 | +TEST_IMAGE_PATHS = os.path.join(PATH_TO_TEST_IMAGES_DIR, 'aaa_pt604000-4399000.jpg' ) |
| 11 | +TEST_CSV_PATH = os.path.join(PATH_TO_TEST_IMAGES_DIR, 'aaa_pt604000-4399000.csv' ) |
| 12 | +CSV_REPR_PATH = os.path.join(PATH_TO_TEST_IMAGES_DIR, 'aaa_pt604000-4399000_repr.csv' ) |
| 13 | + |
| 14 | +#------------------------------------------------------------------------------- |
| 15 | + |
| 16 | +def GetExtent(gt, cols, rows): |
| 17 | + ext = [] |
| 18 | + xarr = [0, cols] |
| 19 | + yarr = [0, rows] |
| 20 | + for px in xarr: |
| 21 | + for py in yarr: |
| 22 | + x = gt[0] + (px * gt[1]) + (py * gt[2]) |
| 23 | + y = gt[3] + (px * gt[4]) + (py * gt[5]) |
| 24 | + ext.append([x, y]) |
| 25 | + print x, y |
| 26 | + yarr.reverse() |
| 27 | + return ext |
| 28 | + |
| 29 | +#------------------------------------------------------------------------------- |
| 30 | + |
| 31 | +def ReprojectCoords(coords, ext): |
| 32 | + '''From normalized coords to src |
| 33 | + ''' |
| 34 | + xmin_img = ext[0][0] |
| 35 | + xmax_img = ext[2][0] |
| 36 | + ymin_img = ext[1][1] |
| 37 | + ymax_img = ext[0][1] |
| 38 | + trans_coords=[] |
| 39 | + ymax_t = ymin_img + ((ymax_img - ymin_img) * coords[1][1]) #ymax |
| 40 | + xmin_t = xmin_img + ((xmax_img - xmin_img) * coords[0][0]) #xmin |
| 41 | + ymin_t = ymin_img + ((ymax_img - ymin_img) * coords[0][1]) #ymin |
| 42 | + xmax_t = xmin_img + ((xmax_img - xmin_img) * coords[1][0]) #xmax |
| 43 | + trans_coords.append([ymax_t, xmin_t, ymin_t, xmax_t]) |
| 44 | + return trans_coords |
| 45 | + |
| 46 | +#------------------------------------------------------------------------------- |
| 47 | + |
| 48 | +def writeShapefile(df, outShp, src): |
| 49 | + driver = ogr.GetDriverByName("ESRI Shapefile") |
| 50 | + if os.path.exists(outShp): |
| 51 | + driver.DeleteDataSource(outShp) |
| 52 | + ds = driver.CreateDataSource(outShp) |
| 53 | + layer = ds.CreateLayer('Boxes', src, ogr.wkbPolygon) |
| 54 | + # Add fields |
| 55 | + field_classe = ogr.FieldDefn("classe", ogr.OFTInteger) |
| 56 | + field_classe.SetWidth(3) |
| 57 | + layer.CreateField(field_classe) |
| 58 | + field_score = ogr.FieldDefn("score", ogr.OFTReal) |
| 59 | + field_score.SetWidth(20) |
| 60 | + layer.CreateField(field_score) |
| 61 | + # Process df and add the attributes and features to the shapefile |
| 62 | + for i in range(len(df)): |
| 63 | + # Create geometry of a box |
| 64 | + box = ogr.Geometry(ogr.wkbLinearRing) |
| 65 | + box.AddPoint(df.iloc[i].xmin, df.iloc[i].ymin) #LL |
| 66 | + box.AddPoint(df.iloc[i].xmin, df.iloc[i].ymax) #UL |
| 67 | + box.AddPoint(df.iloc[i].xmax, df.iloc[i].ymax) #UR |
| 68 | + box.AddPoint(df.iloc[i].xmax, df.iloc[i].ymin) #LR |
| 69 | + box.AddPoint(df.iloc[i].xmin, df.iloc[i].ymin) #close ring |
| 70 | + # Create polygon |
| 71 | + poly = ogr.Geometry(ogr.wkbPolygon) |
| 72 | + poly.AddGeometry(box) |
| 73 | + #print 'Polygon area = ', poly.GetArea() |
| 74 | + #print poly.ExportToWkt() |
| 75 | + feature = ogr.Feature(layer.GetLayerDefn()) |
| 76 | + feature.SetField("class", df.iloc[i].classe) |
| 77 | + feature.SetField("score", df.iloc[i].score) |
| 78 | + # Set the feature geometry using the box |
| 79 | + feature.SetGeometry(poly) |
| 80 | + # Create the feature in the layer (shapefile) |
| 81 | + layer.CreateFeature(feature) |
| 82 | + # Flush memory |
| 83 | + feature.Destroy() |
| 84 | + # Deference all |
| 85 | + ds = layer = feature = poly = None |
| 86 | + |
| 87 | +#------------------------------------------------------------------------------- |
| 88 | + |
| 89 | +# create dataframe |
| 90 | +df = pd.read_csv(TEST_IMAGE_PATHS.split(".")[0] + ".csv", \ |
| 91 | + header = 0, \ |
| 92 | + names = ['ID','ymax', 'xmin', 'ymin', 'xmax', 'classe', 'score'], \ |
| 93 | + index_col = 'ID', \ |
| 94 | + usecols = ['ID','ymax', 'xmin', 'ymin', 'xmax', 'classe', 'score']) |
| 95 | + |
| 96 | +# Remove records having score < 0.10 |
| 97 | +df = df.drop(df[df.score < 0.10].index) |
| 98 | + |
| 99 | +# The y axis is reversed |
| 100 | +df['ymin'] = df['ymin'].apply(lambda x: 1 - x) |
| 101 | +df['ymax'] = df['ymax'].apply(lambda x: 1 - x) |
| 102 | + |
| 103 | +# Retrieve coordinates and src of image corners |
| 104 | +raster = TEST_IMAGE_PATHS |
| 105 | +ds = gdal.Open(raster) |
| 106 | +gt = ds.GetGeoTransform() |
| 107 | +cols = ds.RasterXSize |
| 108 | +rows = ds.RasterYSize |
| 109 | +ext = GetExtent(gt,cols,rows) |
| 110 | +wkt = ds.GetProjection() |
| 111 | +src = osr.SpatialReference() |
| 112 | +src.ImportFromWkt(wkt) |
| 113 | + |
| 114 | +# write file |
| 115 | +fileCSV = open(CSV_REPR_PATH, "w") |
| 116 | +fileCSV.write("ID, ymax, xmin, ymin, xmax, class, score" + "\n") |
| 117 | +coords = [] |
| 118 | +reprojected = [] |
| 119 | +for i in range(len(df)): |
| 120 | + coord = [[df.xmin[i],df.ymin[i]], [df.xmax[i],df.ymax[i]]] |
| 121 | + coords.append(coord) |
| 122 | + # Perform coordinate conversion of boxes |
| 123 | + repr = ReprojectCoords(coord, ext) |
| 124 | + rep = [i, repr, df.classe[i], df.score[i]] |
| 125 | + reprojected.append(rep) |
| 126 | + # write csv |
| 127 | + fileCSV.write("%s" % i) |
| 128 | + fileCSV.write(",") |
| 129 | + fileCSV.write("%s" % repr[0][0]) |
| 130 | + fileCSV.write(",") |
| 131 | + fileCSV.write("%s" % repr[0][1]) |
| 132 | + fileCSV.write(",") |
| 133 | + fileCSV.write("%s" % repr[0][2]) |
| 134 | + fileCSV.write(",") |
| 135 | + fileCSV.write("%s" % repr[0][3]) |
| 136 | + fileCSV.write(",") |
| 137 | + fileCSV.write("%s" % df.classe[i]) |
| 138 | + fileCSV.write(",") |
| 139 | + fileCSV.write("%s" % df.score[i]) |
| 140 | + fileCSV.write("\n") |
| 141 | + |
| 142 | +fileCSV.close() |
| 143 | + |
| 144 | +# Import clean dataframe |
| 145 | +# create dataframe |
| 146 | +df = pd.read_csv(CSV_REPR_PATH, \ |
| 147 | + header = 0, \ |
| 148 | + names = ['ID','ymax', 'xmin', 'ymin', 'xmax', 'classe', 'score'], \ |
| 149 | + index_col = 'ID', \ |
| 150 | + usecols = ['ID','ymax', 'xmin', 'ymin', 'xmax', 'classe', 'score']) |
| 151 | + |
| 152 | +# Create shapefile |
| 153 | +outShp = os.path.join(PATH_TO_TEST_IMAGES_DIR, TEST_IMAGE_PATHS.split(".")[0]) + ".shp" |
| 154 | +writeShapefile(df, outShp, src) |
0 commit comments