AI animal recognition by photo in mobile app

TRUETECH is engaged in the development, support and maintenance of iOS, Android, PWA mobile applications. We have extensive experience and expertise in publishing mobile applications in popular markets like Google Play, App Store, Amazon, AppGallery and others.

Development and support of all types of mobile applications:

Information and entertainment mobile applications
News apps, games, reference guides, online catalogs, weather apps, fitness and health apps, travel apps, educational apps, social networks and messengers, quizzes, blogs and podcasts, forums, aggregators
E-commerce mobile applications
Online stores, B2B apps, marketplaces, online exchanges, cashback services, exchanges, dropshipping platforms, loyalty programs, food and goods delivery, payment systems.
Business process management mobile applications
CRM systems, ERP systems, project management, sales team tools, financial management, production management, logistics and delivery management, HR management, data monitoring systems
Electronic services mobile applications
Classified ads platforms, online schools, online cinemas, electronic service platforms, cashback platforms, video hosting, thematic portals, online booking and scheduling platforms, online trading platforms

These are just some of the types of mobile applications we work with, and each of them may have its own specific features and functionality, tailored to the specific needs and goals of the client.

Showing 1 of 1All 1735 services
AI animal recognition by photo in mobile app
Medium
from 4 hours to 2 days
Frequently Asked Questions

Our competencies:

Development stages

Latest works

  • image_mobile-applications_feedme_467_0.webp
    Development of a mobile application for FEEDME
    792
  • image_mobile-applications_xoomer_471_0.webp
    Development of a mobile application for XOOMER
    671
  • image_mobile-applications_rhl_428_0.webp
    Development of a mobile application for RHL
    1097
  • image_mobile-applications_zippy_411_0.webp
    Development of a mobile application for ZIPPY
    969
  • image_mobile-applications_affhome_429_0.webp
    Development of a mobile application for Affhome
    914
  • image_mobile-applications_flavors_409_0.webp
    Development of a mobile application for the FLAVORS company
    495

Animal Recognition from Photos in Mobile Applications

Similar architecture to plant recognition, but with a key difference: animals move. User photographs a bird on a branch—it flies off while they raise their phone. Beyond classification accuracy, consider capture speed and recognition of blurred shots.

Choosing a Model for the Task

Task depends heavily on target animal class:

Category Ready API / Model Species Count
Birds Merlin Bird ID (Cornell Lab API), iNaturalist 10,000+
Wildlife iNaturalist API, INat Seek SDK 100,000+ taxa
Fish iNaturalist, FishVerify API 30,000+
Pet breeds Google Cloud Vision, custom CoreML 200–400 breeds
Insects iNaturalist, iNat Seek 500,000+ species

For most projects with mixed audience, iNaturalist API is optimal: broad taxonomic database, confidence score at species/genus/family level (honest at low photo quality), mobile SDK available—Seek with on-device model for iOS and Android.

iNaturalist Seek SDK Integration on Android

class AnimalRecognitionManager(private val context: Context) {

    // Seek uses TFLite model ~15MB
    private val seekModel by lazy {
        SeekClassifier(context, modelPath = "seek_v2.tflite")
    }

    fun recognizeFromBitmap(bitmap: Bitmap): List<TaxonResult> {
        val resized = Bitmap.createScaledBitmap(bitmap, 299, 299, true)
        val results = seekModel.classify(resized)

        return results
            .filter { it.score > 0.15f }
            .sortedByDescending { it.score }
            .map { result ->
                TaxonResult(
                    taxonId = result.taxonId,
                    name = result.name,
                    commonName = result.commonName,
                    rank = result.rank,          // SPECIES, GENUS, FAMILY
                    confidence = result.score,
                    photoUrl = result.defaultPhotoUrl
                )
            }
    }
}

Rank matters for UI: if species confidence is 30%, show "Family Fringillidae (85%)" rather than specific species with low confidence.

Fast Capture for Moving Objects

// iOS: frame buffering to select sharpest
class AnimalCaptureViewController: UIViewController {
    private var frameBuffer: [CMSampleBuffer] = []
    private let bufferSize = 10  // last 10 frames

    func captureOutput(_ output: AVCaptureOutput,
                       didOutput sampleBuffer: CMSampleBuffer,
                       from connection: AVCaptureConnection) {
        frameBuffer.append(sampleBuffer)
        if frameBuffer.count > bufferSize {
            frameBuffer.removeFirst()
        }
    }

    // On button tap—pick sharpest frame from buffer
    func captureWithMotionCompensation() -> UIImage? {
        return frameBuffer
            .compactMap { UIImage(from: $0) }
            .max(by: { sharpnessScore($0) < sharpnessScore($1) })
    }
}

This approach reduces blurred shots by ~3x versus normal capturePhoto().

Timeline Estimates

Integrating one API or Seek SDK with basic UI—1 day. Adding frame buffering, best shot selection, animal card with description and links (Wikipedia, iNaturalist), recognition history, iOS + Android—up to 2 days on basic task, up to 1.5 weeks for custom requirements.