Papers for

wildlife monitoring teams

Papers whose findings have a practical use for this group, as judged from the abstract. Open a paper to read what it means in practice.

Audio localization for drones adapts timing to speed detection

Audio-based UAV Localization with Adaptive Temporal Correspondence via Reinforcement Learning

Abstract: Audio-based localization provides a low-cost and illumination-independent sensing solution for anti-UAV early warning. However, existing methods typically rely on a predefined fixed audio segment length, which limits temporal correspondence and creates a trade-off between sufficient acoustic evidence and timely localization. To address this issue, we propose an audio-based localization framework with adaptive temporal correspondence. A probe segment is first used to extract a compact acoustic state that characterizes the reliability and consistency of the observation. Guided by the state, a reinforcement learning controller dynamically determines the required audio window size for each localization decision. The selected audio segment is then processed by a Mamba-based localization network with adaptive temporal feature modulation for 3D position estimation. Extensive experiments demonstrate that our method achieves competitive 3D localization accuracy with substantially reduced temporal correspondence latency compared to SOTA methods and exhibits strong generalization across scenarios.

Mon 21 SeptRoboticsSound
The gist
Detecting drones by sound is a cheap way to spot them even when it's dark. Existing methods look at fixed lengths of sound, which can either take too long or miss details. The authors developed a system that listens to variable lengths of sound based on how reliable the signal is, decided using a kind of trial-and-error learning. This method helps find where drones are in 3D more quickly and still accurately. They tested it in many situations and it worked well across different conditions.
Open 2609.24218v1

Scout system lets low-power devices recognize new wildlife species

Scout: Open-World Species Recognition on the Edge

Abstract: Large vision-language models (VLMs) enable recognition beyond a fixed class set, but their computational demands prevent them from running on many edge devices. Cloud offload makes this capability accessible, but sending every image consumes scarce bandwidth and communication energy. We ask how to bring the open-world recognition capability of VLMs to the edge while operating within tight compute, energy, and bandwidth budgets. Wildlife monitoring provides a natural setting for exploring this question because camera traps encounter species not known at deployment. We present Scout, an autonomous open-world recognition system that invokes a cloud VLM intermittently to teach new classes to a compact edge model. Given only the deployment location and empty site frames, Scout autonomously turns each species identified by the VLM into persistent, site-conditioned recognition capability in a resource-efficient edge model, without a predefined species list, human labeling, or manual tuning. Across 30 camera-trap deployments in three regions on an NVIDIA Jetson Orin Nano, the accuracy of Scout remains within 0.1-2.5% of a model given a predefined species list. On species outside its initial class set, Scout achieves 53.7-59.1% accuracy, compared with 56.5-65.1% for full cloud offload, while using 59-71% less deployment energy.

Sat 19 SeptComputer Vision and Pattern RecognitionDistributed, Parallel, and Cluster ComputingMachine Learning
The gist
Many smart wildlife cameras cannot recognize animals they haven't been trained on and sending all images to the cloud wastes energy and bandwidth. The authors created Scout, which runs mostly on small devices and occasionally asks a powerful cloud AI to identify new species. Scout learns these new species locally, without people having to label them, and keeps using less energy than sending every picture online. This makes it almost as accurate as always using cloud AI but much more efficient for wildlife monitoring.
Open 2609.22897v1

Animal identification method works across different species and environments

Cross-Species Animal Re-Identification with Semantic Consistency Learning

Abstract: Generalizable animal Re-Identification (ReID) aims to recognize individual animals across species with diverse morphologies and ecological contexts. Unlike person ReID, where different domains share similar body structures, animal species often exhibit drastically different anatomical structures and visual patterns, making it difficult to establish shared visual correspondences. As a result, representations learned across species tend to form fragmented embedding spaces, which severely limits cross-species generalization. To address this challenge, we propose Semantic Consistency Learning (SCL), a framework designed to learn representations that remain stable across appearance variations while preserving semantic structures shared across species. SCL consists of two complementary components. Foreground-Background Decoupled Spectral Normalization (FDSNorm) stabilizes feature statistics by suppressing environment-induced style variations in a region-aware manner, while Cross-species Neighborhood Modeling (CNM) captures transferable relational structures across species through dynamic feature neighborhoods. Extensive experiments on 11 public animal ReID datasets demonstrate that SCL consistently outperforms state-of-the-art methods under multiple cross-species evaluation protocols and generalizes effectively to previously unseen species and ecological domains. Code is available at https://github.com/Kemalau/ECCV-26-SCL.

Wed 9 SeptComputer Vision and Pattern Recognition
The gist
Recognizing individual animals from photos can be very hard when those animals belong to different species with very different shapes and colors. The authors propose a new technique that learns stable features about animals, ignoring environmental differences like background or lighting, and finds relationships between animals across species. Their method improves accuracy in identifying animals even if the species or environment were not seen before. This work helps make animal identification more reliable in real-world scenarios.
Open 2609.09705v1

Low-cost omnidirectional tracking improves small object monitoring

Re-engineering SORT-based algorithms for low-cost small object tracking from omnidirectional footage

Abstract: Multi-object tracking (MOT) has advanced rapidly in urban surveillance and autonomous driving, yet many trackers rely on ReID- and transformer-based appearance encoders and are designed for standard FoV cameras. These assumptions break down for low-cost omnidirectional deployments, where equirectangular projection introduces seam discontinuities and targets appear to be small and fast-moving. We address multi-object tracking of flying animals captured in remote environments using omnidirectional cameras. We propose a lightweight framework that re-engineers SORT-based tracking for this geometry, including (i) a Seam-Aware Motion Model that keeps the Kalman state continuous across the seam, (ii) a composite seam-aware association cost that pairs a wrapped Euclidean term with GIoU, and (iii) OmniSmall, a new benchmark of omnidirectional wildlife footage. On our new dataset, with ground-truth detections, our modifications improved over OCSORT by +8.51 HOTA, +9.41 MOTA, and +10.17 IDF1; with YOLOX detections the gain narrows to +1.95 HOTA. Our proposed methods improved tracking performance on OmniSmall and remained competitive on JRDB without adding appearance encoders while keeping the tracking stage CPU-only. Our dataset and source code are available at: https://github.com/Xin-Shu/OmniSORT.git.

Mon 7 SeptComputer Vision and Pattern Recognition
The gist
Tracking several moving objects on video is tricky when the camera view is wide and objects are tiny and fast. The authors improved a popular tracking method called SORT to handle the special camera view that wraps around, stopping errors where image boundaries meet. They tested their changes on a new video dataset of flying animals and showed better tracking without needing complex appearance analysis. Their approach works well even with simple, CPU-only computing.
Open 2609.07547v1