def main(): rootdir = sys.argv[1] + '/' #'/Users/bound_to_love/Downloads/Test02142018' directory = os.path.dirname( sys.argv[2] + '/Partitions/' ) #/Users/bound_to_love/Downloads/Test02142018/Partitions/') f = open(str(sys.argv[2]) + "/Drone_coords.txt", "w+") if os.path.exists(directory): print "Directory already exists" if not os.path.exists(directory): os.makedirs(directory) print "Directory made for partitions" files = os.listdir(rootdir) for file in files: if ".JPG" in file: image = Image.open(str(rootdir + '/' + file)) exif_data = gll.get_exif_data(image) dir, lat, lon = gll.get_lat_lon(exif_data) f.write((file + " " + str(dir) + " " + str(lat) + " " + str(lon) + " " + str(image.size[0]) + " " + str(image.size[1])) + str("\n")) imgPartition = cv2.imread(rootdir + "/" + file) x, y, c = imgPartition.shape xp = len(str(x)) yp = len(str(y)) i, j = 0, 0 #while i < (x/10)*10: #while j < (y/10)*10: #partition = imgPartition.crop((i, j, (i + x / 10), (j + y / 10))) while i < x: i2 = i + 300 while j < y: j2 = j + 300 newfile = directory + "/" + str(j).zfill(yp) + "_" + str( i).zfill(xp) + "_" + file partition = imgPartition[ i:i2, j: j2] #cv2.resize(imgPartition[i:i2, j:j2],(x, y), interpolation = cv2.INTER_LINEAR) cv2.imwrite(newfile, partition) #j += y / 10 j += 300 #i += x / 10 i += 300 j = 0 f.close()
def get_coordinates_from_image(image): return get_lat_lon(get_exif_data(image))
# order to use this script on a Windows command line. for g in os.listdir(f): g_path = os.path.join(f, g) if os.path.isfile(g_path): files.append(g_path) else: print('warning: skipping {}'.format(f), file=sys.stderr) for f in files: try: img = Image.open(f) except OSError as err: print('warning: {}: {}'.format(f, err), file=sys.stderr) continue try: exif_data = get_exif_data(img) except AttributeError as err: print('warning: {}: {}'.format(f, err), file=sys.stderr) continue try: dt = get_datetime(exif_data) except KeyError as err: print('warning: {}: KeyError `{}\''.format(f, err), file=sys.stderr) continue locsym = get_location_symbol(exif_data) metainfo[f] = { 'dt': dt, 'loc': locsym, }
rootdir = sys.argv[1] + '/' #'/Users/bound_to_love/Downloads/Test02142018' directory = os.path.dirname(sys.argv[2] + '/Partitions/') #/Users/bound_to_love/Downloads/Test02142018/Partitions/') f = open(str(sys.argv[2]) + "/Drone_coords.txt", "w+") if os.path.exists(directory): print "Directory already exists" if not os.path.exists(directory): os.makedirs(directory) print "Directory made for partitions" files = os.listdir(rootdir) for file in files: if ".JPG" in file: image = Image.open(str(rootdir + '/' + file)) <<<<<<< HEAD exif_data = gll.get_exif_data(image) dir, lat, lon = gll.get_lat_lon(exif_data) ======= exif_data = get_exif_data(image) dir, lat, lon = get_lat_lon(exif_data) >>>>>>> Cleaned repository f.write((file + " " + str(dir) + " "+ str(lat) + " " + str(lon) + " " + str(image.size[0]) + " " + str(image.size[1])) + str("\n")) imgPartition = cv2.imread(rootdir + "/" + file) x, y, c = imgPartition.shape xp = len(str(x)) yp = len(str(y)) i, j = 0, 0 #while i < (x/10)*10: #while j < (y/10)*10: #partition = imgPartition.crop((i, j, (i + x / 10), (j + y / 10))) while i < x: