IBM / ar-resume-with-visual-recognition

An augmented reality based résumé with Face recognition. The iOS app recognizes the face and presents you with the AR view that contains 3D mock face and details of your resume.
https://developer.ibm.com/patterns/create-an-augmented-reality-application-with-facial-detection/
Apache License 2.0
73 stars 26 forks source link

Strip cloudant #51

Closed sanjeevghimire closed 5 years ago

sanjeevghimire commented 5 years ago
christiancompton commented 5 years ago

@sanjeevghimire @stevemart Can you explain the motivation behind removing cloudant from this application?

stevemar commented 5 years ago

@christiancompton TL;DR: much simpler setup, and less code (+121 −396) to maintain.

The point of the app is to showcase ARKit, CoreML, and Watson VisRec. We get the visual recognition data from photos to create the CoreML mode. The last step is to use ARKit to display some meaningful information, we initially thought this app would just displaying the confidence score from Watson VisRec, but decided to give it more information with sample "resume data" in a database. The feedback is that the information shown will differ between use cases and just makes a long setup that much more cumbersome (it requires a curl call for each entry).

sanjeevghimire commented 5 years ago

@christiancompton In addition to what Steve said, there were numerous calls to Cloudant when the camera detects a face, to get the info back from cloudant which used up the lite quota in no time. This solution would address that as well.