Hello,
I’m working on an acoustic object detection task using the Ultralytics YOLOv11 framework. My dataset consists of paired spectrogram images for each sample: one representing the vertical axis and one representing the horizontal axis. These two images are inherently correlated (capturing the same acoustic event from orthogonal perspectives), and I want the model to leverage this relationship during feature extraction.
Input: Two synchronized images (vertical & horizontal) per training/inference sample.
Output: Separate bounding box coordinates and class predictions for each image.
Constraint: The model must process both images simultaneously, exploit their cross-correlation, but produce independent detection outputs per view.
I’m looking for guidance on the most robust and efficient way to implement this within the Ultralytics YOLO ecosystem.
Thank you.