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
Copy file name to clipboardExpand all lines: samples/augmented_image_c/app/src/main/java/com/google/ar/core/examples/c/augmentedimage/AugmentedImageActivity.java
+10-1Lines changed: 10 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,16 @@
31
31
importjavax.microedition.khronos.egl.EGLConfig;
32
32
importjavax.microedition.khronos.opengles.GL10;
33
33
34
-
/** This is a simple example that shows how to use ARCore AugmentedImage C API. */
34
+
/**
35
+
* This is a simple example that shows how to use ARCore AugmentedImage C API.
36
+
*
37
+
* <p>In this example, we assume all images are static or moving slowly with a large occupation of
38
+
* the screen. If the target is actively moving, we recommend to check
39
+
* ArAugmentedImage_getTrackingMethod() and render only when the tracking method equals to
40
+
* AR_AUGMENTED_IMAGE_TRACKING_METHOD_FULL_TRACKING. See details in <a
41
+
* href="https://developers.google.com/ar/develop/c/augmented-images/">Recognize and Augment
Copy file name to clipboardExpand all lines: samples/augmented_image_c/app/src/main/java/com/google/ar/core/examples/c/augmentedimage/JniInterface.java
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,17 @@
1
+
/*
2
+
* Copyright 2019 Google Inc. All Rights Reserved.
3
+
* Licensed under the Apache License, Version 2.0 (the "License");
4
+
* you may not use this file except in compliance with the License.
5
+
* You may obtain a copy of the License at
6
+
*
7
+
* http://www.apache.org/licenses/LICENSE-2.0
8
+
*
9
+
* Unless required by applicable law or agreed to in writing, software
10
+
* distributed under the License is distributed on an "AS IS" BASIS,
11
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+
* See the License for the specific language governing permissions and
0 commit comments