I would like to convert the 360 degree Panorama image captured from Cardboard camera programmatically into an image that can be displayed in vr-view in android. This is the website that I used to handle the conversion: http://storage.googleapis.com/cardboard-camera-converter/index.html as suggested here
This is my current work flow:
- Capture image through Cardboard camera
- Upload to website for conversion
- Download stereo 360 format
- Display in android app.
I want to automate this process such that I would not have to manually drop an image into the website for conversion and then download it. Is there an API I can hit for this functionality? Or any additions in code that would help me achieve this?
Thank you.