Script for batch conversion and algorithms to find rectilinear shapes

with No Comments

This week, I and Vitalii started off by writing a bash script that takes a set of images from a directory, converts them (one at a time) and saves the converted images in a sub-directory or any other directory. The converted files are saved as TIFF and will have the same file name as the original. Because a single image takes more than 3 minutes to convert using ImageMagick, a batch of image could take quite a while. So, for now we will be using the nohup command to run the conversion in background but will work on parallelizing the conversion which should not be difficult considering that it is embarrassingly parallel.

For the rest of the week, we looked at algorithms which could be useful to detect rectilinear shapes from aerial images. We found that most of the algorithm, for accuracy, take multiple aerial images of the same region, often shot from different angles, to determine any man-made objects on the ground. However, we also found a convincing research article which uses Boldt Algorithm to find rectilinear shapes in aerial imagery.

Leave a Reply