Questions tagged [photosphere]

Photosphere is a feature of the Android OS that was introduced in Android 4.2 Jelly Bean.

Photosphere is a feature of the Android OS that was introduced in Android 4.2 Jelly Bean. The photosphere feature allows users to take multiple pictures with their device's camera and map them to a sphere which gives them a 360 degree scrollable photo. Users can also upload their photospheres to Google Maps for others to view.

64 questions
0
votes
2 answers

dotted lines are showingup in an image of a photosphere

i have created a photosphere and added an equirectangular shader inside the sphere and then i have added the image.the issue is ("dotted lines are shown on the image how to solve it?)you can see the dotted lines there is distortion of the image the …
0
votes
1 answer

XML view for android photosphere?

I see google has an API for embedding Google Cardboard panaromas into an app with the VrPanoramaView, but i am looking for a xml view to correctly handle google's own PhotoSphere images from its Google Camera app. I do not want it to externally load…
Dreamers Org
  • 1,151
  • 3
  • 12
  • 30
0
votes
1 answer

Street view panorama doesn't work in a div

I'm trying to embed a street view panorama on a website as explained here. It works well when I do that :
but it doesn't work when i put the #map in a other div, like that :
iAmoric
  • 1,787
  • 3
  • 31
  • 64
0
votes
1 answer

How to open photosphere via URL from Google Maps in own android app

I'm a rookie android developer. I'm working on app which opens panoramas (photosphere 360 images) directly from google maps not from images stored on device like on example here. @Override public void onConnected(Bundle connectionHint) { Uri uri =…
zieti7
  • 1
0
votes
1 answer

Photo sphere image upload validation

I'm trying to make my photo sphere gallery with MVC C#. Is there any way to test an image that is a real sphere image? A library or something? I'm currently having an upload button and I save the image's path in the Database. But I would like to…
Coder
  • 886
  • 1
  • 12
  • 28
0
votes
1 answer

How do i update/change the photosphere/skybox at runtime in Unity3D?

Something similar to 360 Photo Player VR I want to be able to let the user add and store new photospheres in app but i'm not sure how to do it.
0
votes
1 answer

Default to "compass" (gyroscope) mode when viewing a photosphere

I want to use the photosphere viewer from the PanoramaAPI in my application. The code that I am using is the "panorama" sample code from the Google Play Services samples. The default mode allows manual zooming and panning, but some devices also…
0
votes
2 answers

How to develop “360 flat image view” in “panorama view” for web application

My friend wanted me to find “360 jpg image (Taken by phone) in panorama mode in web application”. What would be the best technology for develop that module. Are there are any open source technology/libraries, reference materials or any tutorials?
Sadun89
  • 144
  • 1
  • 2
  • 12
0
votes
1 answer

Photosphere viewer explanation

I am trying to build my custom Photosphere viewer to run using SDL2 and a custom IMU I purchased. So far, I have managed to read IMU values, open the .jpg and display it using SDL2. My issue is how to make sense IMU data to read parts of the jpg…
Jary316
  • 291
  • 1
  • 4
  • 15
0
votes
1 answer

Android Photosphere Code Samples

I'm looking for good Android code samples for Photosphere, particularly for Google Glass if possible. I've found some basic documentation here https://developers.google.com/photo-sphere/android/ and here…
0
votes
1 answer

Save photosphere image uncompressed to storage

I'm trying to get a photosphere image from server which run PHP. I fetch the image using the universal image loader library. And then, after I got the bitmap, I save it to the sd card, and then on other activity, I try to open the photosphere image…
0
votes
1 answer

Edit EXIF GPSAltitudeRef in Sanselan

I'm attempting to add the XMP data required for submission to Google Views for a panoramic image processor, however my images aren't being accepted by Google as Photospheres. The XMP data is exactly the same in my JPEG as one generated by the Google…
beek
  • 3,522
  • 8
  • 33
  • 86
0
votes
1 answer

using photoSphere in my app

I'm using this code to use photoSphere in my android app: @Override public void onConnected(Bundle connectionHint) { uri = Uri.parse("android.resource://" + getPackageName() + "/" + R.raw.mu1); mClient.loadPanoramaInfo(this, uri); } and…
Libathos
  • 3,340
  • 5
  • 36
  • 61
0
votes
1 answer

Embedding multiple streetviews but only one visible at a time

I'm trying to embed multiple streetview panoramas (technically photospheres) that take up the full page - only one will be visible at a time. I thought i would create separate panoramas and attach them to different divs, hiding all but the active…
chris_huh
  • 69
  • 1
  • 1
  • 6
0
votes
1 answer

Android - How to embed local image into an Activity and display with Photo Sphere on 4.2+?

I am trying to load a photo sphere image into an activity and view it like one does in the Gallery. I cannot seem to find any examples or samples of this functionality anywhere on the web. Documentation PanoramaClient Thoughts, examples, code sets…