Is the video record with LookExtension private in my application?

Thanks @ewpatton for your help with the BLE extesion.
Now I need to know if when we use the LookExtesion to classify objects, is the video record with the WebViewer accesible for someone that not be a user of my application? Because I need it to be seen only by the possible users of the app, that could be children on the other hand. Those images must not seen by anyone else.

1 Like

Hi @Jose,

The data are not recorded at all–the video in the WebViewer is ephemeral. When you call LookExtension.ClassifyVideoData, it takes a single frame from the camera, classifies it, and returns the result. In this extension, the classification model is run entirely on the phone’s GPU using Tensorflow.js. You can, for example, put the phone into Airplane Mode and it will still work because no Internet connectivity is required.

1 Like