PackageTrack
Sign in Get early access

animal_detection

On-device animal detection, species classification, and body pose estimation using LiteRT (formerly TensorFlow Lite).

3.0.1 2.1K downloads/mo #402 most downloaded on pub.dev hugocornellier/animal_detection

What this package is like to depend on

Last release 11 days ago

12 Aug 2026

Ships on a steady schedule

a new release about every 2 weeks

Nearly every release is documented

notes for 36 of 36 stable releases

Nothing withdrawn

no release was ever pulled

5 months old

36 releases · first in 2026

36 releases in the last 12 months

see the full history below

Release timeline

36 releases · Mar 2026 to Aug 2026
Release Pre-release

Releases

latest 36
  1. 3.0.1 12 Aug 2026
    Release notes
    • Ship the detectFromCameraFrame() and detectFromCameraImage() APIs that were described in the 3.0.0 changelog but landed immediately after that release. Camera pixel conversion, rotation, downscaling, and inference stay in the detector worker isolate.
    • Add live-camera, still-image, and smoothed video-file flows to the native example, including the required platform permissions and registrations. Normalize live-camera behavior and cover the new paths with camera-frame parity, widget, and metrics tests.
    Open source →
  2. 3.0.0 09 Aug 2026
    Release notes
    • Add the same public, opt-in CompiledModel configuration used by object, face, pose, and hand detection. AnimalDetector.initialize() and the new AnimalDetector.create() accept useCompiledModel, accelerators, and precision; Interpreter remains the default.
    • Move the inference pipeline into a reusable AnimalDetectorCore and make AnimalDetector own one background worker isolate. Cat and dog detection can reuse the core inside their existing workers without nesting isolates.
    • Verify every requested CompiledModel against a plain-CPU Interpreter before use. An unsafe GPU graph retries on CompiledModel CPU; if CPU also fails, only that stage falls back to Interpreter instead of returning corrupted output.
    • Preserve initializeFromBuffers, compiledForceCpu, and the existing result APIs for source compatibility while routing them through the worker.
    Open source →
  3. 2.1.0 08 Aug 2026
    Release notes
    • Default precision is now Precision.fp32 instead of fp16. This changes numeric output. flutter_litert 3.8.0 changed its own default for the same reason: across 29 published detection models measured on five GPUs, fp16 matched a plain-CPU reference for only about a fifth of them, while fp32 matched every model that compiled. These graphs emit pixel-space coordinates and landmark positions, and fp16 carries about three decimal digits of mantissa, so the error lands directly on output geometry. The cost is real and worth stating plainly: fp32 is a median 29.9% slower on GPU across those five GPUs, with Apple M4 the lone exception at 6.5% faster. Pass precision: Precision.fp16 explicitly to restore the previous behaviour, ideally per model and validated on your target GPU.

    • Pin flutter_litert to ^3.8.0. Adds an optional LiteRT Next CompiledModel backend, off by default, and pins flutter_litert to ^3.8.0.

    • New useCompiledModel on initializeFromBuffers. When true, every stage is initialized onto CompiledModel instead of Interpreter. Off by default, matching the same opt-in in face_detection_tflite, pose_detection and hand_detection. compiledForceCpu is accepted alongside it.

    • The CompiledModel backend is CPU-only, deliberately. Each stage requests {Accelerator.cpu} rather than the permissive {gpu, cpu} set. This is a correctness requirement, not a performance preference: LiteRT miscomputes two of this package's own models once the GPU accelerator is in the set, by 42.3% of the output range for the species classifier and 53.8% for the pose model, while still reporting success. Do not widen the accelerator set without measuring against a bare-CPU reference first; flutter_litert 3.7.0 ships verifyCompiledModel for exactly that check.

    • Whether CompiledModel is faster is per-platform and per-model. Its CPU accelerator beats the Interpreter's XNNPACK path on Apple Silicon macOS but is roughly 2x slower on iOS, so measure before enabling it.

    • SSD output shapes are now derived rather than assumed, so the body detector works under both backends.

    • Requires flutter_litert ^3.8.0, which fixes a 3x macOS CPU slowdown affecting every stage of this pipeline (ruy multithreading was inert in the previously bundled macOS dylib).

    Open source →
  4. 2.0.0 27 Jul 2026
    Release notes
    • Replace the boxed nested input and output tensors in every model class with reused flat Float32Lists handed to TFLite as ByteBuffers, matching the approach in face_detection_tflite, pose_detection and hand_detection. Measured end to end on the cat_detection pipeline over a 3264x2448 photo in profile mode with PerformanceMode.auto, the full pipeline drops from 438 ms/frame to 109 ms/frame and poseOnly from about 44 ms to 15 ms. Model outputs are unchanged.

      The two new helpers ImageUtils.matToFloat32Simd and matToFloat32ImageNetSimd use OpenCV's vectorized path and accept an optional caller buffer. Both are asserted equal to the per-pixel loops they replace: worst deviation 5.96e-8 (one float32 ULP) for the plain path, 7.15e-7 for the ImageNet affine. ImageUtils.matToFloat32 and matToFloat32ImageNet are retained.

    • Fix ImageUtils.cropAndResize returning CropMetadata built from pre-truncation floats while cropping an integral region. Callers mapped normalized coordinates against an origin up to 1px from where the crop actually began, and against a slightly too-large extent. Measured over the 311-image CatFLW holdout with real localizer boxes, this placed landmarks +0.61px right and +0.52px down of ground truth and cost 0.255 NME_IOD, rising to 1.14 at the 95th percentile, with 72% of images improved by the fix. The Python training pipelines normalize against the integer crop, so this also aligns inference with how the models were trained.

      This changes returned landmark coordinates. Downstream packages should bump their own pipeline version so cached detections re-evaluate.

    • Fix ModelDownloader.modelHrnet, which requested superanimal_hrnet_w32_256_float16.tflite while the release publishes superanimal_hrnet_w32_float16.tflite. AnimalPoseModel.hrnet therefore failed with an HTTP 404 on first use and had never worked. The private filename constant now derives from the public one so the two cannot drift.

    • Reject a configured input size that disagrees with the bundled model, via the new internal assertSquareInputSize. Interpreter.resizeInputTensor accepts a shape the model was not trained for without reporting an error, and inference then returns finite but meaningless values: feeding a 256px landmark model at 384px measured NME_IOD 67.3 against a correct 3.5 while every output stayed in range. All six model classes now validate against getInputTensor(0).shape at initialization.

    • Stop tracking .DS_Store files, which were included in the published archive.

    Open source →
  5. 1.4.0 24 Jul 2026
    Release notes
    • SSD anchors are now generated at runtime instead of shipping as a literal table. lib/src/models/ssd_anchors.dart was 12,944 lines, of which 12,936 were a single float literal each; the values are the deterministic output of TF OD API's create_ssd_anchors, which flutter_litert already exports as generateAnchors. The library drops from 15,222 to 2,355 lines and the compiled binary shrinks by about 32 KB.
    • Detection output is unchanged. Verified against the real SSDLite320 model over 9 images at 100 runs each: identical detection counts, bit-identical scores, and a worst-case box coordinate delta of 9.3e-05 px, which comes from the previous table having been rounded to 6 decimals while the generator is full float64. End-to-end timing is unchanged.
    • Anchors are now stored in centre form (cx, cy, w, h), which is what generateAnchors emits and what the box decoder consumes, removing a corner round-trip that ran on every anchor of every frame.
    • The exported anchor table is retained under test/fixtures/ as the equivalence reference. test/ssd_anchors_test.dart regenerates the anchors and diffs all 3,234 against it on every run, so a change to the generator or its configuration fails immediately.
    • Update flutter_litert -> 3.6.0.
    Open source →
  6. 1.3.3 11 Jul 2026
    Release notes
    • Update flutter_litert -> 3.5.0
    Open source →
  7. 1.3.2 09 Jul 2026
    Release notes
    • Update flutter_litert -> 3.4.1
    Open source →
  8. 1.3.1 05 Jul 2026
    Release notes
    • Update flutter_litert -> 3.3.1
    Open source →
  9. 1.3.0 28 Jun 2026
    Release notes
    • Update flutter_litert -> 3.2.0
    • Import native-only flutter_litert APIs via package:flutter_litert/native.dart so they resolve under static analysis (flutter_litert 3.2.0 moved InterpreterPool and InterpreterFactory behind the native conditional export). No runtime or API change.
    Open source →
  10. 1.2.3 15 Jun 2026
    Release notes
    • Update flutter_litert -> 3.1.1
    Open source →
  11. 1.2.2 15 Jun 2026
    Release notes
    • Update flutter_litert -> 3.1.0
    Open source →
  12. 1.2.1 07 Jun 2026
    Release notes
    • Update flutter_litert -> 2.8.3
    Open source →
  13. 1.2.0 30 May 2026
    Release notes
    • Update flutter_litert -> 2.8.0
    • Complete Swift Package Manager migration: example apps build via SPM without CocoaPods
    Open source →
  14. 1.1.1 25 May 2026
    Release notes
    • Remove unused Darwin podspecs for Dart-only iOS/macOS plugin registration.
    Open source →
  15. 1.1.0 25 May 2026
    Release notes
    • Update flutter_litert -> 2.5.8
    Open source →
  16. 1.0.12 23 May 2026
    Release notes
    • Update flutter_litert -> 2.5.5
    Open source →
  17. 1.0.11 22 May 2026
    Release notes
    • Update flutter_litert -> 2.5.4
    Open source →
  18. 1.0.10 19 May 2026
    Release notes
    • Update flutter_litert -> 2.5.3
    Open source →
  19. 1.0.9 05 May 2026
    Release notes
    • Update flutter_litert -> 2.5.2
    Open source →
  20. 1.0.8 28 Apr 2026
    Release notes
    • Update flutter_litert -> 2.5.0
    Open source →
  21. 1.0.7 28 Apr 2026
    Release notes
    • Update flutter_litert -> 2.4.1
    Open source →
  22. 1.0.6 24 Apr 2026
    Release notes
    • Update flutter_litert -> 2.4.0
    Open source →
  23. 1.0.5 24 Apr 2026
    Release notes
    • Update flutter_litert -> 2.3.0
    Open source →
  24. 1.0.4 21 Apr 2026
    Release notes
    • Update flutter_litert -> 2.2.0
    Open source →
  25. 1.0.3 17 Apr 2026
    Release notes
    • Update flutter_litert -> 2.1.0
    Open source →
  26. 1.0.2 15 Apr 2026
    Release notes
    • Update flutter_litert to 2.0.13
    Open source →
  27. 1.0.1 14 Apr 2026
    Release notes
    • Update flutter_litert -> 2.0.12
    Open source →
  28. 1.0.0 04 Apr 2026
    Release notes
    • First stable release. On-device animal detection, species/breed classification, and 24-point body pose estimation using TensorFlow Lite. Supports Android, iOS, macOS, Windows, and Linux with automatic hardware acceleration.
    Open source →
  29. 0.0.8 30 Mar 2026
    Release notes
    • Update documentation
    Open source →
  30. 0.0.7 29 Mar 2026
    Release notes
    • Update flutter_litert 2.0.8 -> 2.0.10
    Open source →
  31. 0.0.6 29 Mar 2026
    Release notes
    • Enable auto hardware acceleration by default (XNNPACK on all native platforms, Metal GPU on iOS)
    • Update flutter_litert 2.0.6 -> 2.0.8
    Open source →
  32. 0.0.5 22 Mar 2026
    Release notes
    • Propagate useIsolateInterpreter flag through model initialization
    Open source →
  33. 0.0.4 17 Mar 2026
    Release notes
    • Add macOS Swift Package Manager support.
    Open source →
  34. 0.0.3 14 Mar 2026
    Release notes
    • Add shared face detection infrastructure for species-specific packages
    Open source →
  35. 0.0.2 13 Mar 2026
    Release notes
    • Add iOS Swift Package Manager support.
    Open source →
  36. 0.0.1 13 Mar 2026
    Release notes
    • Initial release: SSD body detection, species classification, and SuperAnimal pose estimation.
    Open source →

Every package, every release, already written down.

The archive is open and free. Watching your own project is what we are building next.

Browse the archive