I'm attempting to create my own dataset for use with YOLO (You Only Look Once). Initially, I started with a large geotiff file that had pictures of landscape and animals. I was able to write a script to extract the images of the animals into separate files.
I'm now at a point where I'd like to use those animal images as part of a YOLO dataset. However, all of the examples I've seen online utilize annotation files, which denote the location of an object-to-be-detected within a larger image.
In my case, each animal picture in its entirety is what would be included within the bounding box. What can I do in this case?
Edit: What I mean to ask is this: Is it still possible for me to use these already-cropped images, and then note on the annotation file that the bounding box should cover the entire image?