Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Memory leak Hand tracking mediaPipe #1758

Closed
PopoTeaTree opened this issue Mar 17, 2021 · 12 comments
Closed

Memory leak Hand tracking mediaPipe #1758

PopoTeaTree opened this issue Mar 17, 2021 · 12 comments
Assignees
Labels
legacy:hands Hand tracking/gestures/etc platform:android Issues with Android as Platform type:support General questions

Comments

@PopoTeaTree
Copy link

I build hand tracking aar file(Android) from https://google.github.io/mediapipe/getting_started/android_archive_library.html#steps-to-build-a-mediapipe-aar. Then I found cash from a memory leak.
https://ibb.co/09VwBYc
Any suggestion?

@sgowroji sgowroji self-assigned this Mar 17, 2021
@sgowroji sgowroji added platform:android Issues with Android as Platform legacy:hands Hand tracking/gestures/etc stat:awaiting response Waiting for user response type:support General questions labels Mar 17, 2021
@sgowroji
Copy link

Hi @PopoTeaTree https://ibb.co/09VwBYc is empty, Could you please share the logs.

@PopoTeaTree
Copy link
Author

Screenshot from 2021-03-17 16-27-13

@PopoTeaTree
Copy link
Author

Screenshot from 2021-03-17 17-22-59

@sgowroji sgowroji removed the stat:awaiting response Waiting for user response label Mar 18, 2021
@sgowroji sgowroji assigned jiuqiant and unassigned sgowroji Mar 19, 2021
@sgowroji sgowroji added the stat:awaiting googler Waiting for Google Engineer's Response label Mar 19, 2021
@jiuqiant jiuqiant assigned sgowroji and unassigned jiuqiant Mar 19, 2021
@sgowroji sgowroji assigned camillol and unassigned sgowroji Mar 20, 2021
@mcclanahoochie
Copy link

Can you paste the entire logcat?
The 2nd screenshot provided doesn't capture any memory errors or crashes, and I believe is a normal message to see.

Also, can you explain what the first screenshot is showing? It is hard to see what is going on with no labels and other information, so I do not see signs of a memory leak

Which phone do you have?

Have you tried analyzing any of the other MediaPipe demos? Does the hand tracking without AAR have the same problem?

@sgowroji
Copy link

Hi @PopoTeaTree, Could you please provide the details requested in the above comment. Thanks!

@sgowroji sgowroji added stat:awaiting response Waiting for user response and removed stat:awaiting googler Waiting for Google Engineer's Response labels Apr 16, 2021
@PopoTeaTree
Copy link
Author

Thanks for response !!!
I used bazel build to create ARR file for Hand tracking first and then the hand tracking automatic close. The graph below show that the yellow area (graphic memory) of graph increase more and more, then when it go on the peak point (The memory full and the application automatic close).
569f2f8ae3bd49fd08fdc2edeb1588a8 (1)
But Multi-hand tracking from MediaPipe example does not get memory problem. (https://github.com/jiuqiant/mediapipe_multi_hands_tracking_aar_example)
6b0b128abc16685c05f3f02702b18a0c
Then I tried to lookup at class allocation it showed the bye[] class use the most memory allocate and it came from FrameProcessor library.
image

Moreover, I teird to Bazel build again with hand tracking and multi hand tracking AAR files, but it got the same problem. Then I also rebuild the both hand tracking graph by cutting all detect graphic in render node (detections, landmarks, rect, handness). The rebuild with cutting detect graphic has memory leak problem too, but it took more time before the application automatic close by itself with the same trend of graph.

In addition, before I build AAR file I use only Tensorflow files for hand tracking (https://github.com/metalwhale/hand_tracking) and did not get any error.

P.S. Sorry for my English, if it did not clear please tell me.

@PopoTeaTree
Copy link
Author

`apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'

android {
compileSdkVersion 29
buildToolsVersion "29.0.2"

defaultConfig {
    applicationId "com.example.handtracking_16"
    minSdkVersion 21
    targetSdkVersion 29
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
    }
}
compileOptions {
    targetCompatibility = 1.8
    sourceCompatibility = 1.8
}

}

dependencies {
implementation fileTree(dir: "libs", include: [".jar",'.aar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.core:core-ktx:1.3.1'
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
implementation files('libs/exp4j-0.4.7.jar')
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
implementation 'com.squareup.retrofit2:retrofit:2.4.0'
implementation 'com.squareup.retrofit2:converter-gson:2.2.0'
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.preference:preference:1.1.1'
//noinspection GradleCompatible
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'com.google.android.material:material:1.1.0-alpha09'

implementation files('libs/exp4j-0.4.7.jar')

def lifecycle_version = "2.2.0"
// ViewModel
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version"
// LiveData
implementation "androidx.lifecycle:lifecycle-livedata-ktx:$lifecycle_version"
// Lifecycles only (without ViewModel or LiveData)
implementation "androidx.lifecycle:lifecycle-runtime-ktx:$lifecycle_version"
// alternately - if using Java8, use the following instead of lifecycle-compiler
implementation "androidx.lifecycle:lifecycle-common-java8:$lifecycle_version"

// Saved state module for ViewModel
implementation "androidx.lifecycle:lifecycle-viewmodel-savedstate:$lifecycle_version"
// optional - helpers for implementing LifecycleOwner in a Service
implementation "androidx.lifecycle:lifecycle-service:$lifecycle_version"

//
// // optional - ProcessLifecycleOwner provides a lifecycle for the whole application process
// implementation "androidx.lifecycle:lifecycle-process:$lifecycle_version"
//
// // optional - ReactiveStreams support for LiveData
// implementation "androidx.lifecycle:lifecycle-reactivestreams-ktx:$lifecycle_version"

// MediaPipe deps
implementation 'com.google.flogger:flogger:0.3.1'
implementation 'com.google.flogger:flogger-system-backend:0.3.1'
implementation 'com.google.code.findbugs:jsr305:3.0.2'
implementation 'com.google.guava:guava:27.0.1-android'
implementation 'com.google.guava:guava:27.0.1-android'
implementation 'com.google.protobuf:protobuf-java:3.11.4'
// CameraX core library
def camerax_version = "1.0.0-alpha06"
implementation "androidx.camera:camera-core:$camerax_version"
implementation "androidx.camera:camera-camera2:$camerax_version"

}`

@PopoTeaTree
Copy link
Author

The device that I used is Galaxy TabA10.0, Galaxy TabA8.0, Galaxy S9+, Galaxy TabS6 lite. The testing that showed in comment from TabS6 lite (https://www.gsmarena.com/samsung_galaxy_tab_s6_lite-10158.php).

@sgowroji sgowroji added stat:awaiting googler Waiting for Google Engineer's Response and removed stat:awaiting response Waiting for user response labels Apr 19, 2021
@sgowroji
Copy link

Hi @PopoTeaTree We need a Logcat report, while the issue is reproducible. Thanks!

@sgowroji sgowroji added stat:awaiting response Waiting for user response and removed stat:awaiting googler Waiting for Google Engineer's Response labels Apr 19, 2021
@PopoTeaTree
Copy link
Author

2021-04-19 14:48:32.835 10992-10992/com.example.handtracking_16 E/Zygote: isWhitelistProcess - Process is Whitelisted
2021-04-19 14:48:32.836 10992-10992/com.example.handtracking_16 E/Zygote: accessInfo : 1
2021-04-19 14:48:32.842 10992-10992/com.example.handtracking_16 I/handtracking_1: Late-enabling -Xcheck:jni
2021-04-19 14:48:32.869 10992-10992/com.example.handtracking_16 E/handtracking_1: Unknown bits set in runtime_flags: 0x8000
2021-04-19 14:48:32.882 10992-10992/com.example.handtracking_16 D/ActivityThread: setConscryptValidator
2021-04-19 14:48:32.882 10992-10992/com.example.handtracking_16 D/ActivityThread: setConscryptValidator - put
2021-04-19 14:48:33.270 10992-10992/com.example.handtracking_16 D/Camera2Initializer: CameraX initializing with Camera2 ...
2021-04-19 14:48:33.278 10992-10992/com.example.handtracking_16 I/CameraManagerGlobal: Connecting to camera service
2021-04-19 14:48:33.280 10992-10992/com.example.handtracking_16 D/VendorTagDescriptor: addVendorDescriptor: vendor tag id 3854507339 added
2021-04-19 14:48:33.282 10992-11015/com.example.handtracking_16 I/CameraManagerGlobal: Camera 0 facing CAMERA_FACING_BACK state now CAMERA_STATE_CLOSED for client org.tensorflow.lite.examples.detection API Level 1
2021-04-19 14:48:33.283 10992-11015/com.example.handtracking_16 I/CameraManagerGlobal: Camera 1 facing CAMERA_FACING_FRONT state now CAMERA_STATE_CLOSED for client com.example.handtracking_16 API Level 2
2021-04-19 14:48:33.283 10992-11011/com.example.handtracking_16 I/CameraManagerGlobal: Camera 2 facing CAMERA_FACING_FRONT state now CAMERA_STATE_CLOSED for client android.system API Level 2
2021-04-19 14:48:33.297 10992-10992/com.example.handtracking_16 D/CameraRepository: Added camera: 0
2021-04-19 14:48:33.309 10992-11026/com.example.handtracking_16 D/UseCaseAttachState: Active and online use case: [] for camera: 0
2021-04-19 14:48:33.310 10992-10992/com.example.handtracking_16 I/CameraManagerGlobal: postSingleUpdate device: camera id 0 status STATUS_PRESENT
2021-04-19 14:48:33.310 10992-10992/com.example.handtracking_16 I/CameraManagerGlobal: postSingleUpdate device: camera id 1 status STATUS_PRESENT
2021-04-19 14:48:33.311 10992-10992/com.example.handtracking_16 D/CameraRepository: Added camera: 1
2021-04-19 14:48:33.313 10992-10992/com.example.handtracking_16 I/CameraManagerGlobal: postSingleUpdate device: camera id 0 status STATUS_PRESENT
2021-04-19 14:48:33.314 10992-11026/com.example.handtracking_16 D/UseCaseAttachState: Active and online use case: [] for camera: 1
2021-04-19 14:48:33.314 10992-10992/com.example.handtracking_16 I/CameraManagerGlobal: postSingleUpdate device: camera id 1 status STATUS_PRESENT
2021-04-19 14:48:33.439 10992-10992/com.example.handtracking_16 D/PhoneWindow: forceLight changed to true [] from com.android.internal.policy.PhoneWindow.updateForceLightNavigationBar:4268 com.android.internal.policy.DecorView.updateColorViews:1494 com.android.internal.policy.PhoneWindow.dispatchWindowAttributesChanged:3246 android.view.Window.setFlags:1148 com.android.internal.policy.PhoneWindow.generateLayout:2474
2021-04-19 14:48:33.440 10992-10992/com.example.handtracking_16 I/MultiWindowDecorSupport: updateCaptionType >> DecorView@525a9f9[], isFloating: false, isApplication: true, hasWindowDecorCaption: false, hasWindowControllerCallback: true
2021-04-19 14:48:33.440 10992-10992/com.example.handtracking_16 D/MultiWindowDecorSupport: setCaptionType = 0, DecorView = DecorView@525a9f9[]
2021-04-19 14:48:33.500 10992-10992/com.example.handtracking_16 W/handtracking_1: Accessing hidden method Landroid/view/View;->computeFitSystemWindows(Landroid/graphics/Rect;Landroid/graphics/Rect;)Z (greylist, reflection, allowed)
2021-04-19 14:48:33.500 10992-10992/com.example.handtracking_16 W/handtracking_1: Accessing hidden method Landroid/view/ViewGroup;->makeOptionalFitsSystemWindows()V (greylist, reflection, allowed)
2021-04-19 14:48:33.529 10992-10992/com.example.handtracking_16 I/native: I20210419 14:48:33.529193 10992 asset_manager_util.cc:59] Created global reference to asset manager.
2021-04-19 14:48:33.533 10992-10992/com.example.handtracking_16 E/libEGL: validate_display:244 error 3008 (EGL_BAD_DISPLAY)
2021-04-19 14:48:33.533 10992-10992/com.example.handtracking_16 I/mali_egl: eglDestroySurface() in
2021-04-19 14:48:33.533 10992-10992/com.example.handtracking_16 I/mali_egl: eglDestroySurface() out
2021-04-19 14:48:33.545 10992-10992/com.example.handtracking_16 I/native: I20210419 14:48:33.545358 10992 gl_context_egl.cc:158] Successfully initialized EGL. Major : 1 Minor: 4
2021-04-19 14:48:33.547 10992-11042/com.example.handtracking_16 I/native: I20210419 14:48:33.547204 11042 gl_context.cc:324] GL version: 3.2 (OpenGL ES 3.2 v1.r19p0-01rel0.###other-sha0123456789ABCDEF0###)
2021-04-19 14:48:33.548 10992-10992/com.example.handtracking_16 D/PermissionHelper: checkAndRequestCameraPermissions
2021-04-19 14:48:33.549 10992-10992/com.example.handtracking_16 D/PermissionHelper: checkAndRequestCameraPermissions
2021-04-19 14:48:33.561 10992-11043/com.example.handtracking_16 D/GlThread: Starting GL thread ExternalTextureConverter
2021-04-19 14:48:33.579 10992-10992/com.example.handtracking_16 I/Camera2CameraInfo: Device Level: INFO_SUPPORTED_HARDWARE_LEVEL_LIMITED
2021-04-19 14:48:33.619 10992-11026/com.example.handtracking_16 D/Camera: Use cases [Preview:androidx.camera.core.Preview-9b8d15f6-a36c-4b4f-9475-bfeb852ceae8] ONLINE for camera 1
2021-04-19 14:48:33.620 10992-11026/com.example.handtracking_16 D/UseCaseAttachState: Active and online use case: [] for camera: 1
2021-04-19 14:48:33.620 10992-11026/com.example.handtracking_16 D/Camera: Resetting Capture Session
2021-04-19 14:48:33.621 10992-11026/com.example.handtracking_16 D/Camera: releasing session in state INITIALIZED
2021-04-19 14:48:33.622 10992-11026/com.example.handtracking_16 D/Camera: No cameras available. Waiting for available camera before opening camera: 1
2021-04-19 14:48:33.622 10992-11026/com.example.handtracking_16 D/Camera: Transitioning camera internal state: INITIALIZED --> PENDING_OPEN
2021-04-19 14:48:33.622 10992-11026/com.example.handtracking_16 D/Camera: Use case Preview:androidx.camera.core.Preview-9b8d15f6-a36c-4b4f-9475-bfeb852ceae8 ACTIVE for camera 1
2021-04-19 14:48:33.622 10992-11026/com.example.handtracking_16 D/UseCaseAttachState: Active and online use case: [androidx.camera.core.Preview-9b8d15f6-a36c-4b4f-9475-bfeb852ceae8] for camera: 1
2021-04-19 14:48:33.638 10992-10992/com.example.handtracking_16 D/ViewRootImpl@1d0af4e[MainActivity]: setView = com.android.internal.policy.DecorView@525a9f9 TM=true MM=false
2021-04-19 14:48:33.642 10992-11026/com.example.handtracking_16 D/Camera: Transitioning camera internal state: PENDING_OPEN --> OPENING
2021-04-19 14:48:33.642 10992-11026/com.example.handtracking_16 D/Camera: Opening camera: 1
2021-04-19 14:48:33.642 10992-11026/com.example.handtracking_16 D/UseCaseAttachState: All use case: [androidx.camera.core.Preview-9b8d15f6-a36c-4b4f-9475-bfeb852ceae8] for camera: 1
2021-04-19 14:48:33.649 10992-10992/com.example.handtracking_16 D/SurfaceView: onWindowVisibilityChanged(0) true android.view.SurfaceView{7c04c8b V.E...... ......I. 0,0-0,0} of ViewRootImpl@1d0af4e[MainActivity]
2021-04-19 14:48:33.652 10992-11011/com.example.handtracking_16 I/CameraManagerGlobal: postSingleUpdate device: camera id 1 status STATUS_NOT_AVAILABLE
2021-04-19 14:48:33.652 10992-11011/com.example.handtracking_16 I/CameraManagerGlobal: postSingleUpdate device: camera id 1 status STATUS_NOT_AVAILABLE
2021-04-19 14:48:33.655 10992-11011/com.example.handtracking_16 I/CameraManagerGlobal: Camera 1 facing CAMERA_FACING_FRONT state now CAMERA_STATE_OPEN for client com.example.handtracking_16 API Level 2
2021-04-19 14:48:33.663 10992-11026/com.example.handtracking_16 D/Camera: CameraDevice.onOpened(): 1
2021-04-19 14:48:33.663 10992-11026/com.example.handtracking_16 D/Camera: Transitioning camera internal state: OPENING --> OPENED
2021-04-19 14:48:33.663 10992-11026/com.example.handtracking_16 D/UseCaseAttachState: All use case: [androidx.camera.core.Preview-9b8d15f6-a36c-4b4f-9475-bfeb852ceae8] for camera: 1
2021-04-19 14:48:33.667 10992-10992/com.example.handtracking_16 D/ViewRootImpl@1d0af4e[MainActivity]: Relayout returned: old=(0,0,1200,2000) new=(0,0,1200,2000) req=(1200,2000)0 dur=8 res=0x7 s={true 492308455424} ch=true
2021-04-19 14:48:33.668 10992-11027/com.example.handtracking_16 D/OpenGLRenderer: createReliableSurface : 0x729b61b6c0(0x729fdee000)
2021-04-19 14:48:33.670 10992-11027/com.example.handtracking_16 D/OpenGLRenderer: makeCurrent EglSurface : 0x0 -> 0x0
2021-04-19 14:48:33.675 10992-11027/com.example.handtracking_16 I/mali_winsys: new_window_surface() [1200x2000] return: 0x3000
2021-04-19 14:48:33.676 10992-10992/com.example.handtracking_16 D/SurfaceView: surfaceCreated 1 #8 android.view.SurfaceView{7c04c8b V.E...... ......ID 0,0-450,600}
2021-04-19 14:48:33.677 10992-11042/com.example.handtracking_16 I/mali_winsys: new_window_surface() [450x600] return: 0x3000
2021-04-19 14:48:33.677 10992-10992/com.example.handtracking_16 D/SurfaceView: surfaceChanged (450,600) 1 #8 android.view.SurfaceView{7c04c8b V.E...... ......ID 0,0-450,600}
2021-04-19 14:48:33.687 10992-11027/com.example.handtracking_16 D/OpenGLRenderer: makeCurrent EglSurface : 0x0 -> 0x729b607d80
2021-04-19 14:48:33.691 10992-11027/com.example.handtracking_16 W/Gralloc3: mapper 3.x is not supported
2021-04-19 14:48:33.694 10992-11027/com.example.handtracking_16 I/gralloc: Arm Module v1.0
2021-04-19 14:48:33.749 10992-10992/com.example.handtracking_16 D/ViewRootImpl@1d0af4e[MainActivity]: Relayout returned: old=(0,0,1200,2000) new=(0,0,1200,2000) req=(1200,2000)0 dur=4 res=0x1 s={true 492308455424} ch=false
2021-04-19 14:48:33.751 10992-10992/com.example.handtracking_16 D/ViewRootImpl@1d0af4e[MainActivity]: MSG_WINDOW_FOCUS_CHANGED 1 1
2021-04-19 14:48:33.751 10992-10992/com.example.handtracking_16 D/InputMethodManager: prepareNavigationBarInfo() DecorView@525a9f9[MainActivity]
2021-04-19 14:48:33.751 10992-10992/com.example.handtracking_16 D/InputMethodManager: getNavigationBarColor() -855310
2021-04-19 14:48:33.754 10992-10992/com.example.handtracking_16 D/InputMethodManager: prepareNavigationBarInfo() DecorView@525a9f9[MainActivity]
2021-04-19 14:48:33.754 10992-10992/com.example.handtracking_16 D/InputMethodManager: getNavigationBarColor() -855310
2021-04-19 14:48:33.754 10992-10992/com.example.handtracking_16 V/InputMethodManager: Starting input: tba=com.example.handtracking_16 ic=null mNaviBarColor -855310 mIsGetNaviBarColorSuccess true , NavVisible : true , NavTrans : false
2021-04-19 14:48:33.754 10992-10992/com.example.handtracking_16 D/InputMethodManager: startInputInner - Id : 0
2021-04-19 14:48:33.754 10992-10992/com.example.handtracking_16 I/InputMethodManager: startInputInner - mService.startInputOrWindowGainedFocus
2021-04-19 14:48:33.757 10992-10992/com.example.handtracking_16 D/ViewRootImpl@1d0af4e[MainActivity]: MSG_RESIZED: frame=(0,0,1200,2000) ci=(0,36,0,72) vi=(0,36,0,72) or=1
2021-04-19 14:48:33.757 10992-11026/com.example.handtracking_16 D/CaptureSession: Opening capture session.
2021-04-19 14:48:33.760 10992-10992/com.example.handtracking_16 D/InputMethodManager: prepareNavigationBarInfo() DecorView@525a9f9[MainActivity]
2021-04-19 14:48:33.760 10992-10992/com.example.handtracking_16 D/InputMethodManager: getNavigationBarColor() -855310
2021-04-19 14:48:33.760 10992-10992/com.example.handtracking_16 V/InputMethodManager: Starting input: tba=com.example.handtracking_16 ic=null mNaviBarColor -855310 mIsGetNaviBarColorSuccess true , NavVisible : true , NavTrans : false
2021-04-19 14:48:33.760 10992-10992/com.example.handtracking_16 D/InputMethodManager: startInputInner - Id : 0
2021-04-19 14:48:33.819 10992-11026/com.example.handtracking_16 D/CaptureSession: Attempting to send capture request onConfigured
2021-04-19 14:48:33.819 10992-11026/com.example.handtracking_16 D/CaptureSession: Issuing request for session.
2021-04-19 14:48:33.824 10992-11026/com.example.handtracking_16 D/CaptureSession: CameraCaptureSession.onConfigured() mState=OPENED
2021-04-19 14:48:33.825 10992-11026/com.example.handtracking_16 D/CaptureSession: CameraCaptureSession.onReady() OPENED
2021-04-19 14:48:33.825 10992-11011/com.example.handtracking_16 W/Gralloc3: allocator 3.x is not supported
2021-04-19 14:48:34.316 10992-11012/com.example.handtracking_16 I/CameraManagerGlobal: Camera 1 facing CAMERA_FACING_FRONT state now CAMERA_STATE_ACTIVE for client com.example.handtracking_16 API Level 2
2021-04-19 14:48:34.333 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 2 width: 1072 height: 1072
2021-04-19 14:48:34.349 10992-11043/com.example.handtracking_16 I/native: I20210419 14:48:34.349825 11043 graph.cc:411] Start running the graph, waiting for inputs.
2021-04-19 14:48:34.350 10992-11043/com.example.handtracking_16 I/native: I20210419 14:48:34.350055 11043 gl_context_egl.cc:158] Successfully initialized EGL. Major : 1 Minor: 4
2021-04-19 14:48:34.352 10992-11103/com.example.handtracking_16 I/native: I20210419 14:48:34.352026 11103 gl_context.cc:324] GL version: 3.2 (OpenGL ES 3.2 v1.r19p0-01rel0.###other-sha0123456789ABCDEF0###)
2021-04-19 14:48:34.398 10992-11042/com.example.handtracking_16 I/native: I20210419 14:48:34.398591 11042 resource_util_android.cc:55] Successfully loaded: palm_detection.tflite
2021-04-19 14:48:34.399 10992-11042/com.example.handtracking_16 I/tflite: Initialized TensorFlow Lite runtime.
2021-04-19 14:48:34.400 10992-11042/com.example.handtracking_16 I/tflite: Created TensorFlow Lite delegate for GPU.
2021-04-19 14:48:34.412 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 4 width: 1072 height: 1072
2021-04-19 14:48:34.422 10992-11101/com.example.handtracking_16 I/native: I20210419 14:48:34.422188 11101 jni_util.cc:41] GetEnv: not attached
2021-04-19 14:48:34.501 10992-11100/com.example.handtracking_16 I/native: I20210419 14:48:34.500972 11100 jni_util.cc:41] GetEnv: not attached
2021-04-19 14:48:34.580 10992-11102/com.example.handtracking_16 I/native: I20210419 14:48:34.580796 11102 jni_util.cc:41] GetEnv: not attached
2021-04-19 14:48:34.906 10992-11095/com.example.handtracking_16 I/native: I20210419 14:48:34.906114 11095 jni_util.cc:41] GetEnv: not attached
2021-04-19 14:48:34.984 10992-11096/com.example.handtracking_16 I/native: I20210419 14:48:34.983916 11096 jni_util.cc:41] GetEnv: not attached
2021-04-19 14:48:35.142 10992-11098/com.example.handtracking_16 I/native: I20210419 14:48:35.142844 11098 jni_util.cc:41] GetEnv: not attached
2021-04-19 14:48:35.382 10992-11097/com.example.handtracking_16 I/native: I20210419 14:48:35.382899 11097 jni_util.cc:41] GetEnv: not attached
2021-04-19 14:48:35.506 10992-11102/com.example.handtracking_16 I/native: I20210419 14:48:35.506217 11102 resource_util_android.cc:55] Successfully loaded: palm_detection_labelmap.txt
2021-04-19 14:48:35.701 10992-11042/com.example.handtracking_16 I/native: I20210419 14:48:35.701607 11042 resource_util_android.cc:55] Successfully loaded: hand_landmark.tflite
2021-04-19 14:48:35.708 10992-11042/com.example.handtracking_16 E/tflite: Following operations are not supported by GPU delegate:
DEQUANTIZE:
385 operations will run on the GPU, and the remaining 0 operations will run on the CPU.
2021-04-19 14:48:36.737 10992-11099/com.example.handtracking_16 I/native: I20210419 14:48:36.737757 11099 jni_util.cc:41] GetEnv: not attached
2021-04-19 14:48:37.042 10992-11095/com.example.handtracking_16 I/native: I20210419 14:48:37.042387 11095 resource_util_android.cc:55] Successfully loaded: handedness.txt
2021-04-19 14:48:37.131 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 6 width: 1072 height: 1072
2021-04-19 14:48:37.183 10992-11042/com.example.handtracking_16 I/native: I20210419 14:48:37.183147 11042 jni_util.cc:41] GetEnv: not attached
2021-04-19 14:48:37.255 10992-11102/com.example.handtracking_16 W/handtracking_1: Accessing hidden method Lsun/misc/Unsafe;->allocateInstance(Ljava/lang/Class;)Ljava/lang/Object; (greylist, linking, allowed)
2021-04-19 14:48:37.259 10992-11102/com.example.handtracking_16 W/handtracking_1: Accessing hidden method Llibcore/io/Memory;->peekLong(JZ)J (greylist, reflection, allowed)
2021-04-19 14:48:37.260 10992-11102/com.example.handtracking_16 W/handtracking_1: Accessing hidden method Llibcore/io/Memory;->pokeLong(JJZ)V (greylist, reflection, allowed)
2021-04-19 14:48:37.260 10992-11102/com.example.handtracking_16 W/handtracking_1: Accessing hidden method Llibcore/io/Memory;->pokeInt(JIZ)V (greylist, reflection, allowed)
2021-04-19 14:48:37.260 10992-11102/com.example.handtracking_16 W/handtracking_1: Accessing hidden method Llibcore/io/Memory;->peekInt(JZ)I (greylist, reflection, allowed)
2021-04-19 14:48:37.260 10992-11102/com.example.handtracking_16 W/handtracking_1: Accessing hidden method Llibcore/io/Memory;->pokeByte(JB)V (greylist, reflection, allowed)
2021-04-19 14:48:37.260 10992-11102/com.example.handtracking_16 W/handtracking_1: Accessing hidden method Llibcore/io/Memory;->peekByte(J)B (greylist, reflection, allowed)
2021-04-19 14:48:37.260 10992-11102/com.example.handtracking_16 W/handtracking_1: Accessing hidden method Llibcore/io/Memory;->pokeByteArray(J[BII)V (greylist, reflection, allowed)
2021-04-19 14:48:37.260 10992-11102/com.example.handtracking_16 W/handtracking_1: Accessing hidden method Llibcore/io/Memory;->peekByteArray(J[BII)V (greylist, reflection, allowed)
2021-04-19 14:48:37.260 10992-11102/com.example.handtracking_16 W/handtracking_1: Accessing hidden method Lsun/misc/Unsafe;->arrayBaseOffset(Ljava/lang/Class;)I (greylist,core-platform-api, linking, allowed)
2021-04-19 14:48:37.260 10992-11102/com.example.handtracking_16 W/handtracking_1: Accessing hidden method Lsun/misc/Unsafe;->arrayIndexScale(Ljava/lang/Class;)I (greylist, linking, allowed)
2021-04-19 14:48:37.261 10992-11102/com.example.handtracking_16 W/handtracking_1: Accessing hidden method Lsun/misc/Unsafe;->getInt(Ljava/lang/Object;J)I (greylist, linking, allowed)
2021-04-19 14:48:37.261 10992-11102/com.example.handtracking_16 W/handtracking_1: Accessing hidden method Lsun/misc/Unsafe;->getLong(Ljava/lang/Object;J)J (greylist,core-platform-api, linking, allowed)
2021-04-19 14:48:37.261 10992-11102/com.example.handtracking_16 W/handtracking_1: Accessing hidden method Lsun/misc/Unsafe;->getObject(Ljava/lang/Object;J)Ljava/lang/Object; (greylist, linking, allowed)
2021-04-19 14:48:37.261 10992-11102/com.example.handtracking_16 W/handtracking_1: Accessing hidden method Lsun/misc/Unsafe;->objectFieldOffset(Ljava/lang/reflect/Field;)J (greylist,core-platform-api, linking, allowed)
2021-04-19 14:48:37.261 10992-11102/com.example.handtracking_16 W/handtracking_1: Accessing hidden method Lsun/misc/Unsafe;->putInt(Ljava/lang/Object;JI)V (greylist, linking, allowed)
2021-04-19 14:48:37.261 10992-11102/com.example.handtracking_16 W/handtracking_1: Accessing hidden method Lsun/misc/Unsafe;->putLong(Ljava/lang/Object;JJ)V (greylist, linking, allowed)
2021-04-19 14:48:37.261 10992-11102/com.example.handtracking_16 W/handtracking_1: Accessing hidden method Lsun/misc/Unsafe;->putObject(Ljava/lang/Object;JLjava/lang/Object;)V (greylist, linking, allowed)
2021-04-19 14:48:37.262 10992-11102/com.example.handtracking_16 W/handtracking_1: Accessing hidden method Lsun/misc/Unsafe;->getLong(Ljava/lang/Object;J)J (greylist,core-platform-api, reflection, allowed)
2021-04-19 14:48:37.262 10992-11102/com.example.handtracking_16 W/handtracking_1: Accessing hidden field Ljava/nio/Buffer;->address:J (greylist, reflection, allowed)
2021-04-19 14:48:37.262 10992-11102/com.example.handtracking_16 W/handtracking_1: Accessing hidden method Lsun/misc/Unsafe;->getInt(Ljava/lang/Object;J)I (greylist, reflection, allowed)
2021-04-19 14:48:37.262 10992-11102/com.example.handtracking_16 W/handtracking_1: Accessing hidden method Lsun/misc/Unsafe;->putInt(Ljava/lang/Object;JI)V (greylist, reflection, allowed)
2021-04-19 14:48:37.262 10992-11102/com.example.handtracking_16 W/handtracking_1: Accessing hidden method Lsun/misc/Unsafe;->getLong(Ljava/lang/Object;J)J (greylist,core-platform-api, reflection, allowed)
2021-04-19 14:48:37.262 10992-11102/com.example.handtracking_16 W/handtracking_1: Accessing hidden method Lsun/misc/Unsafe;->putLong(Ljava/lang/Object;JJ)V (greylist, reflection, allowed)
2021-04-19 14:48:37.262 10992-11102/com.example.handtracking_16 W/handtracking_1: Accessing hidden method Lsun/misc/Unsafe;->getObject(Ljava/lang/Object;J)Ljava/lang/Object; (greylist, reflection, allowed)
2021-04-19 14:48:37.262 10992-11102/com.example.handtracking_16 W/handtracking_1: Accessing hidden method Lsun/misc/Unsafe;->putObject(Ljava/lang/Object;JLjava/lang/Object;)V (greylist, reflection, allowed)
2021-04-19 14:48:37.452 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 10 width: 1072 height: 1072
2021-04-19 14:48:38.256 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 11 width: 1072 height: 1072
2021-04-19 14:48:38.803 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 2 width: 1072 height: 1072
2021-04-19 14:48:40.631 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 11 width: 1072 height: 1072
2021-04-19 14:48:41.192 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 2 width: 1072 height: 1072
2021-04-19 14:48:41.273 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 12 width: 1072 height: 1072
2021-04-19 14:48:42.790 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 13 width: 1072 height: 1072
2021-04-19 14:48:42.869 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 14 width: 1072 height: 1072
2021-04-19 14:48:43.035 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 15 width: 1072 height: 1072
2021-04-19 14:48:44.065 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 4 width: 1072 height: 1072
2021-04-19 14:48:44.782 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 16 width: 1072 height: 1072
2021-04-19 14:48:45.499 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 2 width: 1072 height: 1072
2021-04-19 14:48:48.286 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 15 width: 1072 height: 1072
2021-04-19 14:48:48.764 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 17 width: 1072 height: 1072
2021-04-19 14:48:49.335 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 18 width: 1072 height: 1072
2021-04-19 14:48:49.873 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 2 width: 1072 height: 1072
2021-04-19 14:48:49.964 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 19 width: 1072 height: 1072
2021-04-19 14:48:50.679 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 21 width: 1072 height: 1072
2021-04-19 14:48:50.991 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 16 width: 1072 height: 1072
2021-04-19 14:48:52.024 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 18 width: 1072 height: 1072
2021-04-19 14:48:52.596 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 22 width: 1072 height: 1072
2021-04-19 14:48:54.096 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 16 width: 1072 height: 1072
2021-04-19 14:48:54.333 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 22 width: 1072 height: 1072
2021-04-19 14:48:54.816 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 21 width: 1072 height: 1072
2021-04-19 14:48:55.610 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 22 width: 1072 height: 1072
2021-04-19 14:48:56.183 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 23 width: 1072 height: 1072
2021-04-19 14:48:56.298 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 16 width: 1072 height: 1072
2021-04-19 14:48:56.409 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 24 width: 1072 height: 1072
2021-04-19 14:48:56.973 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 25 width: 1072 height: 1072
2021-04-19 14:48:57.521 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 21 width: 1072 height: 1072
2021-04-19 14:48:57.760 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 25 width: 1072 height: 1072
2021-04-19 14:48:58.324 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 26 width: 1072 height: 1072
2021-04-19 14:48:59.436 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 27 width: 1072 height: 1072
2021-04-19 14:49:00.801 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 28 width: 1072 height: 1072
2021-04-19 14:49:00.872 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 29 width: 1072 height: 1072
2021-04-19 14:49:00.953 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 30 width: 1072 height: 1072
2021-04-19 14:49:01.353 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 21 width: 1072 height: 1072
2021-04-19 14:49:02.063 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 31 width: 1072 height: 1072
2021-04-19 14:49:02.937 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 16 width: 1072 height: 1072
2021-04-19 14:49:03.021 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 32 width: 1072 height: 1072
2021-04-19 14:49:04.134 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 31 width: 1072 height: 1072
2021-04-19 14:49:04.377 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 30 width: 1072 height: 1072
2021-04-19 14:49:05.324 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 32 width: 1072 height: 1072
2021-04-19 14:49:05.566 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 33 width: 1072 height: 1072
2021-04-19 14:49:06.448 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 34 width: 1072 height: 1072
2021-04-19 14:49:06.678 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 31 width: 1072 height: 1072
2021-04-19 14:49:06.765 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 35 width: 1072 height: 1072
2021-04-19 14:49:07.077 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 30 width: 1072 height: 1072
2021-04-19 14:49:07.320 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 36 width: 1072 height: 1072
2021-04-19 14:49:09.148 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 34 width: 1072 height: 1072
2021-04-19 14:49:09.317 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 37 width: 1072 height: 1072
2021-04-19 14:49:10.508 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 35 width: 1072 height: 1072
2021-04-19 14:49:12.023 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 38 width: 1072 height: 1072
2021-04-19 14:49:12.571 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 36 width: 1072 height: 1072
2021-04-19 14:49:12.664 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 39 width: 1072 height: 1072
2021-04-19 14:49:13.618 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 40 width: 1072 height: 1072
2021-04-19 14:49:15.451 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 41 width: 1072 height: 1072
2021-04-19 14:49:15.691 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 42 width: 1072 height: 1072
2021-04-19 14:49:16.485 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 43 width: 1072 height: 1072
2021-04-19 14:49:18.153 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 38 width: 1072 height: 1072
2021-04-19 14:49:18.233 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 44 width: 1072 height: 1072
2021-04-19 14:49:18.632 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 45 width: 1072 height: 1072
2021-04-19 14:49:18.794 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 46 width: 1072 height: 1072
2021-04-19 14:49:19.670 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 47 width: 1072 height: 1072
2021-04-19 14:49:20.386 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 43 width: 1072 height: 1072
2021-04-19 14:49:21.189 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 48 width: 1072 height: 1072
2021-04-19 14:49:21.421 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 37 width: 1072 height: 1072
2021-04-19 14:49:22.217 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 49 width: 1072 height: 1072
2021-04-19 14:49:22.455 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 48 width: 1072 height: 1072
2021-04-19 14:49:23.420 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 50 width: 1072 height: 1072
2021-04-19 14:49:23.571 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 51 width: 1072 height: 1072
2021-04-19 14:49:24.852 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 52 width: 1072 height: 1072
2021-04-19 14:49:25.397 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 47 width: 1072 height: 1072
2021-04-19 14:49:25.489 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 53 width: 1072 height: 1072
2021-04-19 14:49:26.920 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 54 width: 1072 height: 1072
2021-04-19 14:49:27.398 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 55 width: 1072 height: 1072
2021-04-19 14:49:28.902 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 52 width: 1072 height: 1072
2021-04-19 14:49:29.381 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 49 width: 1072 height: 1072
2021-04-19 14:49:29.469 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 56 width: 1072 height: 1072
2021-04-19 14:49:29.858 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 52 width: 1072 height: 1072
2021-04-19 14:49:29.940 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 57 width: 1072 height: 1072
2021-04-19 14:49:31.375 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 56 width: 1072 height: 1072
2021-04-19 14:49:31.856 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 55 width: 1072 height: 1072
2021-04-19 14:49:32.657 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 56 width: 1072 height: 1072
2021-04-19 14:49:32.935 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 58 width: 1072 height: 1072
2021-04-19 14:49:32.955 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 59 width: 1072 height: 1072
2021-04-19 14:49:33.117 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 60 width: 1072 height: 1072
2021-04-19 14:49:33.147 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 61 width: 1072 height: 1072
2021-04-19 14:49:33.191 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 62 width: 1072 height: 1072
2021-04-19 14:49:33.214 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 63 width: 1072 height: 1072
2021-04-19 14:49:33.468 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 57 width: 1072 height: 1072
2021-04-19 14:49:33.851 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 60 width: 1072 height: 1072
2021-04-19 14:49:33.922 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 64 width: 1072 height: 1072
2021-04-19 14:49:36.790 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 65 width: 1072 height: 1072
2021-04-19 14:49:41.013 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 63 width: 1072 height: 1072
2021-04-19 14:49:42.292 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 66 width: 1072 height: 1072
2021-04-19 14:49:44.198 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 67 width: 1072 height: 1072
2021-04-19 14:49:45.161 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 68 width: 1072 height: 1072
2021-04-19 14:49:45.238 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 69 width: 1072 height: 1072
2021-04-19 14:49:46.038 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 70 width: 1072 height: 1072
2021-04-19 14:49:46.833 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 71 width: 1072 height: 1072
2021-04-19 14:49:47.781 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 72 width: 1072 height: 1072
2021-04-19 14:49:49.291 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 57 width: 1072 height: 1072
2021-04-19 14:49:50.172 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 68 width: 1072 height: 1072
2021-04-19 14:49:50.412 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 57 width: 1072 height: 1072
2021-04-19 14:49:50.963 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 72 width: 1072 height: 1072
2021-04-19 14:49:51.048 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 73 width: 1072 height: 1072
2021-04-19 14:49:51.999 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 57 width: 1072 height: 1072
2021-04-19 14:49:52.244 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 68 width: 1072 height: 1072
2021-04-19 14:49:52.339 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 74 width: 1072 height: 1072
2021-04-19 14:49:53.281 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 75 width: 1072 height: 1072
2021-04-19 14:49:54.393 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 76 width: 1072 height: 1072
2021-04-19 14:49:54.475 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 77 width: 1072 height: 1072
2021-04-19 14:49:58.139 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 78 width: 1072 height: 1072
2021-04-19 14:49:58.383 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 79 width: 1072 height: 1072
2021-04-19 14:49:58.614 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 57 width: 1072 height: 1072
2021-04-19 14:49:58.695 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 80 width: 1072 height: 1072
2021-04-19 14:49:59.572 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 73 width: 1072 height: 1072
2021-04-19 14:50:00.368 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 81 width: 1072 height: 1072
2021-04-19 14:50:01.807 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 82 width: 1072 height: 1072
2021-04-19 14:50:02.922 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 80 width: 1072 height: 1072
2021-04-19 14:50:04.432 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 79 width: 1072 height: 1072
2021-04-19 14:50:05.704 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 80 width: 1072 height: 1072
2021-04-19 14:50:05.941 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 82 width: 1072 height: 1072
2021-04-19 14:50:07.616 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 83 width: 1072 height: 1072
2021-04-19 14:50:07.775 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 84 width: 1072 height: 1072
2021-04-19 14:50:09.764 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 79 width: 1072 height: 1072
2021-04-19 14:50:10.004 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 80 width: 1072 height: 1072
2021-04-19 14:50:10.485 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 84 width: 1072 height: 1072
2021-04-19 14:50:11.601 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 85 width: 1072 height: 1072
2021-04-19 14:50:12.159 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 86 width: 1072 height: 1072
2021-04-19 14:50:12.477 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 87 width: 1072 height: 1072
2021-04-19 14:50:12.557 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 88 width: 1072 height: 1072
2021-04-19 14:50:13.743 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 79 width: 1072 height: 1072
2021-04-19 14:50:13.828 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 89 width: 1072 height: 1072
2021-04-19 14:50:14.235 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 90 width: 1072 height: 1072
2021-04-19 14:50:14.789 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 91 width: 1072 height: 1072
2021-04-19 14:50:16.543 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 92 width: 1072 height: 1072
2021-04-19 14:50:19.561 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 80 width: 1072 height: 1072
2021-04-19 14:50:19.801 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 88 width: 1072 height: 1072
2021-04-19 14:50:21.000 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 93 width: 1072 height: 1072
2021-04-19 14:50:22.434 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 80 width: 1072 height: 1072
2021-04-19 14:50:22.671 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 94 width: 1072 height: 1072
2021-04-19 14:50:22.752 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 95 width: 1072 height: 1072
2021-04-19 14:50:23.153 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 96 width: 1072 height: 1072
2021-04-19 14:50:24.103 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 97 width: 1072 height: 1072
2021-04-19 14:50:24.186 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 98 width: 1072 height: 1072
2021-04-19 14:50:24.426 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 93 width: 1072 height: 1072
2021-04-19 14:50:25.457 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 92 width: 1072 height: 1072
2021-04-19 14:50:25.706 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 99 width: 1072 height: 1072
2021-04-19 14:50:27.292 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 100 width: 1072 height: 1072
2021-04-19 14:50:27.531 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 101 width: 1072 height: 1072
2021-04-19 14:50:27.769 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 98 width: 1072 height: 1072
2021-04-19 14:50:28.569 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 102 width: 1072 height: 1072
2021-04-19 14:50:28.807 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 103 width: 1072 height: 1072
2021-04-19 14:50:29.366 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 104 width: 1072 height: 1072
2021-04-19 14:50:29.444 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 105 width: 1072 height: 1072
2021-04-19 14:50:29.842 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 106 width: 1072 height: 1072
2021-04-19 14:50:30.645 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 107 width: 1072 height: 1072
2021-04-19 14:50:31.436 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 108 width: 1072 height: 1072
2021-04-19 14:50:33.193 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 109 width: 1072 height: 1072
2021-04-19 14:50:33.986 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 110 width: 1072 height: 1072
2021-04-19 14:50:34.458 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 93 width: 1072 height: 1072
2021-04-19 14:50:34.934 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 110 width: 1072 height: 1072
2021-04-19 14:50:35.102 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 111 width: 1072 height: 1072
2021-04-19 14:50:35.974 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 101 width: 1072 height: 1072
2021-04-19 14:50:36.214 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 111 width: 1072 height: 1072
2021-04-19 14:50:36.771 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 93 width: 1072 height: 1072
2021-04-19 14:50:37.331 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 111 width: 1072 height: 1072
2021-04-19 14:50:38.281 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 93 width: 1072 height: 1072
2021-04-19 14:50:38.527 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 111 width: 1072 height: 1072
2021-04-19 14:50:39.086 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 112 width: 1072 height: 1072
2021-04-19 14:50:39.163 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 113 width: 1072 height: 1072
2021-04-19 14:50:40.113 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 101 width: 1072 height: 1072
2021-04-19 14:50:40.671 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 93 width: 1072 height: 1072
2021-04-19 14:50:40.756 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 114 width: 1072 height: 1072
2021-04-19 14:50:41.719 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 115 width: 1072 height: 1072
2021-04-19 14:50:42.502 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 113 width: 1072 height: 1072
2021-04-19 14:50:42.744 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 93 width: 1072 height: 1072
2021-04-19 14:50:43.463 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 115 width: 1072 height: 1072
2021-04-19 14:50:43.697 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 113 width: 1072 height: 1072
2021-04-19 14:50:43.939 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 116 width: 1072 height: 1072
2021-04-19 14:50:44.426 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 117 width: 1072 height: 1072
2021-04-19 14:50:46.011 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 118 width: 1072 height: 1072
2021-04-19 14:50:46.729 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 119 width: 1072 height: 1072
2021-04-19 14:50:46.889 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 120 width: 1072 height: 1072
2021-04-19 14:50:47.122 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 93 width: 1072 height: 1072
2021-04-19 14:50:47.206 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 121 width: 1072 height: 1072
2021-04-19 14:50:47.520 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 115 width: 1072 height: 1072
2021-04-19 14:50:48.008 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 122 width: 1072 height: 1072
2021-04-19 14:50:49.444 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 123 width: 1072 height: 1072
2021-04-19 14:50:51.673 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 124 width: 1072 height: 1072
2021-04-19 14:50:51.826 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 125 width: 1072 height: 1072
2021-04-19 14:50:53.816 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 121 width: 1072 height: 1072
2021-04-19 14:50:54.052 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 120 width: 1072 height: 1072
2021-04-19 14:50:55.171 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 125 width: 1072 height: 1072
2021-04-19 14:50:55.411 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 126 width: 1072 height: 1072
2021-04-19 14:50:56.922 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 120 width: 1072 height: 1072
2021-04-19 14:50:57.002 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 127 width: 1072 height: 1072
2021-04-19 14:50:59.075 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 128 width: 1072 height: 1072
2021-04-19 14:50:59.156 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 129 width: 1072 height: 1072
2021-04-19 14:51:00.193 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 126 width: 1072 height: 1072
2021-04-19 14:51:00.428 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 121 width: 1072 height: 1072
2021-04-19 14:51:02.179 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 129 width: 1072 height: 1072
2021-04-19 14:51:03.302 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 130 width: 1072 height: 1072
2021-04-19 14:51:03.864 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 131 width: 1072 height: 1072
2021-04-19 14:51:03.944 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 132 width: 1072 height: 1072
2021-04-19 14:51:04.654 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 133 width: 1072 height: 1072
2021-04-19 14:51:04.972 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 134 width: 1072 height: 1072
2021-04-19 14:51:05.052 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 135 width: 1072 height: 1072
2021-04-19 14:51:05.450 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 136 width: 1072 height: 1072
2021-04-19 14:51:06.249 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 137 width: 1072 height: 1072
2021-04-19 14:51:07.519 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 126 width: 1072 height: 1072
2021-04-19 14:51:07.757 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 121 width: 1072 height: 1072
2021-04-19 14:51:09.191 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 138 width: 1072 height: 1072
2021-04-19 14:51:09.663 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 137 width: 1072 height: 1072
2021-04-19 14:51:09.839 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 139 width: 1072 height: 1072
2021-04-19 14:51:10.066 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 126 width: 1072 height: 1072
2021-04-19 14:51:11.177 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 138 width: 1072 height: 1072
2021-04-19 14:51:11.421 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 139 width: 1072 height: 1072
2021-04-19 14:51:12.854 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 140 width: 1072 height: 1072
2021-04-19 14:51:16.438 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 126 width: 1072 height: 1072
2021-04-19 14:51:17.636 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 141 width: 1072 height: 1072
2021-04-19 14:51:17.715 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 142 width: 1072 height: 1072
2021-04-19 14:51:18.117 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 143 width: 1072 height: 1072
2021-04-19 14:51:20.265 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 144 width: 1072 height: 1072
2021-04-19 14:51:20.354 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 145 width: 1072 height: 1072
2021-04-19 14:51:20.743 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 146 width: 1072 height: 1072
2021-04-19 14:51:21.217 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 140 width: 1072 height: 1072
2021-04-19 14:51:22.020 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 147 width: 1072 height: 1072
2021-04-19 14:51:22.575 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 138 width: 1072 height: 1072
2021-04-19 14:51:22.888 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 147 width: 1072 height: 1072
2021-04-19 14:51:22.974 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 148 width: 1072 height: 1072
2021-04-19 14:51:24.240 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 146 width: 1072 height: 1072
2021-04-19 14:51:24.483 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 148 width: 1072 height: 1072
2021-04-19 14:51:24.721 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 138 width: 1072 height: 1072
2021-04-19 14:51:25.282 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 149 width: 1072 height: 1072
2021-04-19 14:51:26.795 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 150 width: 1072 height: 1072
2021-04-19 14:51:27.350 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 146 width: 1072 height: 1072
2021-04-19 14:51:29.021 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 150 width: 1072 height: 1072
2021-04-19 14:51:29.343 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 151 width: 1072 height: 1072
2021-04-19 14:51:29.422 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 152 width: 1072 height: 1072
2021-04-19 14:51:29.502 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 146 width: 1072 height: 1072
2021-04-19 14:51:30.618 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 153 width: 1072 height: 1072
2021-04-19 14:51:31.569 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 152 width: 1072 height: 1072
2021-04-19 14:51:32.053 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 154 width: 1072 height: 1072
2021-04-19 14:51:32.689 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 153 width: 1072 height: 1072
2021-04-19 14:51:33.482 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 148 width: 1072 height: 1072
2021-04-19 14:51:34.282 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 154 width: 1072 height: 1072
2021-04-19 14:51:36.831 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 155 width: 1072 height: 1072
2021-04-19 14:51:37.629 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 156 width: 1072 height: 1072
2021-04-19 14:51:38.425 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 157 width: 1072 height: 1072
2021-04-19 14:51:38.659 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 148 width: 1072 height: 1072
2021-04-19 14:51:38.906 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 158 width: 1072 height: 1072
2021-04-19 14:51:40.250 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 157 width: 1072 height: 1072
2021-04-19 14:51:40.497 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 158 width: 1072 height: 1072
2021-04-19 14:51:41.689 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 159 width: 1072 height: 1072
2021-04-19 14:51:42.483 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 157 width: 1072 height: 1072
2021-04-19 14:51:42.565 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 160 width: 1072 height: 1072
2021-04-19 14:51:43.675 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 159 width: 1072 height: 1072
2021-04-19 14:51:44.723 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 161 width: 1072 height: 1072
2021-04-19 14:51:44.799 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 162 width: 1072 height: 1072
2021-04-19 14:51:46.391 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 163 width: 1072 height: 1072
2021-04-19 14:51:46.867 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 160 width: 1072 height: 1072
2021-04-19 14:51:47.430 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 163 width: 1072 height: 1072
2021-04-19 14:51:47.662 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 160 width: 1072 height: 1072
2021-04-19 14:51:47.905 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 157 width: 1072 height: 1072
2021-04-19 14:51:49.338 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 164 width: 1072 height: 1072
2021-04-19 14:51:49.424 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 165 width: 1072 height: 1072
2021-04-19 14:51:50.059 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 166 width: 1072 height: 1072
2021-04-19 14:51:50.613 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 167 width: 1072 height: 1072
2021-04-19 14:51:52.284 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 168 width: 1072 height: 1072
2021-04-19 14:51:52.518 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 163 width: 1072 height: 1072
2021-04-19 14:51:52.604 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 169 width: 1072 height: 1072
2021-04-19 14:51:52.923 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 160 width: 1072 height: 1072
2021-04-19 14:51:54.195 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 169 width: 1072 height: 1072
2021-04-19 14:51:54.997 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 170 width: 1072 height: 1072
2021-04-19 14:51:55.555 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 171 width: 1072 height: 1072
2021-04-19 14:51:56.343 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 160 width: 1072 height: 1072
2021-04-19 14:51:56.585 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 172 width: 1072 height: 1072
2021-04-19 14:51:56.830 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 173 width: 1072 height: 1072
2021-04-19 14:51:57.625 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 174 width: 1072 height: 1072
2021-04-19 14:51:58.655 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 175 width: 1072 height: 1072
2021-04-19 14:51:58.814 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 176 width: 1072 height: 1072
2021-04-19 14:51:59.054 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 168 width: 1072 height: 1072
2021-04-19 14:51:59.292 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 171 width: 1072 height: 1072
2021-04-19 14:52:00.086 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 177 width: 1072 height: 1072
2021-04-19 14:52:01.529 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 178 width: 1072 height: 1072
2021-04-19 14:52:01.839 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 168 width: 1072 height: 1072
2021-04-19 14:52:01.927 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 179 width: 1072 height: 1072
2021-04-19 14:52:02.554 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 176 width: 1072 height: 1072
2021-04-19 14:52:03.359 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 180 width: 1072 height: 1072
2021-04-19 14:52:04.237 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 179 width: 1072 height: 1072
2021-04-19 14:52:04.710 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 180 width: 1072 height: 1072
2021-04-19 14:52:05.344 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 179 width: 1072 height: 1072
2021-04-19 14:52:05.585 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 178 width: 1072 height: 1072
2021-04-19 14:52:06.058 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 180 width: 1072 height: 1072
2021-04-19 14:52:06.221 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 181 width: 1072 height: 1072
2021-04-19 14:52:07.256 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 179 width: 1072 height: 1072
2021-04-19 14:52:07.731 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 178 width: 1072 height: 1072
2021-04-19 14:52:07.813 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 182 width: 1072 height: 1072
2021-04-19 14:52:09.567 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 179 width: 1072 height: 1072
2021-04-19 14:52:10.291 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 183 width: 1072 height: 1072
2021-04-19 14:52:10.361 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 184 width: 1072 height: 1072
2021-04-19 14:52:10.926 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 185 width: 1072 height: 1072
2021-04-19 14:52:11.716 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 182 width: 1072 height: 1072
2021-04-19 14:52:11.956 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 181 width: 1072 height: 1072
2021-04-19 14:52:13.323 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 186 width: 1072 height: 1072
2021-04-19 14:52:13.396 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 187 width: 1072 height: 1072
2021-04-19 14:52:13.475 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 188 width: 1072 height: 1072
2021-04-19 14:52:14.026 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 182 width: 1072 height: 1072
2021-04-19 14:52:14.276 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 189 width: 1072 height: 1072
2021-04-19 14:52:15.062 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 188 width: 1072 height: 1072
2021-04-19 14:52:15.784 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 190 width: 1072 height: 1072
2021-04-19 14:52:15.860 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 191 width: 1072 height: 1072
2021-04-19 14:52:15.938 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 189 width: 1072 height: 1072
2021-04-19 14:52:17.379 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 192 width: 1072 height: 1072
2021-04-19 14:52:18.176 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 193 width: 1072 height: 1072
2021-04-19 14:52:19.925 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 191 width: 1072 height: 1072
2021-04-19 14:52:20.483 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 194 width: 1072 height: 1072
2021-04-19 14:52:20.802 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 195 width: 1072 height: 1072
2021-04-19 14:52:20.880 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 196 width: 1072 height: 1072
2021-04-19 14:52:21.756 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 197 width: 1072 height: 1072
2021-04-19 14:52:22.982 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 198 width: 1072 height: 1072
2021-04-19 14:52:23.225 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 193 width: 1072 height: 1072
2021-04-19 14:52:24.019 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 185 width: 1072 height: 1072
2021-04-19 14:52:26.098 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 198 width: 1072 height: 1072
2021-04-19 14:52:26.187 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 199 width: 1072 height: 1072
2021-04-19 14:52:26.251 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 200 width: 1072 height: 1072
2021-04-19 14:52:26.328 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 193 width: 1072 height: 1072
2021-04-19 14:52:26.889 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 201 width: 1072 height: 1072
2021-04-19 14:52:26.969 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 202 width: 1072 height: 1072
2021-04-19 14:52:27.127 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 203 width: 1072 height: 1072
2021-04-19 14:52:27.687 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 204 width: 1072 height: 1072
2021-04-19 14:52:28.482 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 205 width: 1072 height: 1072
2021-04-19 14:52:28.558 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 206 width: 1072 height: 1072
2021-04-19 14:52:29.603 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 207 width: 1072 height: 1072
2021-04-19 14:52:29.865 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 208 width: 1072 height: 1072
2021-04-19 14:52:30.131 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 209 width: 1072 height: 1072
2021-04-19 14:52:30.612 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 200 width: 1072 height: 1072
2021-04-19 14:52:30.850 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 209 width: 1072 height: 1072
2021-04-19 14:52:31.406 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 185 width: 1072 height: 1072
2021-04-19 14:52:32.202 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 209 width: 1072 height: 1072
2021-04-19 14:52:33.162 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 210 width: 1072 height: 1072
2021-04-19 14:52:34.439 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 211 width: 1072 height: 1072
2021-04-19 14:52:35.707 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 185 width: 1072 height: 1072
2021-04-19 14:52:36.661 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 212 width: 1072 height: 1072
2021-04-19 14:52:36.745 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 213 width: 1072 height: 1072
2021-04-19 14:52:38.339 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 214 width: 1072 height: 1072
2021-04-19 14:52:38.890 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 211 width: 1072 height: 1072
2021-04-19 14:52:39.695 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 215 width: 1072 height: 1072
2021-04-19 14:52:39.929 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 200 width: 1072 height: 1072
2021-04-19 14:52:40.880 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 214 width: 1072 height: 1072
2021-04-19 14:52:42.798 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 216 width: 1072 height: 1072
2021-04-19 14:52:43.040 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 215 width: 1072 height: 1072
2021-04-19 14:52:43.671 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 200 width: 1072 height: 1072
2021-04-19 14:52:43.910 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 216 width: 1072 height: 1072
2021-04-19 14:52:44.149 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 215 width: 1072 height: 1072
2021-04-19 14:52:44.634 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 217 width: 1072 height: 1072
2021-04-19 14:52:44.711 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 218 width: 1072 height: 1072
2021-04-19 14:52:46.302 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 219 width: 1072 height: 1072
2021-04-19 14:52:46.541 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 217 width: 1072 height: 1072
2021-04-19 14:52:48.134 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 220 width: 1072 height: 1072
2021-04-19 14:52:48.212 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 221 width: 1072 height: 1072
2021-04-19 14:52:48.530 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 219 width: 1072 height: 1072
2021-04-19 14:52:48.773 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 222 width: 1072 height: 1072
2021-04-19 14:52:49.402 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 200 width: 1072 height: 1072
2021-04-19 14:52:49.642 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 221 width: 1072 height: 1072
2021-04-19 14:52:49.726 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 223 width: 1072 height: 1072
2021-04-19 14:52:50.600 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 222 width: 1072 height: 1072
2021-04-19 14:52:50.925 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 224 width: 1072 height: 1072
2021-04-19 14:52:51.008 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 225 width: 1072 height: 1072
2021-04-19 14:52:51.724 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 226 width: 1072 height: 1072
2021-04-19 14:52:52.520 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 227 width: 1072 height: 1072
2021-04-19 14:52:53.708 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 228 width: 1072 height: 1072
2021-04-19 14:52:55.065 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 223 width: 1072 height: 1072
2021-04-19 14:52:55.146 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 229 width: 1072 height: 1072
2021-04-19 14:52:56.114 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 230 width: 1072 height: 1072
2021-04-19 14:52:56.334 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 228 width: 1072 height: 1072
2021-04-19 14:53:00.960 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 231 width: 1072 height: 1072
2021-04-19 14:53:01.049 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 232 width: 1072 height: 1072
2021-04-19 14:53:01.437 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 200 width: 1072 height: 1072
2021-04-19 14:53:01.998 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 233 width: 1072 height: 1072
2021-04-19 14:53:02.951 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 234 width: 1072 height: 1072
2021-04-19 14:53:03.191 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 232 width: 1072 height: 1072
2021-04-19 14:53:03.987 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 235 width: 1072 height: 1072
2021-04-19 14:53:04.067 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 236 width: 1072 height: 1072
2021-04-19 14:53:04.226 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 237 width: 1072 height: 1072
2021-04-19 14:53:04.702 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 238 width: 1072 height: 1072
2021-04-19 14:53:06.133 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 230 width: 1072 height: 1072
2021-04-19 14:53:09.081 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 239 width: 1072 height: 1072
2021-04-19 14:53:09.794 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 238 width: 1072 height: 1072
2021-04-19 14:53:10.596 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 240 width: 1072 height: 1072
2021-04-19 14:53:10.676 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 241 width: 1072 height: 1072
2021-04-19 14:53:12.353 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 242 width: 1072 height: 1072
2021-04-19 14:53:13.387 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 243 width: 1072 height: 1072
2021-04-19 14:53:13.467 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 244 width: 1072 height: 1072
2021-04-19 14:53:13.947 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 245 width: 1072 height: 1072
2021-04-19 14:53:15.455 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 239 width: 1072 height: 1072
2021-04-19 14:53:16.888 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 246 width: 1072 height: 1072
2021-04-19 14:53:18.093 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 247 width: 1072 height: 1072
2021-04-19 14:53:19.043 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 248 width: 1072 height: 1072
2021-04-19 14:53:19.278 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 234 width: 1072 height: 1072
2021-04-19 14:53:19.836 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 245 width: 1072 height: 1072
2021-04-19 14:53:20.154 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 234 width: 1072 height: 1072
2021-04-19 14:53:20.318 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 249 width: 1072 height: 1072
2021-04-19 14:53:21.913 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 250 width: 1072 height: 1072
2021-04-19 14:53:23.736 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 248 width: 1072 height: 1072
2021-04-19 14:53:23.975 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 250 width: 1072 height: 1072
2021-04-19 14:53:24.538 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 251 width: 1072 height: 1072
2021-04-19 14:53:25.094 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 252 width: 1072 height: 1072
2021-04-19 14:53:25.335 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 245 width: 1072 height: 1072
2021-04-19 14:53:25.573 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 248 width: 1072 height: 1072
2021-04-19 14:53:27.001 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 252 width: 1072 height: 1072
2021-04-19 14:53:27.885 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 253 width: 1072 height: 1072
2021-04-19 14:53:28.514 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 248 width: 1072 height: 1072
2021-04-19 14:53:28.603 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 254 width: 1072 height: 1072
2021-04-19 14:53:28.723 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 245 width: 1072 height: 1072
2021-04-19 14:53:28.838 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 255 width: 1072 height: 1072
2021-04-19 14:53:29.951 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 256 width: 1072 height: 1072
2021-04-19 14:53:30.590 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 245 width: 1072 height: 1072
2021-04-19 14:53:30.681 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 257 width: 1072 height: 1072
2021-04-19 14:53:31.628 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 258 width: 1072 height: 1072
2021-04-19 14:53:31.863 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 253 width: 1072 height: 1072
2021-04-19 14:53:32.668 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 259 width: 1072 height: 1072
2021-04-19 14:53:34.977 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 260 width: 1072 height: 1072
2021-04-19 14:53:35.207 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 258 width: 1072 height: 1072
2021-04-19 14:53:35.845 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 256 width: 1072 height: 1072
2021-04-19 14:53:36.085 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 260 width: 1072 height: 1072
2021-04-19 14:53:39.434 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 258 width: 1072 height: 1072
2021-04-19 14:53:40.715 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 261 width: 1072 height: 1072
2021-04-19 14:53:41.262 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 260 width: 1072 height: 1072
2021-04-19 14:53:42.054 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 261 width: 1072 height: 1072
2021-04-19 14:53:42.218 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 262 width: 1072 height: 1072
2021-04-19 14:53:43.093 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 260 width: 1072 height: 1072
2021-04-19 14:53:43.176 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 263 width: 1072 height: 1072
2021-04-19 14:53:43.734 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 264 width: 1072 height: 1072
2021-04-19 14:53:44.604 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 256 width: 1072 height: 1072
2021-04-19 14:53:45.882 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 264 width: 1072 height: 1072
2021-04-19 14:53:45.963 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 265 width: 1072 height: 1072
2021-04-19 14:53:49.705 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 256 width: 1072 height: 1072
2021-04-19 14:53:51.065 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 262 width: 1072 height: 1072
2021-04-19 14:53:51.622 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 256 width: 1072 height: 1072
2021-04-19 14:53:51.703 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 266 width: 1072 height: 1072
2021-04-19 14:53:52.421 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 267 width: 1072 height: 1072
2021-04-19 14:53:53.770 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 268 width: 1072 height: 1072
2021-04-19 14:53:54.882 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 265 width: 1072 height: 1072
2021-04-19 14:53:55.841 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 262 width: 1072 height: 1072
2021-04-19 14:53:57.997 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 269 width: 1072 height: 1072
2021-04-19 14:53:58.554 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 270 width: 1072 height: 1072
2021-04-19 14:53:59.344 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 268 width: 1072 height: 1072
2021-04-19 14:53:59.749 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 271 width: 1072 height: 1072
2021-04-19 14:54:00.304 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 272 width: 1072 height: 1072
2021-04-19 14:54:00.385 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 273 width: 1072 height: 1072
2021-04-19 14:54:00.550 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 274 width: 1072 height: 1072
2021-04-19 14:54:02.373 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 270 width: 1072 height: 1072
2021-04-19 14:54:03.165 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 274 width: 1072 height: 1072
2021-04-19 14:54:03.730 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 275 width: 1072 height: 1072
2021-04-19 14:54:04.282 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 265 width: 1072 height: 1072
2021-04-19 14:54:06.837 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 276 width: 1072 height: 1072
2021-04-19 14:54:07.547 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 275 width: 1072 height: 1072
2021-04-19 14:54:07.791 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 277 width: 1072 height: 1072
2021-04-19 14:54:10.978 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 278 width: 1072 height: 1072
2021-04-19 14:54:12.084 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 276 width: 1072 height: 1072
2021-04-19 14:54:12.170 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 279 width: 1072 height: 1072
2021-04-19 14:54:13.369 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 280 width: 1072 height: 1072
2021-04-19 14:54:14.167 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 281 width: 1072 height: 1072
2021-04-19 14:54:15.357 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 282 width: 1072 height: 1072
2021-04-19 14:54:17.036 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 283 width: 1072 height: 1072
2021-04-19 14:54:17.114 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 284 width: 1072 height: 1072
2021-04-19 14:54:17.188 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 285 width: 1072 height: 1072
2021-04-19 14:54:18.065 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 270 width: 1072 height: 1072
2021-04-19 14:54:18.303 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 286 width: 1072 height: 1072
2021-04-19 14:54:20.291 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 278 width: 1072 height: 1072
2021-04-19 14:54:20.456 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 287 width: 1072 height: 1072
2021-04-19 14:54:21.186 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 288 width: 1072 height: 1072
2021-04-19 14:54:21.725 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 285 width: 1072 height: 1072
2021-04-19 14:54:22.526 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 289 width: 1072 height: 1072
2021-04-19 14:54:22.766 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 290 width: 1072 height: 1072
2021-04-19 14:54:24.128 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 291 width: 1072 height: 1072
2021-04-19 14:54:28.663 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 292 width: 1072 height: 1072
2021-04-19 14:54:32.246 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 293 width: 1072 height: 1072
2021-04-19 14:54:33.041 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 294 width: 1072 height: 1072
2021-04-19 14:54:34.001 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 295 width: 1072 height: 1072
2021-04-19 14:54:34.946 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 288 width: 1072 height: 1072
2021-04-19 14:54:35.426 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 295 width: 1072 height: 1072
2021-04-19 14:54:35.918 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 296 width: 1072 height: 1072
2021-04-19 14:54:37.818 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 288 width: 1072 height: 1072
2021-04-19 14:54:37.904 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 297 width: 1072 height: 1072
2021-04-19 14:54:38.861 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 298 width: 1072 height: 1072
2021-04-19 14:54:41.958 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 296 width: 1072 height: 1072
2021-04-19 14:54:44.191 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 298 width: 1072 height: 1072
2021-04-19 14:54:44.511 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 299 width: 1072 height: 1072
2021-04-19 14:54:44.591 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 300 width: 1072 height: 1072
2021-04-19 14:54:44.993 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 301 width: 1072 height: 1072
2021-04-19 14:54:45.788 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 286 width: 1072 height: 1072
2021-04-19 14:54:48.179 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 302 width: 1072 height: 1072
2021-04-19 14:54:50.721 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 303 width: 1072 height: 1072
2021-04-19 14:54:50.883 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 304 width: 1072 height: 1072
2021-04-19 14:54:51.121 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 301 width: 1072 height: 1072
2021-04-19 14:54:51.676 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 296 width: 1072 height: 1072
2021-04-19 14:54:52.636 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 305 width: 1072 height: 1072
2021-04-19 14:54:52.713 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 306 width: 1072 height: 1072
2021-04-19 14:54:53.591 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 307 width: 1072 height: 1072
2021-04-19 14:54:54.390 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 308 width: 1072 height: 1072
2021-04-19 14:54:54.631 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 309 width: 1072 height: 1072
2021-04-19 14:54:55.425 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 310 width: 1072 height: 1072
2021-04-19 14:54:56.220 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 311 width: 1072 height: 1072
2021-04-19 14:54:56.455 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 304 width: 1072 height: 1072
2021-04-19 14:54:57.653 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 312 width: 1072 height: 1072
2021-04-19 14:54:57.888 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 311 width: 1072 height: 1072
2021-04-19 14:54:59.642 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 305 width: 1072 height: 1072
2021-04-19 14:55:00.835 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 311 width: 1072 height: 1072
2021-04-19 14:55:01.075 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 305 width: 1072 height: 1072
2021-04-19 14:55:01.551 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 312 width: 1072 height: 1072
2021-04-19 14:55:01.957 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 314 width: 1072 height: 1072
2021-04-19 14:55:03.155 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 315 width: 1072 height: 1072
2021-04-19 14:55:03.231 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 311 width: 1072 height: 1072
2021-04-19 14:55:04.037 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 316 width: 1072 height: 1072
2021-04-19 14:55:04.119 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 317 width: 1072 height: 1072
2021-04-19 14:55:04.664 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 318 width: 1072 height: 1072
2021-04-19 14:55:05.459 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 319 width: 1072 height: 1072
2021-04-19 14:55:06.414 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 320 width: 1072 height: 1072
2021-04-19 14:55:07.128 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 315 width: 1072 height: 1072
2021-04-19 14:55:08.733 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 321 width: 1072 height: 1072
2021-04-19 14:55:10.313 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 320 width: 1072 height: 1072
2021-04-19 14:55:11.274 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 322 width: 1072 height: 1072
2021-04-19 14:55:12.395 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 305 width: 1072 height: 1072
2021-04-19 14:55:13.263 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 321 width: 1072 height: 1072
2021-04-19 14:55:13.509 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 323 width: 1072 height: 1072
2021-04-19 14:55:15.504 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 324 width: 1072 height: 1072
2021-04-19 14:55:16.298 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 325 width: 1072 height: 1072
2021-04-19 14:55:19.957 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 322 width: 1072 height: 1072
2021-04-19 14:55:20.520 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 326 width: 1072 height: 1072
2021-04-19 14:55:20.592 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 325 width: 1072 height: 1072
2021-04-19 14:55:21.954 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 327 width: 1072 height: 1072
2021-04-19 14:55:23.456 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 305 width: 1072 height: 1072
2021-04-19 14:55:23.539 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 328 width: 1072 height: 1072
2021-04-19 14:55:24.337 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 329 width: 1072 height: 1072
2021-04-19 14:55:24.816 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 330 width: 1072 height: 1072
2021-04-19 14:55:24.895 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 331 width: 1072 height: 1072
2021-04-19 14:55:25.213 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 326 width: 1072 height: 1072
2021-04-19 14:55:25.451 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 313 width: 1072 height: 1072
2021-04-19 14:55:25.701 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 332 width: 1072 height: 1072
2021-04-19 14:55:26.248 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 331 width: 1072 height: 1072
2021-04-19 14:55:26.963 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 332 width: 1072 height: 1072
2021-04-19 14:55:27.045 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 333 width: 1072 height: 1072
2021-04-19 14:55:28.324 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 334 width: 1072 height: 1072
2021-04-19 14:55:28.402 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 335 width: 1072 height: 1072
2021-04-19 14:55:30.073 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 336 width: 1072 height: 1072
2021-04-19 14:55:30.237 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 337 width: 1072 height: 1072
2021-04-19 14:55:31.192 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 327 width: 1072 height: 1072
2021-04-19 14:55:32.620 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 337 width: 1072 height: 1072
2021-04-19 14:55:33.097 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 327 width: 1072 height: 1072
2021-04-19 14:55:33.898 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 338 width: 1072 height: 1072
2021-04-19 14:55:34.136 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 334 width: 1072 height: 1072
2021-04-19 14:55:35.168 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 337 width: 1072 height: 1072
2021-04-19 14:55:35.969 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 339 width: 1072 height: 1072
2021-04-19 14:55:37.006 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 340 width: 1072 height: 1072
2021-04-19 14:55:37.958 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 341 width: 1072 height: 1072
2021-04-19 14:55:38.037 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 342 width: 1072 height: 1072
2021-04-19 14:55:38.352 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 338 width: 1072 height: 1072
2021-04-19 14:55:38.436 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 343 width: 1072 height: 1072
2021-04-19 14:55:39.629 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 342 width: 1072 height: 1072
2021-04-19 14:55:39.872 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 343 width: 1072 height: 1072
2021-04-19 14:55:39.947 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 334 width: 1072 height: 1072
2021-04-19 14:55:40.274 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 344 width: 1072 height: 1072
2021-04-19 14:55:41.065 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 343 width: 1072 height: 1072
2021-04-19 14:55:41.866 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 342 width: 1072 height: 1072
2021-04-19 14:55:45.047 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 345 width: 1072 height: 1072
2021-04-19 14:55:45.127 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 346 width: 1072 height: 1072
2021-04-19 14:55:45.451 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 344 width: 1072 height: 1072
2021-04-19 14:55:46.801 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 346 width: 1072 height: 1072
2021-04-19 14:55:47.041 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 344 width: 1072 height: 1072
2021-04-19 14:55:47.598 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 347 width: 1072 height: 1072
2021-04-19 14:55:50.624 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 348 width: 1072 height: 1072
2021-04-19 14:55:52.861 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 343 width: 1072 height: 1072
2021-04-19 14:55:53.813 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 349 width: 1072 height: 1072
2021-04-19 14:55:55.803 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 348 width: 1072 height: 1072
2021-04-19 14:55:55.877 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 350 width: 1072 height: 1072
2021-04-19 14:55:56.361 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 351 width: 1072 height: 1072
2021-04-19 14:55:57.153 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 346 width: 1072 height: 1072
2021-04-19 14:55:57.238 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 352 width: 1072 height: 1072
2021-04-19 14:55:58.274 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 351 width: 1072 height: 1072
2021-04-19 14:55:59.146 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 348 width: 1072 height: 1072
2021-04-19 14:55:59.384 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 351 width: 1072 height: 1072
2021-04-19 14:55:59.862 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 352 width: 1072 height: 1072
2021-04-19 14:56:00.667 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 349 width: 1072 height: 1072
2021-04-19 14:56:01.457 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 348 width: 1072 height: 1072
2021-04-19 14:56:04.016 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 353 width: 1072 height: 1072
2021-04-19 14:56:04.797 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 349 width: 1072 height: 1072
2021-04-19 14:56:05.440 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 354 width: 1072 height: 1072
2021-04-19 14:56:05.521 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 355 width: 1072 height: 1072
2021-04-19 14:56:06.553 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 353 width: 1072 height: 1072
2021-04-19 14:56:07.514 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 356 width: 1072 height: 1072
2021-04-19 14:56:07.746 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 351 width: 1072 height: 1072
2021-04-19 14:56:07.830 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 357 width: 1072 height: 1072
2021-04-19 14:56:08.388 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 358 width: 1072 height: 1072
2021-04-19 14:56:08.665 10992-10992/com.example.handtracking_16 D/ViewRootImpl@1d0af4e[MainActivity]: ViewPostIme pointer 0
2021-04-19 14:56:08.699 10992-10992/com.example.handtracking_16 D/ViewRootImpl@1d0af4e[MainActivity]: ViewPostIme pointer 1
2021-04-19 14:56:09.016 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 356 width: 1072 height: 1072
2021-04-19 14:56:10.226 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 359 width: 1072 height: 1072
2021-04-19 14:56:13.011 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 360 width: 1072 height: 1072
2021-04-19 14:56:13.089 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 361 width: 1072 height: 1072
2021-04-19 14:56:13.171 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 362 width: 1072 height: 1072
2021-04-19 14:56:13.958 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 358 width: 1072 height: 1072
2021-04-19 14:56:15.398 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 362 width: 1072 height: 1072
2021-04-19 14:56:15.494 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 363 width: 1072 height: 1072
2021-04-19 14:56:15.639 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 364 width: 1072 height: 1072
2021-04-19 14:56:15.963 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 365 width: 1072 height: 1072
2021-04-19 14:56:16.910 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 358 width: 1072 height: 1072
2021-04-19 14:56:17.470 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 366 width: 1072 height: 1072
2021-04-19 14:56:18.185 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 367 width: 1072 height: 1072
2021-04-19 14:56:18.263 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 368 width: 1072 height: 1072
2021-04-19 14:56:18.579 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 355 width: 1072 height: 1072
2021-04-19 14:56:20.897 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 368 width: 1072 height: 1072
2021-04-19 14:56:23.290 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 355 width: 1072 height: 1072
2021-04-19 14:56:24.153 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 368 width: 1072 height: 1072
2021-04-19 14:56:24.719 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 369 width: 1072 height: 1072
2021-04-19 14:56:25.197 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 370 width: 1072 height: 1072
2021-04-19 14:56:25.754 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 371 width: 1072 height: 1072
2021-04-19 14:56:26.552 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 355 width: 1072 height: 1072
2021-04-19 14:56:27.106 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 365 width: 1072 height: 1072
2021-04-19 14:56:27.581 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 355 width: 1072 height: 1072
2021-04-19 14:56:28.786 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 372 width: 1072 height: 1072
2021-04-19 14:56:29.340 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 373 width: 1072 height: 1072
2021-04-19 14:56:32.045 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 371 width: 1072 height: 1072
2021-04-19 14:56:32.280 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 373 width: 1072 height: 1072
2021-04-19 14:56:32.522 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 365 width: 1072 height: 1072
2021-04-19 14:56:32.606 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 374 width: 1072 height: 1072
2021-04-19 14:56:35.310 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 371 width: 1072 height: 1072
2021-04-19 14:56:35.789 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 373 width: 1072 height: 1072
2021-04-19 14:56:36.833 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 375 width: 1072 height: 1072
2021-04-19 14:56:37.064 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 371 width: 1072 height: 1072
2021-04-19 14:56:37.863 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 376 width: 1072 height: 1072
2021-04-19 14:56:37.946 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 377 width: 1072 height: 1072
2021-04-19 14:56:38.664 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 378 width: 1072 height: 1072
2021-04-19 14:56:39.453 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 374 width: 1072 height: 1072
2021-04-19 14:56:39.933 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 375 width: 1072 height: 1072
2021-04-19 14:56:40.257 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 379 width: 1072 height: 1072
2021-04-19 14:56:40.332 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 380 width: 1072 height: 1072
2021-04-19 14:56:40.724 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 378 width: 1072 height: 1072
2021-04-19 14:56:40.963 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 380 width: 1072 height: 1072
2021-04-19 14:56:42.319 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 374 width: 1072 height: 1072
2021-04-19 14:56:44.555 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 381 width: 1072 height: 1072
2021-04-19 14:56:44.637 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 382 width: 1072 height: 1072
2021-04-19 14:56:45.035 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 383 width: 1072 height: 1072
2021-04-19 14:56:45.267 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 380 width: 1072 height: 1072
2021-04-19 14:56:45.505 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 384 width: 1072 height: 1072
2021-04-19 14:56:45.750 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 385 width: 1072 height: 1072
2021-04-19 14:56:46.859 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 386 width: 1072 height: 1072
2021-04-19 14:56:48.053 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 383 width: 1072 height: 1072
2021-04-19 14:56:48.141 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 387 width: 1072 height: 1072
2021-04-19 14:56:49.594 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 378 width: 1072 height: 1072
2021-04-19 14:56:49.663 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 388 width: 1072 height: 1072
2021-04-19 14:56:50.451 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 389 width: 1072 height: 1072
2021-04-19 14:56:51.481 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 378 width: 1072 height: 1072
2021-04-19 14:56:51.568 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 390 width: 1072 height: 1072
2021-04-19 14:56:51.726 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 391 width: 1072 height: 1072
2021-04-19 14:56:52.045 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 392 width: 1072 height: 1072
2021-04-19 14:56:52.274 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 389 width: 1072 height: 1072
2021-04-19 14:56:53.078 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 393 width: 1072 height: 1072
2021-04-19 14:56:53.159 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 394 width: 1072 height: 1072
2021-04-19 14:56:53.545 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 395 width: 1072 height: 1072
2021-04-19 14:56:53.788 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 396 width: 1072 height: 1072
2021-04-19 14:56:54.106 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 397 width: 1072 height: 1072
2021-04-19 14:56:54.384 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 398 width: 1072 height: 1072
2021-04-19 14:56:54.613 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 399 width: 1072 height: 1072
2021-04-19 14:56:54.837 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 400 width: 1072 height: 1072
2021-04-19 14:56:54.872 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 401 width: 1072 height: 1072
2021-04-19 14:56:55.126 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 402 width: 1072 height: 1072
2021-04-19 14:56:55.379 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 403 width: 1072 height: 1072
2021-04-19 14:56:55.924 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 404 width: 1072 height: 1072
2021-04-19 14:56:56.091 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 405 width: 1072 height: 1072
2021-04-19 14:56:56.160 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 406 width: 1072 height: 1072
2021-04-19 14:56:56.406 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 407 width: 1072 height: 1072
2021-04-19 14:56:56.927 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 405 width: 1072 height: 1072
2021-04-19 14:56:57.270 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 408 width: 1072 height: 1072
2021-04-19 14:56:57.527 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 392 width: 1072 height: 1072
2021-04-19 14:56:58.488 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 409 width: 1072 height: 1072
2021-04-19 14:56:59.041 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 407 width: 1072 height: 1072
2021-04-19 14:56:59.600 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 410 width: 1072 height: 1072
2021-04-19 14:57:00.154 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 411 width: 1072 height: 1072
2021-04-19 14:57:00.233 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 412 width: 1072 height: 1072
2021-04-19 14:57:00.323 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 413 width: 1072 height: 1072
2021-04-19 14:57:01.273 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 414 width: 1072 height: 1072
2021-04-19 14:57:01.829 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 415 width: 1072 height: 1072
2021-04-19 14:57:01.918 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 416 width: 1072 height: 1072
2021-04-19 14:57:02.071 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 417 width: 1072 height: 1072
2021-04-19 14:57:03.977 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 418 width: 1072 height: 1072
2021-04-19 14:57:05.813 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 419 width: 1072 height: 1072
2021-04-19 14:57:06.373 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 420 width: 1072 height: 1072
2021-04-19 14:57:07.404 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 408 width: 1072 height: 1072
2021-04-19 14:57:08.359 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 421 width: 1072 height: 1072
2021-04-19 14:57:08.600 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 420 width: 1072 height: 1072
2021-04-19 14:57:09.633 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 409 width: 1072 height: 1072
2021-04-19 14:57:10.202 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 422 width: 1072 height: 1072
2021-04-19 14:57:10.749 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 420 width: 1072 height: 1072
2021-04-19 14:57:10.991 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 423 width: 1072 height: 1072
2021-04-19 14:57:11.709 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 424 width: 1072 height: 1072
2021-04-19 14:57:15.133 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 425 width: 1072 height: 1072
2021-04-19 14:57:16.161 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 426 width: 1072 height: 1072
2021-04-19 14:57:16.244 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 427 width: 1072 height: 1072
2021-04-19 14:57:16.646 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 428 width: 1072 height: 1072
2021-04-19 14:57:17.278 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 421 width: 1072 height: 1072
2021-04-19 14:57:17.522 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 429 width: 1072 height: 1072
2021-04-19 14:57:18.152 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 428 width: 1072 height: 1072
2021-04-19 14:57:19.352 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 422 width: 1072 height: 1072
2021-04-19 14:57:20.549 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 430 width: 1072 height: 1072
2021-04-19 14:57:21.020 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 428 width: 1072 height: 1072
2021-04-19 14:57:22.302 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 431 width: 1072 height: 1072
2021-04-19 14:57:23.411 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 430 width: 1072 height: 1072
2021-04-19 14:57:25.086 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 429 width: 1072 height: 1072
2021-04-19 14:57:26.766 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 432 width: 1072 height: 1072
2021-04-19 14:57:27.314 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 430 width: 1072 height: 1072
2021-04-19 14:57:27.403 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 433 width: 1072 height: 1072
2021-04-19 14:57:27.561 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 434 width: 1072 height: 1072
2021-04-19 14:57:28.277 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 435 width: 1072 height: 1072
2021-04-19 14:57:28.355 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 436 width: 1072 height: 1072
2021-04-19 14:57:29.145 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 432 width: 1072 height: 1072
2021-04-19 14:57:29.953 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 437 width: 1072 height: 1072
2021-04-19 14:57:30.501 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 431 width: 1072 height: 1072
2021-04-19 14:57:31.468 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 438 width: 1072 height: 1072
2021-04-19 14:57:33.137 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 437 width: 1072 height: 1072
2021-04-19 14:57:33.242 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 439 width: 1072 height: 1072
2021-04-19 14:57:33.291 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 440 width: 1072 height: 1072
2021-04-19 14:57:33.932 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 436 width: 1072 height: 1072
2021-04-19 14:57:34.013 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 441 width: 1072 height: 1072
2021-04-19 14:57:34.088 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 442 width: 1072 height: 1072
2021-04-19 14:57:34.167 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 438 width: 1072 height: 1072
2021-04-19 14:57:34.489 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 443 width: 1072 height: 1072
2021-04-19 14:57:35.846 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 444 width: 1072 height: 1072
2021-04-19 14:57:36.396 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 445 width: 1072 height: 1072
2021-04-19 14:57:36.559 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 446 width: 1072 height: 1072
2021-04-19 14:57:37.192 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 440 width: 1072 height: 1072
2021-04-19 14:57:37.435 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 442 width: 1072 height: 1072
2021-04-19 14:57:38.155 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 447 width: 1072 height: 1072
2021-04-19 14:57:38.387 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 448 width: 1072 height: 1072
2021-04-19 14:57:39.505 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 449 width: 1072 height: 1072
2021-04-19 14:57:39.584 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 450 width: 1072 height: 1072
2021-04-19 14:57:39.669 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 451 width: 1072 height: 1072
2021-04-19 14:57:40.061 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 440 width: 1072 height: 1072
2021-04-19 14:57:41.260 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 452 width: 1072 height: 1072
2021-04-19 14:57:41.342 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 453 width: 1072 height: 1072
2021-04-19 14:57:41.740 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 454 width: 1072 height: 1072
2021-04-19 14:57:42.455 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 455 width: 1072 height: 1072
2021-04-19 14:57:42.693 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 451 width: 1072 height: 1072
2021-04-19 14:57:44.837 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 446 width: 1072 height: 1072
2021-04-19 14:57:45.953 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 455 width: 1072 height: 1072
2021-04-19 14:57:46.831 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 451 width: 1072 height: 1072
2021-04-19 14:57:47.315 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 456 width: 1072 height: 1072
2021-04-19 14:57:47.976 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 457 width: 1072 height: 1072
2021-04-19 14:57:48.220 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 458 width: 1072 height: 1072
2021-04-19 14:57:48.457 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 459 width: 1072 height: 1072
2021-04-19 14:57:48.608 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 460 width: 1072 height: 1072
2021-04-19 14:57:48.688 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 461 width: 1072 height: 1072
2021-04-19 14:57:48.844 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 462 width: 1072 height: 1072
2021-04-19 14:57:48.923 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 463 width: 1072 height: 1072
2021-04-19 14:57:50.043 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 464 width: 1072 height: 1072
2021-04-19 14:57:50.838 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 465 width: 1072 height: 1072
2021-04-19 14:57:51.311 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 466 width: 1072 height: 1072
2021-04-19 14:57:51.947 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 460 width: 1072 height: 1072
2021-04-19 14:57:52.425 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 462 width: 1072 height: 1072
2021-04-19 14:57:53.225 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 467 width: 1072 height: 1072
2021-04-19 14:57:53.470 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 468 width: 1072 height: 1072
2021-04-19 14:57:54.026 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 469 width: 1072 height: 1072
2021-04-19 14:57:54.341 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 470 width: 1072 height: 1072
2021-04-19 14:57:54.425 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 471 width: 1072 height: 1072
2021-04-19 14:57:55.067 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 472 width: 1072 height: 1072
2021-04-19 14:57:55.140 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 473 width: 1072 height: 1072
2021-04-19 14:57:56.259 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 474 width: 1072 height: 1072
2021-04-19 14:57:58.088 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 475 width: 1072 height: 1072
2021-04-19 14:57:58.885 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 466 width: 1072 height: 1072
2021-04-19 14:57:58.968 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 476 width: 1072 height: 1072
2021-04-19 14:58:00.158 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 477 width: 1072 height: 1072
2021-04-19 14:58:00.237 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 478 width: 1072 height: 1072
2021-04-19 14:58:00.315 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 479 width: 1072 height: 1072
2021-04-19 14:58:00.476 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 480 width: 1072 height: 1072
2021-04-19 14:58:05.572 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 477 width: 1072 height: 1072
2021-04-19 14:58:05.814 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 481 width: 1072 height: 1072
2021-04-19 14:58:06.606 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 480 width: 1072 height: 1072
2021-04-19 14:58:06.686 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 482 width: 1072 height: 1072
2021-04-19 14:58:06.931 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 483 width: 1072 height: 1072
2021-04-19 14:58:07.162 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 480 width: 1072 height: 1072
2021-04-19 14:58:08.531 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 484 width: 1072 height: 1072
2021-04-19 14:58:09.071 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 481 width: 1072 height: 1072
2021-04-19 14:58:09.239 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 485 width: 1072 height: 1072
2021-04-19 14:58:09.859 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 483 width: 1072 height: 1072
2021-04-19 14:58:10.265 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 484 width: 1072 height: 1072
2021-04-19 14:58:10.325 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 486 width: 1072 height: 1072
2021-04-19 14:58:10.584 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 487 width: 1072 height: 1072
2021-04-19 14:58:10.622 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 488 width: 1072 height: 1072
2021-04-19 14:58:10.897 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 485 width: 1072 height: 1072
2021-04-19 14:58:10.989 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 489 width: 1072 height: 1072
2021-04-19 14:58:11.058 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 483 width: 1072 height: 1072
2021-04-19 14:58:11.222 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 490 width: 1072 height: 1072
2021-04-19 14:58:11.300 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 491 width: 1072 height: 1072
2021-04-19 14:58:11.377 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 492 width: 1072 height: 1072
2021-04-19 14:58:11.865 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 493 width: 1072 height: 1072
2021-04-19 14:58:11.943 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 494 width: 1072 height: 1072
2021-04-19 14:58:12.745 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 495 width: 1072 height: 1072
2021-04-19 14:58:13.300 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 496 width: 1072 height: 1072
2021-04-19 14:58:13.848 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 493 width: 1072 height: 1072
2021-04-19 14:58:14.091 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 496 width: 1072 height: 1072
2021-04-19 14:58:14.816 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 497 width: 1072 height: 1072
2021-04-19 14:58:15.601 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 493 width: 1072 height: 1072
2021-04-19 14:58:16.167 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 498 width: 1072 height: 1072
2021-04-19 14:58:16.477 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 488 width: 1072 height: 1072
2021-04-19 14:58:17.802 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 499 width: 1072 height: 1072
2021-04-19 14:58:17.916 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 498 width: 1072 height: 1072
2021-04-19 14:58:18.080 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 500 width: 1072 height: 1072
2021-04-19 14:58:19.365 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 497 width: 1072 height: 1072
2021-04-19 14:58:19.905 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 498 width: 1072 height: 1072
2021-04-19 14:58:19.993 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 501 width: 1072 height: 1072
2021-04-19 14:58:20.153 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 502 width: 1072 height: 1072
2021-04-19 14:58:20.325 10992-10992/com.example.handtracking_16 D/InputMethodManager: prepareNavigationBarInfo() DecorView@525a9f9[MainActivity]
2021-04-19 14:58:20.327 10992-10992/com.example.handtracking_16 D/InputMethodManager: getNavigationBarColor() -855310
2021-04-19 14:58:20.327 10992-10992/com.example.handtracking_16 V/InputMethodManager: Starting input: tba=com.example.handtracking_16 ic=null mNaviBarColor -855310 mIsGetNaviBarColorSuccess true , NavVisible : true , NavTrans : false
2021-04-19 14:58:20.331 10992-10992/com.example.handtracking_16 D/InputMethodManager: startInputInner - Id : 0
2021-04-19 14:58:20.331 10992-10992/com.example.handtracking_16 I/InputMethodManager: startInputInner - mService.startInputOrWindowGainedFocus
2021-04-19 14:58:20.348 10992-10992/com.example.handtracking_16 D/InputTransport: Input channel destroyed: 'ClientS', fd=84
2021-04-19 14:58:20.349 10992-10992/com.example.handtracking_16 D/InputMethodManager: prepareNavigationBarInfo() DecorView@525a9f9[MainActivity]
2021-04-19 14:58:20.350 10992-10992/com.example.handtracking_16 D/InputMethodManager: getNavigationBarColor() -855310
2021-04-19 14:58:20.350 10992-10992/com.example.handtracking_16 V/InputMethodManager: Starting input: tba=com.example.handtracking_16 ic=null mNaviBarColor -855310 mIsGetNaviBarColorSuccess true , NavVisible : true , NavTrans : false
2021-04-19 14:58:20.350 10992-10992/com.example.handtracking_16 D/InputMethodManager: startInputInner - Id : 0
2021-04-19 14:58:20.350 10992-10992/com.example.handtracking_16 I/InputMethodManager: startInputInner - mService.startInputOrWindowGainedFocus
2021-04-19 14:58:20.942 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 503 width: 1072 height: 1072
2021-04-19 14:58:21.177 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 497 width: 1072 height: 1072
2021-04-19 14:58:21.999 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 504 width: 1072 height: 1072
2021-04-19 14:58:22.212 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 503 width: 1072 height: 1072
2021-04-19 14:58:22.447 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 500 width: 1072 height: 1072
2021-04-19 14:58:22.551 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 505 width: 1072 height: 1072
2021-04-19 14:58:22.697 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 506 width: 1072 height: 1072
2021-04-19 14:58:23.252 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 507 width: 1072 height: 1072
2021-04-19 14:58:23.998 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 508 width: 1072 height: 1072
2021-04-19 14:58:24.441 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 504 width: 1072 height: 1072
2021-04-19 14:58:24.526 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 509 width: 1072 height: 1072
2021-04-19 14:58:25.659 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 510 width: 1072 height: 1072
2021-04-19 14:58:25.722 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 511 width: 1072 height: 1072
2021-04-19 14:58:25.885 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 512 width: 1072 height: 1072
2021-04-19 14:58:25.961 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 513 width: 1072 height: 1072
2021-04-19 14:58:26.529 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 514 width: 1072 height: 1072
2021-04-19 14:58:26.650 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 510 width: 1072 height: 1072
2021-04-19 14:58:26.693 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 515 width: 1072 height: 1072
2021-04-19 14:58:26.751 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 516 width: 1072 height: 1072
2021-04-19 14:58:27.071 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 517 width: 1072 height: 1072
2021-04-19 14:58:28.549 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 518 width: 1072 height: 1072
2021-04-19 14:58:28.587 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 519 width: 1072 height: 1072
2021-04-19 14:58:29.142 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 515 width: 1072 height: 1072
2021-04-19 14:58:30.033 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 520 width: 1072 height: 1072
2021-04-19 14:58:30.580 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 519 width: 1072 height: 1072
2021-04-19 14:58:30.814 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 512 width: 1072 height: 1072
2021-04-19 14:58:31.453 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 520 width: 1072 height: 1072
2021-04-19 14:58:31.965 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 519 width: 1072 height: 1072
2021-04-19 14:58:32.037 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 520 width: 1072 height: 1072
2021-04-19 14:58:32.846 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 521 width: 1072 height: 1072
2021-04-19 14:58:32.972 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 520 width: 1072 height: 1072
2021-04-19 14:58:33.050 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 522 width: 1072 height: 1072
2021-04-19 14:58:33.288 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 523 width: 1072 height: 1072
2021-04-19 14:58:33.548 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 524 width: 1072 height: 1072
2021-04-19 14:58:33.759 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 512 width: 1072 height: 1072
2021-04-19 14:58:34.170 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 520 width: 1072 height: 1072
2021-04-19 14:58:34.241 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 525 width: 1072 height: 1072
2021-04-19 14:58:34.407 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 526 width: 1072 height: 1072
2021-04-19 14:58:34.479 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 527 width: 1072 height: 1072
2021-04-19 14:58:35.611 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 528 width: 1072 height: 1072
2021-04-19 14:58:35.674 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 529 width: 1072 height: 1072
2021-04-19 14:58:35.759 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 530 width: 1072 height: 1072
2021-04-19 14:58:36.658 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 531 width: 1072 height: 1072
2021-04-19 14:58:36.867 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 526 width: 1072 height: 1072
2021-04-19 14:58:37.858 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 532 width: 1072 height: 1072
2021-04-19 14:58:38.227 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 520 width: 1072 height: 1072
2021-04-19 14:58:38.834 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 533 width: 1072 height: 1072
2021-04-19 14:58:38.938 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 532 width: 1072 height: 1072
2021-04-19 14:58:39.365 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 534 width: 1072 height: 1072
2021-04-19 14:58:39.457 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 532 width: 1072 height: 1072
2021-04-19 14:58:39.576 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 535 width: 1072 height: 1072
2021-04-19 14:58:39.779 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 536 width: 1072 height: 1072
2021-04-19 14:58:39.843 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 537 width: 1072 height: 1072
2021-04-19 14:58:40.152 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 538 width: 1072 height: 1072
2021-04-19 14:58:40.214 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 539 width: 1072 height: 1072
2021-04-19 14:58:40.304 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 540 width: 1072 height: 1072
2021-04-19 14:58:40.377 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 541 width: 1072 height: 1072
2021-04-19 14:58:40.741 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 536 width: 1072 height: 1072
2021-04-19 14:58:41.254 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 542 width: 1072 height: 1072
2021-04-19 14:58:41.341 10992-11043/com.example.handtracking_16 D/ExternalTextureConv: Created output texture: 543 width: 1072 height: 1072

@sgowroji sgowroji added stat:awaiting googler Waiting for Google Engineer's Response and removed stat:awaiting response Waiting for user response labels Apr 19, 2021
@mcclanahoochie
Copy link

Try increasing NUM_BUFFERS to 3 or 4

@PopoTeaTree
Copy link
Author

Thank you very much it works!!!!
Screenshot from 2021-04-26 11-13-02

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
legacy:hands Hand tracking/gestures/etc platform:android Issues with Android as Platform type:support General questions
Projects
None yet
Development

No branches or pull requests

5 participants