You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are getting access to camera using getUserMedia() using different MediaTrack constraints and settings and then take a picture using takePhoto(). As of now, we are displaying the image on a canvas. It would be useful to save the image somewhere (maybe filesystem, like WICG's nativefilesystem) and then we can browse through the gallery. For filters/ we display using cv.imshow(), so we need to explore cv2.imwrite('result.png',img) on browsers.
Similarly for loading images from gallery to camera app, atleast on Android we can use the File/Photo Picker or the Photo/Video Picker which Kenneth reported.
The text was updated successfully, but these errors were encountered:
We are getting access to camera using
getUserMedia()
using different MediaTrack constraints and settings and then take a picture usingtakePhoto()
. As of now, we are displaying the image on a canvas. It would be useful to save the image somewhere (maybe filesystem, like WICG's nativefilesystem) and then we can browse through the gallery. For filters/ we display usingcv.imshow()
, so we need to explorecv2.imwrite('result.png',img)
on browsers.Similarly for loading images from gallery to camera app, atleast on Android we can use the File/Photo Picker or the Photo/Video Picker which Kenneth reported.
The text was updated successfully, but these errors were encountered: