In contemporary scientific research and applications, there is an increasing demand for accurate geospatial analysis to address various real-world challenges, ranging from environmental monitoring to urban planning and disaster response. The ability to precisely locate and identify objects within geographic areas plays a pivotal role in such endeavors. In this scientific project, we aim to enhance geospatial analysis by integrating object detection techniques with geographic coordinate calculations. Please check our website for the library. You'll find a wealth of information and materials available to enrich your knowledge and learning experience.
Stay tuned for regular updates on our progress and new developments:
Latest updates...
June 2024
- Launched InferenceVision version 1.0!
August 2024
- Launched InferenceVision version 1.1!
- Launched InferenceVision version 1.2!
Traditional methods of geospatial analysis often rely on manual identification and mapping of objects within geographical regions. However, these methods are time-consuming, labor-intensive, and prone to errors. Moreover, they may lack the scalability required for large-scale analyses. Therefore, there is a need for automated solutions that can accurately detect and locate objects within geographic areas, enabling efficient and scalable geospatial analysis.
Our project seeks to address the aforementioned challenges by developing an automated system that combines object detection algorithms with geographic coordinate calculations. By integrating these components, we aim to achieve the following objectives:
-
Object Detection: Utilize state-of-the-art object detection algorithms, such as YOLO (You Only Look Once), to automatically identify and localize objects within satellite or aerial imagery.
-
Geographic Coordinate Calculation: Develop algorithms to calculate the geographic coordinates (latitude and longitude) of detected objects relative to a given bounding polygon. This involves converting normalized center coordinates of objects within the bounding polygon to precise geographic coordinates.
-
Integration and Visualization: Integrate object detection results with calculated geographic coordinates to create a comprehensive geospatial dataset. Visualize the detected objects and their geographic locations on maps for further analysis and interpretation.
The proposed project has several scientific implications and contributions:
-
Automation and Efficiency: By automating the process of object detection and geographic coordinate calculation, our system significantly reduces the time and effort required for geospatial analysis, thereby enhancing efficiency and scalability.
-
Accuracy and Precision: Through the integration of advanced algorithms, our system ensures high accuracy and precision in object detection and geographic coordinate calculation, leading to reliable and trustworthy results.
-
Versatility and Adaptability: The developed system is versatile and adaptable to various applications, including environmental monitoring, urban planning, agriculture, and disaster response. It provides researchers and practitioners with a powerful tool for analyzing geospatial data in diverse contexts.
In this section, we outline the methodology employed for deriving geographic coordinates from input data within the InferenceVision framework. This methodological approach combines advanced techniques in satellite image analysis, object detection, and geographic coordinate calculation to enable precise geospatial analysis and visualization. Let's delve into the steps involved:
Given a set of inputs, the calculation unfolds as follows:
1- Transform VHR Satellite Image Coordinates to WGS 84 (EPSG:4326) and Extract Polygon Coordinates: The target Coordinate Reference System (CRS) is WGS 84, representing a geographic coordinate system. Converting to this CRS standardizes the data. We use Nearest Neighbor interpolation, which can result in a blocky appearance. Transformed coordinates are precise to 9 decimal places (as default). First, we transform image coordinates to WGS 84. The coordinates of the polygons are defined as G (geometric shapes) and the following transformation operations are applied to convert these shapes to the geographic coordinate system:
Then, we extract polygon coordinates, defining the geographical extent with top-left (
2- Calculate Normalized Centers: In the second stage, model making prediction and making detections. Then, the center coordinates of the detected objects are calculated from their bounding boxes. The edge coordinates determined for each object (
The centroids of the bounding boxes are then normalized, which is necessary to convert the pixel coordinates of object locations within the image into a standard format. Normalization can be expressed as:
Where:
-
$N_x$ : The value of the normalized pixel coordinate of the center point along the x-axis. -
$N_y$ : The value of the normalized pixel coordinate of the center point along the y-axis. -
$X_{center}$ : The x pixel coordinate of the center of the bounding box. -
$Y_{center}$ : The y pixel coordinate of the center of the bounding box. -
$W$ : The total width of the raster image. -
$H$ : The total height of the raster image.
3- Calculate Geographic Coordinates: Finally, the geographic coordinates are calculated using the normalized center coordinates. In this stage, the corner coordinates of the extracted polygon are taken as reference. The normalized values are used to determine the actual locations on the geographic area by associating them with these corner coordinates. The calculation is carried out with the following formulas:
Where:
-
$lat$ represents latitude. -
$lon$ represents longitude. -
$N_{x}$ and$N_{y}$ are the normalized center coordinates. -
$lat_{TL}, lon_{TL}, lat_{BR},$ and$lon_{BR}$ are the latitude and longitude of the top-left and bottom-right corners of the polygon, respectively.
NOTE: The input image must have a CRS set to ensure accurate geographic coordinate calculation.
1- Install the Library Run the following command in a code cell to install inference_vision
from GitHub:
git clone https://github.com/doguilmak/InferenceVision.git
cd InferenceVision
2- Install requirements using requirements.txt
file.
pip install -r requirements.txt -q
3- Once the installation is complete, import the InferenceVision
class from the library.
from inference_vision import InferenceVision
4- Here's a simple example demonstrating how to use InferenceVision
:
inference = InferenceVision(
tif_path="path/to/image.tif",
model_path="path/to/model.pt"
)
inference.process_image(build_csv=True, csv_filename="output.csv")
In addition, you can see how to use the inference_vision
library step by step in an IPython Notebook environment.
Debugging: In case of any errors or unexpected behavior during image processing, carefully review the input data, model configuration, and method calls. Use debugging tools such as print statements, logging, or interactive debugging to identify and resolve issues.
Future Improvements: Consider incorporating additional features or enhancements to further optimize the performance and usability of the InferenceVision
class. Potential improvements may include support for alternative object detection models, integration with other geospatial libraries, or optimization of computational efficiency.
This calculation elucidates the process of deriving geographic coordinates from given inputs, a pivotal step within InferenceVision
framework. It facilitates the transformation of normalized center coordinates into precise geographic coordinates, fostering accurate geospatial analysis and visualization. Geographic coordinates, namely latitude and longitude, are indispensable for pinpointing specific locations on Earth's surface. This process outlined here harmonizes normalized center coordinates, relative values within a bounding area, into a set of coordinates mappable onto a geographical map for comprehensive analysis. In conclusion, our scientific project aims to advance the field of geospatial analysis by leveraging cutting-edge technologies and methodologies. By combining object detection with geographic coordinate calculation, we strive to provide researchers and practitioners with an efficient, accurate, and versatile solution for addressing complex geospatial challenges.
For a detailed exploration of related work, refer to the research article available at IEEE. Presented at IEEE IGARSS 2024 in Athens, our article delves into the application of object detection techniques in geospatial contexts, highlighting the ultimate use of Very High Resolution (VHR) satellite imagery for analyzing disaster impacts.
BibTeX:
@INPROCEEDINGS{10642920,
author = {Ilmak, Dogu and Iban, Muzaffer Can and Zafer Şeker, Dursun},
title = {A Geospatial Dataframe of Collapsed Buildings in Antakya City after the 2023 Kahramanmaraş Earthquakes Using Object Detection Based on YOLO and VHR Satellite Images},
booktitle = {IGARSS 2024 - 2024 IEEE International Geoscience and Remote Sensing Symposium},
year = {2024},
pages = {3915-3919},
keywords = {YOLO; Buildings; Urban areas; Earthquakes; Geoscience and remote sensing; Satellite images; Sensors; Geospatial analysis; Context modeling; Deep Learning; Object Detection; Very High-Resolution Satellite Imagery; Remote Sensing; Earthquake Damage Assessment},
doi = {10.1109/IGARSS53475.2024.10642920}
}