Questions tagged [android-augmented-reality]

214 questions
0
votes
1 answer

Using custom 3D objects with ARCore Augmented Faces

I am trying to use multiple custom objects to be placed on the face using ARCore SDK. I import the face mesh FBX file provided by Google in the SDK using Blender and place my custom object relative to the face mesh. then I remove the face mesh and…
0
votes
0 answers

i'm using flutter plugin arcore_flutter_plugin: for Augmented Reality but i got error again and again in android studio

The error is given below e: /Users/apple/development/flutter/.pub-cache/hosted/pub.dartlang.org/arcore_flutter_plugin-0.1.0-null-safety.3/android/src/main/kotlin/com/difrancescogianmarco/arcore_flutter_plugin/ArcoreFlutterPlugin.kt: (32, 74): Type…
0
votes
0 answers

How can I make a navigation app using augmented reality in unity?

I want to make a navigation application using augmented reality in unity. How can I do this without using the AR+GPS Location asset? Are there alternatives to AR+GPS Location? I imported the 3D version of the place I will navigate to unity and…
0
votes
0 answers

Facing issues with SceneForm Android

I tried using multiple versions of the Google SceneForm Library. But ARFragment is not compatible with the Android fragment. So I even tried using the supported SceneForm Library. But I get a white screen (instead of the Virtual Scene) when I run it…
0
votes
1 answer

World Locking Tools + Azure Spatial Anchors sample running on Android - issue with changing position of SpacePins

I'm currently having issues trying to run the "PinTestSofa" scene (unity) on Android. This one: https://learn.microsoft.com/en-us/mixed-reality/world-locking-tools/documentation/howtos/samples/wlt_asa_sample I followed all the recommended steps…
0
votes
1 answer

How can i detect which node tapped in ArCore Flutter

I need to detect which node tapped in ArCore in flutter arCoreController!.onNodeTap = (name) => onTapHandler(name); didn't get the expected name.
0
votes
1 answer

How to get correct position of West and East in 3D/AR view?

I was following this tutorial and when I tried to use it for AR compass, I got wrong positions for East and West (I get West on left side (270°)). Problematic part: fun Place.getPositionVector(azimuth: Float, latLng: LatLng): Vector3 { val…
bounxye
  • 183
  • 5
  • 13
0
votes
1 answer

How to stop tracking a image in ARcore

I when I use the augemnted image function,the program will stuck in tracking state. case TRACKING: fitToScanView.setVisibility(View.GONE); if (!augmentedImageMap.containsKey(augmentedImage)) { …
0
votes
1 answer

how to display first two objects in loop of anchor in sceneform ARcCore

if (frame.getCamera().getTrackingState() == TrackingState.TRACKING && anchorsts && !placed) { Session session = arFragment.getArSceneView().getSession(); String type = "fwd"; int distance = 0; …
0
votes
1 answer

How can I load .glb model from server in scene 1.16.0

This is my code but 3d model not showing after tracking. placeObject(arFragment, augmentedImage.createAnchor(augmentedImage.getCenterPose()), Uri.parse("http://vzor.ir/model.glb")); private void placeObject(ArFragment arFragment, Anchor anchor, Uri…
0
votes
2 answers

Google AR Core enabled Devices

We have created one mobile app, that is Google AR Core based. So naturally users have to have AR Core enabled device. I have two questions mentioned below: Is there any other option for users not having AR Core enabled device but have smart phone &…
0
votes
1 answer

Is it okay to create an anchor for every object in sceneform?

I am making an app where I would have to display a lot of objects and they need to stay where they are initialized. I started by creating an anchor and making all the objects as Node that are going to be children of that anchor. This works if the…
0
votes
0 answers

ARCore: 3DCoordinates of all points in a camera frame

This is my first time with android development. I wanted to get the 3D coordinates of all the points in the current camera frame and store this information along with the image. I came across anchors where you can get position of the anchors wrt to…
0
votes
1 answer

Android Augmented Reality Render Engine

I want to start developing a new Android Augmented Reality app and I am not sure which render engine to use. I heard that sceneform is deprecated (Google Sceneform – Is it deprecated? Any replacement?). Are there any recommondations recommendations…
0
votes
1 answer

how to change background of the augmented_faces_java sample in ARCore?

as you know this is the sample of fox filter appears in front the face but I want to change that the fox filter should appear in front of an image. I mean the only difference is: the display will show an image at background not a person. Do you have…