Ask Your Question

ivorscott's profile - activity

2020-02-10 11:37:50 -0600 received badge  Notable Question (source)
2018-04-12 09:08:03 -0600 received badge  Popular Question (source)
2016-09-30 20:01:41 -0600 received badge  Editor (source)
2016-09-30 19:39:03 -0600 asked a question React Native and opencv

Has anyone heard of this before? https://facebook.github.io/react-native/

I'm building an app that needs to do image recognition, then find an image match based on a small number of pre-set images.

Example: When a user takes a picture from their phone, I want to compare that picture with all pre-defined pictures in the folder in order to find an image match.

In react native you use javascript to build "native" apps (its not a web view) for Android and IOS. This is very bleeding edge https://github.com/facebook/react-native (38,000+ stars).

My Solution: I thought about sending the user's image to the server and doing opencv work in the server, (where I know it works) then sending data back.

Thoughts?