
Ditutup
Disiarkan
Dibayar semasa penghantaran
I want an app that scans the phone’s camera roll, recognises the same person across different shots, and then lets me decide exactly which images to forward. The core flow is simple: • First, the app analyses every photo, clusters faces that it believes belong to the same individual and shows me those groupings. • From there, I can pick pictures one-by-one or bulk-select them in three distinct ways: individually, by date range, or by geolocation. This mirrors the way I already think about my library, so the interface needs to surface those three filters prominently and let me combine them if I wish. • Once I have a final selection, the app should open the standard share sheet so I can send the chosen files through any installed channel (Messages, WhatsApp, AirDrop, e-mail, etc.). Accuracy is key: false positives in face grouping must be minimal, and whenever the algorithm is unsure, it should simply place the photo in an “Unsorted” bucket so I can manually move it. I’m happy for you to use Apple’s Vision/Core ML, Google ML Kit, OpenCV or another proven face-clustering library—whatever offers reliable on-device processing and keeps users’ photos private. Deliverables 1. A fully functional mobile app (native or cross-platform) that runs on at least one major platform. 2. Automatic face clustering with an easy way to correct mistakes. 3. Filters that let me select photos individually, by date range, or by geolocation. 4. Share-out workflow that passes the selected images to the system share sheet. 5. Source code and setup instructions so I can compile and test on my own device. If you already have experience implementing face detection and efficient photo filtering, this should be a straightforward build. Let me know the tech stack you’d prefer and any similar work you’ve completed.
ID Projek: 40236261
56 cadangan
Projek jarak jauh
Aktif 22 hari yang lalu
Tetapkan bajet dan garis masa anda
Dapatkan bayaran untuk kerja anda
Tuliskan cadangan anda
Ianya percuma untuk mendaftar dan membida pekerjaan
56 pekerja bebas membida secara purata $556 USD untuk pekerjaan ini

Hi, Before I build this, quick checks: ✔️ Should clustering run fully upfront, or progressively as you browse (faster first launch)? ✔️ Do you want “same person across years” merged, or split by time gaps to reduce false matches? ✔️ Should location filtering be list-based (fast) or map-based (visual)? Build approach (on-device): ➡️ iOS Swift using PhotoKit + Apple Vision (no uploads) ➡️ Face embeddings stored locally (CoreData/SQLite) for fast re-open ➡️ Clustering via distance-threshold + DBSCAN-style grouping (tunable) ➡️ Low-confidence faces go to “Unsorted” automatically ➡️ Manual fix: long-press photo → Move to group / Create new group ➡️ Background batch processing + progress indicator (avoids UI freezing) ➡️ Date + geo indexed once so filters are instant (no rescans) ➡️ Bulk select supports: individual, date range, location, and combined filters ➡️ Final export uses PHAsset fetch + temp staging, then opens iOS Share Sheet Deliverables: ✔️ Working app ✔️ Source code + build steps ✔️ Threshold setting for accuracy tuning One open choice: whether we expose a “strict vs relaxed matching” toggle in settings. iOS-first (Swift/Vision) or Android-first (Kotlin/ML Kit)?
$250 USD dalam 7 hari
9.1
9.1

Hello, I’d love to build your Smart Photo Selector App. I’ll create a smooth, privacy‑focused solution that clusters faces accurately and keeps uncertain matches in an Unsorted bucket for manual review. Using on-device frameworks like Apple Vision, ML Kit, or OpenCV, I’ll ensure minimal false positives and fast processing even on large libraries. The interface will highlight your three essential filters, individual, date range, and geolocation, and allow combinations for intuitive selection. Once finalized, the app will pass chosen images directly to the system’s native share sheet. I’ll deliver a fully functional mobile app, source code, and setup instructions so you can compile and test easily. Best regards, Ahtesham
$700 USD dalam 21 hari
7.6
7.6

I have extensive experience in Mobile App Development, iPhone, Android, C# Programming, and Face Recognition which align perfectly with the requirements of the "Smart Photo Selector App" project. The budget can be adjusted as per the project scope. I am confident and eager to begin working on this project. Please review my 15-year-old profile to see my past work. Your satisfaction is my priority, and I am ready to start working on the project to demonstrate my commitment. Looking forward to discussing the project details with you.
$525 USD dalam 10 hari
6.9
6.9

⭐⭐⭐⭐⭐ CnELIndia, led by Raman Ladhani, can help you achieve your app vision through a structured approach combining cutting-edge tech and proven expertise. Here's how we can contribute: Face Clustering: We'll utilize Apple’s Vision/Core ML for iOS or Google ML Kit for Android, integrating robust on-device face recognition. This ensures accurate face clustering with minimal false positives, with “Unsorted” for manual verification. Intuitive Filters: The app interface will prominently feature filters to select images by individual, date range, or geolocation, matching your mental model and enhancing user experience. Customizable Share Flow: We’ll implement a seamless share-out workflow, enabling you to send selected images via Messages, WhatsApp, AirDrop, email, etc., through the native share sheet. Proven Mobile Development: Using Flutter or Swift for iOS, and Kotlin/Java for Android, we will deliver a reliable, cross-platform app, ensuring performance across devices. Source Code & Support: We’ll provide complete source code, setup instructions, and continuous support for easy testing and customization.
$500 USD dalam 7 hari
7.0
7.0

Hello, I will develop your SMART PHOTO SELECTION MOBILE APPLICATION for Android and IOS both platforms with Web admin panel. I am Tulsiram. I have 10 years of experience working as Native and Crossplatform mobile application developer. I am understood your requirements. I am glad if we are working together. If you interested then let's connect. I will provide you Daily updates ,source code after development completed, 1 Year maintenance Support in following Steps: I will available daily 10-12 hours in Working days for you. I will provide you regular updates according to which modules we will decided. After approval each module by you then i will provide your complete source code of your project and will shift on your Domain. Thanks
$250 USD dalam 22 hari
6.6
6.6

Your face-clustering logic will fail if you don't account for lighting variations and partial occlusions - I've seen apps group the same person into 4 different clusters because indoor vs outdoor shots confused the embedding model. This isn't just an accuracy problem, it destroys the user experience when someone has to manually fix 200 misclassified photos. Before I map out the architecture, I need clarity on two things: What's your target photo library size - are we talking 500 images or 50,000? That determines whether I use on-device clustering or need to batch-process in the background. Second, do you need this to work offline permanently, or can the initial scan happen when WiFi is available? That affects whether I use Apple Vision (instant but iOS-only) or a cross-platform solution. Here's the technical approach: - FACE RECOGNITION + OPENCV: I'll use dlib's face embeddings with DBSCAN clustering to group faces, then add a confidence threshold that routes uncertain matches to your "Unsorted" bucket automatically. This prevents the false-positive problem you're worried about. - CORE ML + VISION FRAMEWORK: For iOS, I'll leverage Apple's built-in face detection to handle lighting variations and partial profiles, then run a secondary pass with custom embeddings to verify clusters. This two-stage approach cuts misclassification by 60% compared to single-pass systems. - ANDROID ML KIT + ROOM DATABASE: On Android, I'll use ML Kit for detection and cache face vectors in Room so re-scans don't hammer the CPU. I'll index photos by EXIF timestamp and GPS coordinates to make your date/location filters instant even with 10K+ images. - CROSS-PLATFORM SHARE SHEET: I'll use native share APIs (UIActivityViewController on iOS, Intent.ACTION_SEND on Android) so your selected photos flow directly into any installed app without custom integrations. I've built 3 similar photo-management apps, including one for a healthcare client that needed HIPAA-compliant face detection in patient records. The clustering accuracy hit 94% after tuning the distance threshold, and the app handled libraries with 30K photos without lag. Let's schedule a 15-minute call to walk through edge cases - specifically how you want the app to handle duplicate faces in group photos and whether you need version control when someone manually overrides a cluster.
$450 USD dalam 10 hari
6.3
6.3

Hello, I’m a mobile developer with 12+ years of experience building AI-powered iOS and Android apps. For this project, I recommend native iOS (Swift + Vision/Core ML) or Flutter with ML Kit, ensuring accurate on-device face clustering with full privacy. I’ll implement automatic grouping with an “Unsorted” bucket for low-confidence matches, plus flexible filtering by individual selection, date range, and geolocation (combinable). The final selection will integrate seamlessly with the system share sheet. You’ll receive complete source code and setup instructions. Estimated timeline: 4–5 weeks. Happy to share similar face-recognition work. Regards, Manish
$500 USD dalam 7 hari
6.2
6.2

Hi, there, I specialize in developing intelligent solutions for image processing and mobile applications. With a keen focus on face recognition and efficient photo filtering, I am confident in creating a Smart Photo Selector App tailored to your requirements. ✅ Leveraging my expertise in iOS and Android development, I will implement face clustering with minimal false positives and offer manual correction options. ✅ The app will feature filters for selecting photos individually, by date range, or geolocation, enhancing user experience. ✅ Upon final selection, the share-out workflow will seamlessly integrate with various communication channels for effortless sharing. ✅ I will utilize proven face-clustering libraries like Apple's Vision/Core ML to ensure accurate and private on-device processing. ✅ Delivering a user-friendly interface with privacy and accuracy in mind, I am excited to develop a reliable solution that meets your needs. I look forward to working with you. Best Regards.
$500 USD dalam 5 hari
5.8
5.8

Hello, Thank you so much for posting this opportunity. It sounds like a great fit, and I’d love to be part of it! I’ve worked on similar projects before, and I’m confident I can bring real value to your project. I’m passionate about what I do and always aim to deliver work that’s not only high-quality but also makes things easier and smoother for my clients. Feel free to take a quick look at my profile to see some of the work I’ve done in the past. If it feels like a good match, I’d be happy to chat further about your project and how I can help bring it to life. I’m available to get started right away and will give this project my full attention from day one. Let’s connect and see how we can make this a success together! Looking forward to hearing from you soon. With Regards! Abhishek Saini
$750 USD dalam 7 hari
5.9
5.9

Hello, I am an expert with 15+ years of experience in the technical world, delivering simple to complex websites, e-commerce platforms, membership systems, and custom portals. I ensure clear communication, continued support after delivery, and 100% client satisfaction. I specialize in Mobile App Development, creating fast, user-friendly, and feature-rich apps for both Android and iOS. My focus is on modern UI/UX, API integration, real-time features, and cross-platform compatibility, ensuring your app is scalable and future-ready. If you are looking for a dedicated Mobile App Developer who delivers quality, innovation, and timely results, I’d be happy to bring your project to life. Best regards,
$250 USD dalam 7 hari
5.7
5.7

Sorting through hundreds of photos just to find the right ones of a single person is exhausting, especially when your current photo app keeps mixing up faces or buries the filters you actually need. It’s even more frustrating when you can’t trust the grouping, or the app makes it hard to select by date or place, slowing you down every time you want to share just a few images. With this Smart Photo Selector App, you’ll quickly see all your photos clustered by who’s in them, with almost no mistakes. You’ll breeze through selections using clear filters for date and location, and only share the images you want. First, your camera roll will be scanned privately on your device, with faces grouped for quick review. Then, you’ll easily pick images using the filters you already rely on. Finally, sharing will be one tap through your favorite channels. Which platform would you like to launch on first?
$484 USD dalam 7 hari
5.3
5.3

I’ve built a photo management app before that grouped faces and let users filter by date and location, so your concept is very familiar. To minimize false positives, I’d rely on Apple’s Vision framework if targeting iOS, since it’s reliable and keeps processing on device. For filtering, I suggest combining UI elements for date and location into a dynamic filter panel so you can apply them together smoothly, as you want. One question: do you want the face clustering running just once on demand, or continuously updated as new photos come in? Also, for the “Unsorted” bucket, would you want drag-and-drop to move photos into clusters, or a tap-to-assign approach? I can deliver a clean app with accurate face grouping, flexible filters, and a share sheet flow that fits your screen and gestures. I’ll provide complete source code and setup steps so you can test anytime. Ready to start turning this idea into a working tool.
$250 USD dalam 7 hari
4.5
4.5

Hi there, I have experience building mobile apps with on-device face detection and photo processing, and can develop a privacy-focused app that clusters faces accurately and allows selection by person, date, and location. I’ll implement reliable face grouping with an “Unsorted” fallback, plus a seamless share-sheet workflow and easy manual corrections. You’ll receive clean source code, clear setup instructions, and a fully testable app ready on your device. One day delivery ,
$820 USD dalam 1 hari
4.6
4.6

Hi, I’m interested in this opportunity upon reviewing the project requirements, As a experienced Mobile App Developer with over 8 years of hands-on experience in Mobile app development, I am excited about the opportunity to collaborate on this project and am committed to ensuring your complete satisfaction with the final outcome. My Skills & Expertise: -Native iOS : Swift -Native Android : Java, , Android Studio, Kotlin -Cross Platform : Flutter, React Native -Firebase, Python, Node.js Thank you for considering me for this invaluable project opportunity. I look forward to discussing the details with you soon. Best Regards, Pawan
$500 USD dalam 16 hari
5.7
5.7

As an accomplished Full Stack Developer with over 14 years of solid experience, I am highly proficient in numerous languages and frameworks including Android, C#, iOS Development, Mobile App Development, and OpenCV -- just to name a few. My expertise particularly encompasses digital image processing, Microsoft Vision APIs and other similar AI technologies best suited for this job. For a task as complex as yours, I will take advantage of my knack for technology and algorithms to implement an efficient, on-device face recognition system. I can assure you of a user-friendly app that delivers accurate results with minimal false positives. And if the algorithm ever wavers in its judgment, don't worry! I'll make sure all doubtful images go straight to an "Unsorted" bucket so you can sort them personally. In addition to developing a robust and intelligent photo selector application for you, here are four key things you gain by working with me: creativity to provide flexible bulk select options which mirror your current thinking process with your photo library; persistent dedication to keeping your photo library private at every processing stage; the ability to deliver a fully functional mobile app optimized for at least one major platform; and the assurance of receiving clean and maintainable code plus comprehensive documentation for easy future compilation and testing by yourself. Overall,
$750 USD dalam 10 hari
5.3
5.3

Hi, I am an expert full stack developer with skills including iPhone, OpenCV, iOS Development, Android, Mobile App Development, C# Programming, Android App Development and Face Recognition. After reviewing the project requirements, I found the project perfectly match my experience and skills. Having previously worked on similar projects, I'm confident I can complete this project perfectly. To move forward, Please send a message to discuss more regarding this project. A fast response is appreciated
$250 USD dalam 4 hari
3.5
3.5

I recently completed a media management tool that utilized on-device machine learning for real-time asset categorization, so I’m very familiar with the challenges of scanning large local libraries efficiently. For your Smart Photo Selector, the goal is to create a seamless experience where the app handles the heavy lifting of facial clustering without compromising user privacy or device performance. I can implement a solution that doesn't just recognize faces but intelligently groups them into actionable sets, allowing the user to manage their gallery with minimal effort and high accuracy. To achieve this, I’ll leverage Apple’s Vision framework or Google’s ML Kit to extract unique facial embeddings directly on the device, ensuring the app remains fast and secure. I plan to use a clustering algorithm like DBSCAN to group these embeddings into distinct "person" profiles, even when lighting or angles vary significantly between shots. The architecture will involve a reactive background processing pipeline to prevent UI lag during the initial library scan, paired with an SQLite or Realm database to cache embeddings for instant retrieval. I’ll also integrate a selection logic layer that evaluates image quality—checking for focus, exposure, and open eyes—to help the app suggest the absolute best photos from each identified group. Do you have a preference for the tech stack, such as a native iOS/Android approach for maximum performance or a cross-platform framework like Flutter? Also, should the app handle recurring scans automatically as the user takes new photos, or will it be a manual "cleanup" trigger? I’m happy to hop on a quick chat or call to refine these technical details and ensure the logic matches your vision for the user experience.
$615 USD dalam 21 hari
3.1
3.1

Hello, I hope you are doing well. I’m a seasoned mobile developer focused on privacy-first, on-device ML-driven photo tools. I design clean, fast apps that respect user data while delivering powerful features, especially around face recognition and media organization. I’ve built on-device face clustering and smart filtering using Vision/Core ML, ML Kit, or OpenCV, with robust error handling so uncertain shots land in an Unsorted bucket for easy manual correction. The app will cluster faces, surface three primary filters, by date range, by geolocation, and by individual, to mirror how you think about your library, and allow bulk or single selections that feed directly into the system share sheet for Messages, WhatsApp, AirDrop, email, etc. The architecture prioritizes privacy and offline processing, with clear UI to correct misclassifications. I’m confident I can deliver a polished, private solution that meets your exact flow: automatic clustering, flexible filtering, and seamless sharing. I’ll align on your preferred tech stack and deliver a clean, testable codebase with setup instructions. Please feel free to contact me so we can discuss more details. I am looking forward to the chance of working together. Best regards, Billy Bryan
$250 USD dalam 7 hari
3.1
3.1

Hi there! Are you looking for a developer to build a smart photo app that recognises the same person across your camera roll and lets you quickly select and share the right images? Right? I’m glad to tell you I’ve worked on photo and AI-powered mobile features before, including image processing and on-device ML. I’ve been a professional mobile app developer for 7+ years and can definitely build your face-clustering photo app with high accuracy and a smooth UX. I can deliver:- Face Clustering App:- On-device face detection & clustering (Vision/Core ML or ML Kit) Privacy-first processing (no cloud uploads) “Unsorted” bucket for low-confidence matches Easy manual correction of clusters Smart Photo Filtering:- Individual photo selection Date-range filtering Geolocation filtering Combine filters for precise selection Sharing & Delivery:- Native share sheet integration Smooth performance with large libraries Clean, intuitive UI focused on speed Full source code + setup docs Tech stack: Swift (iOS) or Flutter + native ML bridges, depending on your preference. Please contact me via chat so we can discuss your platform choice and timeline. Thanks & Regards. Prateek
$500 USD dalam 7 hari
1.0
1.0

Hello, I would like to grab this opportunity and will work until you are 100% satisfied with my work. I am an experienced professional with many years of hands-on experience in Mobile App Development, iPhone, Android, C# Programming, Face Recognition, OpenCV, iOS Development, Android App Development Let’s connect in chat so that we can discuss further. Regards, Rajesh Rolen
$500 USD dalam 7 hari
0.0
0.0

Langsa, Indonesia
Ahli sejak Okt 19, 2025
$250-750 USD
₹600-1500 INR
$250-750 USD
₹37500-75000 INR
$100 USD
$250-750 USD
₹12500-37500 INR
$250-750 USD
₹12500-37500 INR
$250-750 USD
$250-750 USD
$10-30 USD
$25-50 USD / jam
€250-750 EUR
₹12500-37500 INR
min $50 USD / jam
$10-30 USD
$1500-3000 USD
₹1500-12500 INR
$750-1500 USD
$100 USD