Burial Mound detection
Collection
Models for detecting burial mounds in real-coloured satellite images.
•
3 items
•
Updated
This repository contains a YOLO model that has been finetuned by the burial_mounds
Python package on the Mounds
dataset.
The model is for academic use only, commercial use is prohibited due to restrictions imposed by the training datasets.
# pip install burial_mounds
from burial_mounds.model import MoundDetector
model = MoundDetector.load_from_hub("kardosdrur/burial-mounds-yolov8m")
# Find bounding polygons
bounding_polygons = model.detect_mounds("some_satellite_image.png")
for polygon in bounding_polygons:
print(polygon)
# Annotate satellite images
annotated_image = model.annotate_image("some_satellite_image.png")
annotated_image.show()
For a more detailed guide consult the YOLOv8 documentation or our documentation.