├── Contributors.md ├── EyeVis-Android App ├── .gradle │ ├── 4.1 │ │ ├── fileChanges │ │ │ └── last-build.bin │ │ ├── fileContent │ │ │ └── fileContent.lock │ │ ├── fileHashes │ │ │ ├── fileHashes.bin │ │ │ ├── fileHashes.lock │ │ │ └── resourceHashesCache.bin │ │ ├── javaCompile │ │ │ ├── classAnalysis.bin │ │ │ ├── jarAnalysis.bin │ │ │ ├── javaCompile.lock │ │ │ ├── taskHistory.bin │ │ │ └── taskJars.bin │ │ └── taskHistory │ │ │ ├── fileSnapshots.bin │ │ │ ├── taskHistory.bin │ │ │ └── taskHistory.lock │ └── buildOutputCleanup │ │ ├── built.bin │ │ ├── cache.properties │ │ └── cache.properties.lock ├── .idea │ ├── gradle.xml │ ├── libraries │ │ ├── com_android_support_animated_vector_drawable_25_1_0.xml │ │ ├── com_android_support_appcompat_v7_25_1_0.xml │ │ ├── com_android_support_constraint_constraint_layout_1_0_2.xml │ │ ├── com_android_support_constraint_constraint_layout_solver_1_0_2_jar.xml │ │ ├── com_android_support_support_annotations_25_1_0_jar.xml │ │ ├── com_android_support_support_compat_25_1_0.xml │ │ ├── com_android_support_support_core_ui_25_1_0.xml │ │ ├── com_android_support_support_core_utils_25_1_0.xml │ │ ├── com_android_support_support_fragment_25_1_0.xml │ │ ├── com_android_support_support_media_compat_25_1_0.xml │ │ ├── com_android_support_support_v4_25_1_0.xml │ │ ├── com_android_support_support_vector_drawable_25_1_0.xml │ │ ├── com_google_android_gms_play_services_base_9_8_0.xml │ │ ├── com_google_android_gms_play_services_basement_9_8_0.xml │ │ ├── com_google_android_gms_play_services_tasks_9_8_0.xml │ │ ├── com_google_android_gms_play_services_vision_9_8_0.xml │ │ └── org_tensorflow_tensorflow_android_1_5_0_rc1.xml │ ├── misc.xml │ ├── modules.xml │ ├── runConfigurations.xml │ └── workspace.xml ├── AndroidManifest.xml ├── BUILD ├── README.md ├── __init__.py ├── android.iml ├── assets │ ├── BUILD │ ├── coco_labels_list.txt │ ├── conv_actions_labels.txt │ ├── imagenet_comp_graph_label_strings.txt │ ├── stylize_quantized.pb │ └── thumbnails │ │ ├── style0.jpg │ │ ├── style1.jpg │ │ ├── style10.jpg │ │ ├── style11.jpg │ │ ├── style12.jpg │ │ ├── style13.jpg │ │ ├── style14.jpg │ │ ├── style15.jpg │ │ ├── style16.jpg │ │ ├── style17.jpg │ │ ├── style18.jpg │ │ ├── style19.jpg │ │ ├── style2.jpg │ │ ├── style20.jpg │ │ ├── style21.jpg │ │ ├── style22.jpg │ │ ├── style23.jpg │ │ ├── style24.jpg │ │ ├── style25.jpg │ │ ├── style3.jpg │ │ ├── style4.jpg │ │ ├── style5.jpg │ │ ├── style6.jpg │ │ ├── style7.jpg │ │ ├── style8.jpg │ │ └── style9.jpg ├── bin │ └── AndroidManifest.xml ├── build.gradle ├── download-models.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradleBuild │ ├── android-profile │ │ ├── profile-2018-01-26-05-08-13-486.json │ │ ├── profile-2018-01-26-05-08-13-486.rawproto │ │ ├── profile-2018-01-26-05-09-54-130.json │ │ ├── profile-2018-01-26-05-09-54-130.rawproto │ │ ├── profile-2018-01-26-05-15-49-661.json │ │ ├── profile-2018-01-26-05-15-49-661.rawproto │ │ ├── profile-2018-01-26-05-16-25-716.json │ │ ├── profile-2018-01-26-05-16-25-716.rawproto │ │ ├── profile-2018-01-26-05-23-07-334.json │ │ ├── profile-2018-01-26-05-23-07-334.rawproto │ │ ├── profile-2018-01-26-05-26-39-444.json │ │ ├── profile-2018-01-26-05-26-39-444.rawproto │ │ ├── profile-2018-01-26-05-32-01-148.json │ │ ├── profile-2018-01-26-05-32-01-148.rawproto │ │ ├── profile-2018-01-26-05-49-11-806.json │ │ ├── profile-2018-01-26-05-49-11-806.rawproto │ │ ├── profile-2018-01-26-05-51-39-149.json │ │ ├── profile-2018-01-26-05-51-39-149.rawproto │ │ ├── profile-2018-01-26-05-55-50-034.json │ │ ├── profile-2018-01-26-05-55-50-034.rawproto │ │ ├── profile-2018-01-26-05-59-29-251.json │ │ ├── profile-2018-01-26-05-59-29-251.rawproto │ │ ├── profile-2018-01-26-06-11-27-203.json │ │ ├── profile-2018-01-26-06-11-27-203.rawproto │ │ ├── profile-2018-01-26-06-14-07-914.json │ │ ├── profile-2018-01-26-06-14-07-914.rawproto │ │ ├── profile-2018-01-26-06-17-58-372.json │ │ ├── profile-2018-01-26-06-17-58-372.rawproto │ │ ├── profile-2018-01-26-06-22-36-445.json │ │ ├── profile-2018-01-26-06-22-36-445.rawproto │ │ ├── profile-2018-01-26-06-33-06-568.json │ │ ├── profile-2018-01-26-06-33-06-568.rawproto │ │ ├── profile-2018-01-26-06-37-21-165.json │ │ ├── profile-2018-01-26-06-37-21-165.rawproto │ │ ├── profile-2018-01-26-17-35-33-991.json │ │ ├── profile-2018-01-26-17-35-33-991.rawproto │ │ ├── profile-2018-01-26-17-36-14-538.json │ │ ├── profile-2018-01-26-17-36-14-538.rawproto │ │ ├── profile-2018-01-26-17-57-50-654.json │ │ ├── profile-2018-01-26-17-57-50-654.rawproto │ │ ├── profile-2018-01-26-18-09-21-547.json │ │ ├── profile-2018-01-26-18-09-21-547.rawproto │ │ ├── profile-2018-01-26-18-12-30-200.json │ │ ├── profile-2018-01-26-18-12-30-200.rawproto │ │ ├── profile-2018-01-26-18-16-47-523.json │ │ ├── profile-2018-01-26-18-16-47-523.rawproto │ │ ├── profile-2018-01-26-18-23-11-351.json │ │ ├── profile-2018-01-26-18-23-11-351.rawproto │ │ ├── profile-2018-01-26-18-27-39-362.json │ │ ├── profile-2018-01-26-18-27-39-362.rawproto │ │ ├── profile-2018-01-26-18-37-05-743.json │ │ ├── profile-2018-01-26-18-37-05-743.rawproto │ │ ├── profile-2018-01-26-18-40-58-027.json │ │ ├── profile-2018-01-26-18-40-58-027.rawproto │ │ ├── profile-2018-01-26-18-45-26-393.json │ │ ├── profile-2018-01-26-18-45-26-393.rawproto │ │ ├── profile-2018-01-26-18-46-05-521.json │ │ ├── profile-2018-01-26-18-46-05-521.rawproto │ │ ├── profile-2018-01-26-18-48-51-394.json │ │ ├── profile-2018-01-26-18-48-51-394.rawproto │ │ ├── profile-2018-01-26-18-51-19-801.json │ │ ├── profile-2018-01-26-18-51-19-801.rawproto │ │ ├── profile-2018-01-27-00-41-24-743.json │ │ ├── profile-2018-01-27-00-41-24-743.rawproto │ │ ├── profile-2018-01-27-00-41-36-728.json │ │ ├── profile-2018-01-27-00-41-36-728.rawproto │ │ ├── profile-2018-01-27-00-59-22-778.json │ │ ├── profile-2018-01-27-00-59-22-778.rawproto │ │ ├── profile-2018-01-27-01-25-26-797.json │ │ ├── profile-2018-01-27-01-25-26-797.rawproto │ │ ├── profile-2018-01-27-01-32-24-772.json │ │ ├── profile-2018-01-27-01-32-24-772.rawproto │ │ ├── profile-2018-01-27-01-42-59-040.json │ │ ├── profile-2018-01-27-01-42-59-040.rawproto │ │ ├── profile-2018-01-27-01-54-25-596.json │ │ ├── profile-2018-01-27-01-54-25-596.rawproto │ │ ├── profile-2018-01-27-02-12-37-936.json │ │ ├── profile-2018-01-27-02-12-37-936.rawproto │ │ ├── profile-2018-01-27-02-25-11-260.json │ │ ├── profile-2018-01-27-02-25-11-260.rawproto │ │ ├── profile-2018-01-27-02-31-23-697.json │ │ ├── profile-2018-01-27-02-31-23-697.rawproto │ │ ├── profile-2018-01-27-02-36-41-456.json │ │ ├── profile-2018-01-27-02-36-41-456.rawproto │ │ ├── profile-2018-01-27-03-01-02-270.json │ │ ├── profile-2018-01-27-03-01-02-270.rawproto │ │ ├── profile-2018-01-27-03-07-02-547.json │ │ ├── profile-2018-01-27-03-07-02-547.rawproto │ │ ├── profile-2018-01-27-03-11-04-090.json │ │ ├── profile-2018-01-27-03-11-04-090.rawproto │ │ ├── profile-2018-01-27-03-14-23-299.json │ │ ├── profile-2018-01-27-03-14-23-299.rawproto │ │ ├── profile-2018-01-27-03-17-19-048.json │ │ ├── profile-2018-01-27-03-17-19-048.rawproto │ │ ├── profile-2018-01-27-04-28-33-734.json │ │ ├── profile-2018-01-27-04-28-33-734.rawproto │ │ ├── profile-2018-01-27-04-33-07-503.json │ │ ├── profile-2018-01-27-04-33-07-503.rawproto │ │ ├── profile-2018-01-27-04-53-13-581.json │ │ ├── profile-2018-01-27-04-53-13-581.rawproto │ │ ├── profile-2018-01-27-05-06-24-280.json │ │ ├── profile-2018-01-27-05-06-24-280.rawproto │ │ ├── profile-2018-01-27-05-07-21-134.json │ │ ├── profile-2018-01-27-05-07-21-134.rawproto │ │ ├── profile-2018-01-27-05-11-51-122.json │ │ ├── profile-2018-01-27-05-11-51-122.rawproto │ │ ├── profile-2018-01-27-05-12-22-603.json │ │ ├── profile-2018-01-27-05-12-22-603.rawproto │ │ ├── profile-2018-01-27-05-13-34-702.json │ │ ├── profile-2018-01-27-05-13-34-702.rawproto │ │ ├── profile-2018-01-27-05-13-38-872.json │ │ ├── profile-2018-01-27-05-13-38-872.rawproto │ │ ├── profile-2018-01-27-05-14-35-315.json │ │ ├── profile-2018-01-27-05-14-35-315.rawproto │ │ ├── profile-2018-01-27-05-16-40-900.json │ │ ├── profile-2018-01-27-05-16-40-900.rawproto │ │ ├── profile-2018-01-27-05-44-38-724.json │ │ ├── profile-2018-01-27-05-44-38-724.rawproto │ │ ├── profile-2018-01-27-05-45-55-171.json │ │ ├── profile-2018-01-27-05-45-55-171.rawproto │ │ ├── profile-2018-01-27-05-54-14-062.json │ │ ├── profile-2018-01-27-05-54-14-062.rawproto │ │ ├── profile-2018-01-27-05-55-38-836.json │ │ ├── profile-2018-01-27-05-55-38-836.rawproto │ │ ├── profile-2018-01-27-05-56-11-466.json │ │ ├── profile-2018-01-27-05-56-11-466.rawproto │ │ ├── profile-2018-01-27-05-57-07-939.json │ │ ├── profile-2018-01-27-05-57-07-939.rawproto │ │ ├── profile-2018-01-27-06-02-16-806.json │ │ ├── profile-2018-01-27-06-02-16-806.rawproto │ │ ├── profile-2018-01-27-06-24-13-692.json │ │ ├── profile-2018-01-27-06-24-13-692.rawproto │ │ ├── profile-2018-01-27-06-33-20-786.json │ │ ├── profile-2018-01-27-06-33-20-786.rawproto │ │ ├── profile-2018-01-27-06-52-54-660.json │ │ ├── profile-2018-01-27-06-52-54-660.rawproto │ │ ├── profile-2018-01-27-07-02-27-975.json │ │ ├── profile-2018-01-27-07-02-27-975.rawproto │ │ ├── profile-2018-01-27-07-04-58-860.json │ │ ├── profile-2018-01-27-07-04-58-860.rawproto │ │ ├── profile-2018-01-27-07-23-29-840.json │ │ ├── profile-2018-01-27-07-23-29-840.rawproto │ │ ├── profile-2018-01-27-07-29-29-462.json │ │ ├── profile-2018-01-27-07-29-29-462.rawproto │ │ ├── profile-2018-01-27-07-34-29-369.json │ │ ├── profile-2018-01-27-07-34-29-369.rawproto │ │ ├── profile-2018-01-27-07-38-56-496.json │ │ ├── profile-2018-01-27-07-38-56-496.rawproto │ │ ├── profile-2018-01-27-07-42-30-777.json │ │ ├── profile-2018-01-27-07-42-30-777.rawproto │ │ ├── profile-2018-01-27-07-47-46-244.json │ │ ├── profile-2018-01-27-07-47-46-244.rawproto │ │ ├── profile-2018-01-27-07-57-20-440.json │ │ ├── profile-2018-01-27-07-57-20-440.rawproto │ │ ├── profile-2018-01-27-08-13-29-863.json │ │ ├── profile-2018-01-27-08-13-29-863.rawproto │ │ ├── profile-2018-01-27-10-30-11-989.json │ │ ├── profile-2018-01-27-10-30-11-989.rawproto │ │ ├── profile-2018-01-27-10-32-32-969.json │ │ ├── profile-2018-01-27-10-32-32-969.rawproto │ │ ├── profile-2018-01-27-10-33-47-461.json │ │ ├── profile-2018-01-27-10-33-47-461.rawproto │ │ ├── profile-2018-01-27-10-41-39-507.json │ │ ├── profile-2018-01-27-10-41-39-507.rawproto │ │ ├── profile-2018-01-27-10-46-56-221.json │ │ ├── profile-2018-01-27-10-46-56-221.rawproto │ │ ├── profile-2018-01-27-10-50-14-423.json │ │ ├── profile-2018-01-27-10-50-14-423.rawproto │ │ ├── profile-2018-01-27-10-53-14-752.json │ │ ├── profile-2018-01-27-10-53-14-752.rawproto │ │ ├── profile-2018-01-27-10-54-35-903.json │ │ ├── profile-2018-01-27-10-54-35-903.rawproto │ │ ├── profile-2018-01-27-10-55-23-764.json │ │ ├── profile-2018-01-27-10-55-23-764.rawproto │ │ ├── profile-2018-01-27-11-02-55-002.json │ │ ├── profile-2018-01-27-11-02-55-002.rawproto │ │ ├── profile-2018-01-27-11-04-45-112.json │ │ ├── profile-2018-01-27-11-04-45-112.rawproto │ │ ├── profile-2018-01-27-11-08-30-997.json │ │ ├── profile-2018-01-27-11-08-30-997.rawproto │ │ ├── profile-2018-01-27-11-11-30-120.json │ │ ├── profile-2018-01-27-11-11-30-120.rawproto │ │ ├── profile-2018-01-27-11-21-26-490.json │ │ ├── profile-2018-01-27-11-21-26-490.rawproto │ │ ├── profile-2018-01-27-11-32-50-204.json │ │ ├── profile-2018-01-27-11-32-50-204.rawproto │ │ ├── profile-2018-01-27-11-45-47-311.json │ │ ├── profile-2018-01-27-11-45-47-311.rawproto │ │ ├── profile-2018-01-27-12-20-47-781.json │ │ ├── profile-2018-01-27-12-20-47-781.rawproto │ │ ├── profile-2018-01-27-12-25-58-321.json │ │ ├── profile-2018-01-27-12-25-58-321.rawproto │ │ ├── profile-2018-01-27-12-29-32-573.json │ │ ├── profile-2018-01-27-12-29-32-573.rawproto │ │ ├── profile-2018-01-27-12-32-00-915.json │ │ ├── profile-2018-01-27-12-32-00-915.rawproto │ │ ├── profile-2018-01-27-12-43-06-146.json │ │ ├── profile-2018-01-27-12-43-06-146.rawproto │ │ ├── profile-2018-01-27-12-48-13-882.json │ │ ├── profile-2018-01-27-12-48-13-882.rawproto │ │ ├── profile-2018-01-27-12-50-41-874.json │ │ ├── profile-2018-01-27-12-50-41-874.rawproto │ │ ├── profile-2018-01-27-13-01-31-546.json │ │ ├── profile-2018-01-27-13-01-31-546.rawproto │ │ ├── profile-2018-01-27-13-05-49-887.json │ │ ├── profile-2018-01-27-13-05-49-887.rawproto │ │ ├── profile-2018-01-27-13-12-17-724.json │ │ ├── profile-2018-01-27-13-12-17-724.rawproto │ │ ├── profile-2018-01-27-13-21-12-949.json │ │ ├── profile-2018-01-27-13-21-12-949.rawproto │ │ ├── profile-2018-01-27-14-04-48-136.json │ │ ├── profile-2018-01-27-14-04-48-136.rawproto │ │ ├── profile-2018-01-27-14-08-31-969.json │ │ ├── profile-2018-01-27-14-08-31-969.rawproto │ │ ├── profile-2018-01-27-14-11-50-911.json │ │ ├── profile-2018-01-27-14-11-50-911.rawproto │ │ ├── profile-2018-01-27-14-17-26-542.json │ │ ├── profile-2018-01-27-14-17-26-542.rawproto │ │ ├── profile-2018-01-27-14-22-08-507.json │ │ ├── profile-2018-01-27-14-22-08-507.rawproto │ │ ├── profile-2018-01-27-14-37-00-404.json │ │ ├── profile-2018-01-27-14-37-00-404.rawproto │ │ ├── profile-2018-01-27-14-49-34-107.json │ │ ├── profile-2018-01-27-14-49-34-107.rawproto │ │ ├── profile-2018-01-27-14-55-19-778.json │ │ ├── profile-2018-01-27-14-55-19-778.rawproto │ │ ├── profile-2018-01-27-15-00-51-920.json │ │ ├── profile-2018-01-27-15-00-51-920.rawproto │ │ ├── profile-2018-01-27-15-05-57-429.json │ │ ├── profile-2018-01-27-15-05-57-429.rawproto │ │ ├── profile-2018-01-27-15-09-49-162.json │ │ ├── profile-2018-01-27-15-09-49-162.rawproto │ │ ├── profile-2018-01-27-15-29-08-867.json │ │ ├── profile-2018-01-27-15-29-08-867.rawproto │ │ ├── profile-2018-01-27-15-39-03-550.json │ │ ├── profile-2018-01-27-15-39-03-550.rawproto │ │ ├── profile-2018-01-27-15-47-50-552.json │ │ ├── profile-2018-01-27-15-47-50-552.rawproto │ │ ├── profile-2018-01-27-16-04-53-845.json │ │ ├── profile-2018-01-27-16-04-53-845.rawproto │ │ ├── profile-2018-01-27-16-09-27-592.json │ │ ├── profile-2018-01-27-16-09-27-592.rawproto │ │ ├── profile-2018-01-27-16-15-28-194.json │ │ ├── profile-2018-01-27-16-15-28-194.rawproto │ │ ├── profile-2018-01-27-16-20-31-926.json │ │ ├── profile-2018-01-27-16-20-31-926.rawproto │ │ ├── profile-2018-01-27-16-25-49-415.json │ │ ├── profile-2018-01-27-16-25-49-415.rawproto │ │ ├── profile-2018-01-27-16-30-07-689.json │ │ ├── profile-2018-01-27-16-30-07-689.rawproto │ │ ├── profile-2018-01-27-16-32-40-310.json │ │ ├── profile-2018-01-27-16-32-40-310.rawproto │ │ ├── profile-2018-01-27-18-06-53-145.json │ │ ├── profile-2018-01-27-18-06-53-145.rawproto │ │ ├── profile-2018-01-27-22-15-37-227.json │ │ ├── profile-2018-01-27-22-15-37-227.rawproto │ │ ├── profile-2018-01-27-22-16-38-525.json │ │ ├── profile-2018-01-27-22-16-38-525.rawproto │ │ ├── profile-2018-01-27-23-09-52-337.json │ │ ├── profile-2018-01-27-23-09-52-337.rawproto │ │ ├── profile-2018-01-27-23-11-10-918.json │ │ ├── profile-2018-01-27-23-11-10-918.rawproto │ │ ├── profile-2018-01-27-23-36-28-323.json │ │ ├── profile-2018-01-27-23-36-28-323.rawproto │ │ ├── profile-2018-01-27-23-38-51-142.json │ │ ├── profile-2018-01-27-23-38-51-142.rawproto │ │ ├── profile-2018-01-27-23-41-41-200.json │ │ ├── profile-2018-01-27-23-41-41-200.rawproto │ │ ├── profile-2018-01-28-00-07-12-809.json │ │ ├── profile-2018-01-28-00-07-12-809.rawproto │ │ ├── profile-2018-01-28-00-08-25-437.json │ │ ├── profile-2018-01-28-00-08-25-437.rawproto │ │ ├── profile-2018-01-28-00-13-05-288.json │ │ ├── profile-2018-01-28-00-13-05-288.rawproto │ │ ├── profile-2018-01-28-00-13-11-542.json │ │ ├── profile-2018-01-28-00-13-11-542.rawproto │ │ ├── profile-2018-01-28-00-17-18-656.json │ │ ├── profile-2018-01-28-00-17-18-656.rawproto │ │ ├── profile-2018-01-28-00-20-49-574.json │ │ ├── profile-2018-01-28-00-20-49-574.rawproto │ │ ├── profile-2018-01-28-00-21-11-937.json │ │ ├── profile-2018-01-28-00-21-11-937.rawproto │ │ ├── profile-2018-01-28-00-58-40-077.json │ │ ├── profile-2018-01-28-00-58-40-077.rawproto │ │ ├── profile-2018-01-28-01-36-35-779.json │ │ ├── profile-2018-01-28-01-36-35-779.rawproto │ │ ├── profile-2018-01-28-01-37-59-616.json │ │ ├── profile-2018-01-28-01-37-59-616.rawproto │ │ ├── profile-2018-01-28-01-46-22-583.json │ │ ├── profile-2018-01-28-01-46-22-583.rawproto │ │ ├── profile-2018-01-28-02-09-35-763.json │ │ ├── profile-2018-01-28-02-09-35-763.rawproto │ │ ├── profile-2018-01-28-02-10-16-118.json │ │ ├── profile-2018-01-28-02-10-16-118.rawproto │ │ ├── profile-2018-01-28-02-10-37-290.json │ │ ├── profile-2018-01-28-02-10-37-290.rawproto │ │ ├── profile-2018-01-28-02-18-15-428.json │ │ ├── profile-2018-01-28-02-18-15-428.rawproto │ │ ├── profile-2018-01-28-02-49-56-584.json │ │ ├── profile-2018-01-28-02-49-56-584.rawproto │ │ ├── profile-2018-01-28-02-50-05-319.json │ │ ├── profile-2018-01-28-02-50-05-319.rawproto │ │ ├── profile-2018-01-28-03-08-53-999.json │ │ ├── profile-2018-01-28-03-08-53-999.rawproto │ │ ├── profile-2018-01-28-03-10-51-997.json │ │ ├── profile-2018-01-28-03-10-51-997.rawproto │ │ ├── profile-2018-01-28-03-23-32-318.json │ │ ├── profile-2018-01-28-03-23-32-318.rawproto │ │ ├── profile-2018-01-28-03-26-29-508.json │ │ ├── profile-2018-01-28-03-26-29-508.rawproto │ │ ├── profile-2018-01-28-03-32-48-039.json │ │ ├── profile-2018-01-28-03-32-48-039.rawproto │ │ ├── profile-2018-01-28-03-38-28-764.json │ │ ├── profile-2018-01-28-03-38-28-764.rawproto │ │ ├── profile-2018-01-28-03-46-41-192.json │ │ ├── profile-2018-01-28-03-46-41-192.rawproto │ │ ├── profile-2018-01-28-04-00-17-486.json │ │ ├── profile-2018-01-28-04-00-17-486.rawproto │ │ ├── profile-2018-01-28-04-05-06-503.json │ │ ├── profile-2018-01-28-04-05-06-503.rawproto │ │ ├── profile-2018-01-28-04-07-25-915.json │ │ ├── profile-2018-01-28-04-07-25-915.rawproto │ │ ├── profile-2018-01-28-04-07-53-574.json │ │ ├── profile-2018-01-28-04-07-53-574.rawproto │ │ ├── profile-2018-01-28-04-12-39-002.json │ │ ├── profile-2018-01-28-04-12-39-002.rawproto │ │ ├── profile-2018-01-28-04-14-23-238.json │ │ ├── profile-2018-01-28-04-14-23-238.rawproto │ │ ├── profile-2018-01-28-04-23-51-933.json │ │ ├── profile-2018-01-28-04-23-51-933.rawproto │ │ ├── profile-2018-01-28-04-24-58-267.json │ │ ├── profile-2018-01-28-04-24-58-267.rawproto │ │ ├── profile-2018-01-28-04-30-07-051.json │ │ ├── profile-2018-01-28-04-30-07-051.rawproto │ │ ├── profile-2018-01-28-04-31-46-135.json │ │ ├── profile-2018-01-28-04-31-46-135.rawproto │ │ ├── profile-2018-01-28-04-36-07-968.json │ │ ├── profile-2018-01-28-04-36-07-968.rawproto │ │ ├── profile-2018-01-28-04-36-49-285.json │ │ ├── profile-2018-01-28-04-36-49-285.rawproto │ │ ├── profile-2018-01-28-04-43-09-184.json │ │ ├── profile-2018-01-28-04-43-09-184.rawproto │ │ ├── profile-2018-01-28-04-43-51-198.json │ │ ├── profile-2018-01-28-04-43-51-198.rawproto │ │ ├── profile-2018-01-28-04-44-18-124.json │ │ ├── profile-2018-01-28-04-44-18-124.rawproto │ │ ├── profile-2018-01-28-04-45-08-862.json │ │ ├── profile-2018-01-28-04-45-08-862.rawproto │ │ ├── profile-2018-01-28-04-47-09-218.json │ │ ├── profile-2018-01-28-04-47-09-218.rawproto │ │ ├── profile-2018-01-28-04-47-43-835.json │ │ ├── profile-2018-01-28-04-47-43-835.rawproto │ │ ├── profile-2018-01-28-04-55-12-607.json │ │ ├── profile-2018-01-28-04-55-12-607.rawproto │ │ ├── profile-2018-01-28-04-58-11-082.json │ │ ├── profile-2018-01-28-04-58-11-082.rawproto │ │ ├── profile-2018-01-28-04-58-46-086.json │ │ ├── profile-2018-01-28-04-58-46-086.rawproto │ │ ├── profile-2018-01-28-05-06-26-130.json │ │ ├── profile-2018-01-28-05-06-26-130.rawproto │ │ ├── profile-2018-01-28-05-10-12-007.json │ │ ├── profile-2018-01-28-05-10-12-007.rawproto │ │ ├── profile-2018-01-28-05-20-03-908.json │ │ ├── profile-2018-01-28-05-20-03-908.rawproto │ │ ├── profile-2018-01-28-05-28-02-669.json │ │ ├── profile-2018-01-28-05-28-02-669.rawproto │ │ ├── profile-2018-01-28-05-33-53-885.json │ │ ├── profile-2018-01-28-05-33-53-885.rawproto │ │ ├── profile-2018-01-28-05-35-47-596.json │ │ └── profile-2018-01-28-05-35-47-596.rawproto │ ├── generated │ │ ├── mockable-android-23.v3.jar │ │ ├── mockable-android-25.v3.jar │ │ └── source │ │ │ ├── buildConfig │ │ │ ├── androidTest │ │ │ │ └── debug │ │ │ │ │ └── org │ │ │ │ │ └── tensorflow │ │ │ │ │ └── demo │ │ │ │ │ └── test │ │ │ │ │ └── BuildConfig.java │ │ │ └── debug │ │ │ │ └── org │ │ │ │ └── tensorflow │ │ │ │ └── demo │ │ │ │ └── BuildConfig.java │ │ │ └── r │ │ │ ├── androidTest │ │ │ └── debug │ │ │ │ └── org │ │ │ │ └── tensorflow │ │ │ │ └── demo │ │ │ │ └── test │ │ │ │ └── R.java │ │ │ └── debug │ │ │ ├── android │ │ │ └── support │ │ │ │ ├── compat │ │ │ │ └── R.java │ │ │ │ ├── constraint │ │ │ │ └── R.java │ │ │ │ ├── coreui │ │ │ │ └── R.java │ │ │ │ ├── coreutils │ │ │ │ └── R.java │ │ │ │ ├── fragment │ │ │ │ └── R.java │ │ │ │ ├── graphics │ │ │ │ └── drawable │ │ │ │ │ ├── R.java │ │ │ │ │ └── animated │ │ │ │ │ └── R.java │ │ │ │ ├── mediacompat │ │ │ │ └── R.java │ │ │ │ ├── v4 │ │ │ │ └── R.java │ │ │ │ └── v7 │ │ │ │ └── appcompat │ │ │ │ └── R.java │ │ │ ├── com │ │ │ └── google │ │ │ │ └── android │ │ │ │ └── gms │ │ │ │ ├── R.java │ │ │ │ ├── base │ │ │ │ └── R.java │ │ │ │ ├── tasks │ │ │ │ └── R.java │ │ │ │ └── vision │ │ │ │ └── R.java │ │ │ ├── org │ │ │ └── tensorflow │ │ │ │ └── demo │ │ │ │ └── R.java │ │ │ └── tensorflow │ │ │ └── contrib │ │ │ └── android │ │ │ └── R.java │ └── outputs │ │ ├── apk │ │ └── debug │ │ │ └── output.json │ │ └── logs │ │ └── manifest-merger-debug-report.txt ├── gradlew ├── gradlew.bat ├── jni │ ├── CMakeLists.txt │ ├── __init__.py │ ├── imageutils_jni.cc │ ├── object_tracking │ │ ├── config.h │ │ ├── flow_cache.h │ │ ├── frame_pair.cc │ │ ├── frame_pair.h │ │ ├── geom.h │ │ ├── gl_utils.h │ │ ├── image-inl.h │ │ ├── image.h │ │ ├── image_data.h │ │ ├── image_neon.cc │ │ ├── image_utils.h │ │ ├── integral_image.h │ │ ├── jni_utils.h │ │ ├── keypoint.h │ │ ├── keypoint_detector.cc │ │ ├── keypoint_detector.h │ │ ├── logging.cc │ │ ├── logging.h │ │ ├── object_detector.cc │ │ ├── object_detector.h │ │ ├── object_model.h │ │ ├── object_tracker.cc │ │ ├── object_tracker.h │ │ ├── object_tracker_jni.cc │ │ ├── optical_flow.cc │ │ ├── optical_flow.h │ │ ├── sprite.h │ │ ├── time_log.cc │ │ ├── time_log.h │ │ ├── tracked_object.cc │ │ ├── tracked_object.h │ │ ├── utils.h │ │ └── utils_neon.cc │ ├── rgb2yuv.cc │ ├── rgb2yuv.h │ ├── yuv2rgb.cc │ └── yuv2rgb.h ├── local.properties ├── res │ ├── drawable-hdpi │ │ ├── ic_action_info.png │ │ ├── ic_launcher.png │ │ ├── icon.png │ │ └── tile.9.png │ ├── drawable-mdpi │ │ ├── ic_action_info.png │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ ├── ic_action_info.png │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ ├── ic_action_info.png │ │ └── ic_launcher.png │ ├── drawable │ │ └── border.xml │ ├── layout │ │ ├── activity_camera.xml │ │ ├── activity_main.xml │ │ ├── activity_splash.xml │ │ ├── camera_connection_fragment_tracking.xml │ │ └── list_text_item.xml │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ ├── raw │ │ └── vid1.mp4 │ ├── values-sw600dp │ │ ├── template-dimens.xml │ │ └── template-styles.xml │ ├── values-v11 │ │ ├── styles.xml │ │ └── template-styles.xml │ ├── values-v14 │ │ └── styles.xml │ ├── values-v21 │ │ ├── base-colors.xml │ │ └── base-template-styles.xml │ └── values │ │ ├── attrs.xml │ │ ├── base-strings.xml │ │ ├── colors.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ ├── template-dimens.xml │ │ └── template-styles.xml ├── sample_images │ ├── classify1.jpg │ ├── detect1.jpg │ └── stylize1.jpg └── src │ ├── main │ └── java │ │ └── org │ │ └── tensorflow │ │ └── demo │ │ └── Splash.java │ └── org │ └── tensorflow │ └── demo │ ├── AutoFitTextureView.java │ ├── CameraActivity.java │ ├── CameraConnectionFragment.java │ ├── Classifier.java │ ├── DetectorActivity.java │ ├── LegacyCameraConnectionFragment.java │ ├── MainActivity.java │ ├── OverlayView.java │ ├── RecognitionScoreView.java │ ├── RecognizeCommands.java │ ├── ResultsView.java │ ├── TensorFlowImageClassifier.java │ ├── TensorFlowMultiBoxDetector.java │ ├── TensorFlowObjectDetectionAPIModel.java │ ├── TensorFlowYoloDetector.java │ ├── env │ ├── BorderedText.java │ ├── ImageUtils.java │ ├── Logger.java │ ├── Size.java │ └── SplitTimer.java │ └── tracking │ ├── MultiBoxTracker.java │ └── ObjectTracker.java ├── README.md └── object_recognition_detection ├── .ipynb_checkpoints └── object_detection_tutorial-checkpoint.ipynb ├── .spyproject ├── codestyle.ini ├── encoding.ini ├── vcs.ini └── workspace.ini ├── BUILD ├── CONTRIBUTING.md ├── README.md ├── __init__.py ├── __pycache__ ├── error.cpython-36.pyc ├── pytesser.cpython-36.pyc └── util.cpython-36.pyc ├── anchor_generators ├── BUILD ├── __init__.py ├── grid_anchor_generator.py ├── grid_anchor_generator_test.py ├── multiple_grid_anchor_generator.py └── multiple_grid_anchor_generator_test.py ├── box_coders ├── BUILD ├── __init__.py ├── faster_rcnn_box_coder.py ├── faster_rcnn_box_coder_test.py ├── keypoint_box_coder.py ├── keypoint_box_coder_test.py ├── mean_stddev_box_coder.py ├── mean_stddev_box_coder_test.py ├── square_box_coder.py └── square_box_coder_test.py ├── builders ├── BUILD ├── __init__.py ├── anchor_generator_builder.py ├── anchor_generator_builder_test.py ├── box_coder_builder.py ├── box_coder_builder_test.py ├── box_predictor_builder.py ├── box_predictor_builder_test.py ├── hyperparams_builder.py ├── hyperparams_builder_test.py ├── image_resizer_builder.py ├── image_resizer_builder_test.py ├── input_reader_builder.py ├── input_reader_builder_test.py ├── losses_builder.py ├── losses_builder_test.py ├── matcher_builder.py ├── matcher_builder_test.py ├── model_builder.py ├── model_builder_test.py ├── optimizer_builder.py ├── optimizer_builder_test.py ├── post_processing_builder.py ├── post_processing_builder_test.py ├── preprocessor_builder.py ├── preprocessor_builder_test.py ├── region_similarity_calculator_builder.py └── region_similarity_calculator_builder_test.py ├── categories_places365.txt ├── core ├── BUILD ├── __init__.py ├── anchor_generator.py ├── balanced_positive_negative_sampler.py ├── balanced_positive_negative_sampler_test.py ├── batcher.py ├── batcher_test.py ├── box_coder.py ├── box_coder_test.py ├── box_list.py ├── box_list_ops.py ├── box_list_ops_test.py ├── box_list_test.py ├── box_predictor.py ├── box_predictor_test.py ├── data_decoder.py ├── keypoint_ops.py ├── keypoint_ops_test.py ├── losses.py ├── losses_test.py ├── matcher.py ├── matcher_test.py ├── minibatch_sampler.py ├── minibatch_sampler_test.py ├── model.py ├── post_processing.py ├── post_processing_test.py ├── prefetcher.py ├── prefetcher_test.py ├── preprocessor.py ├── preprocessor_test.py ├── region_similarity_calculator.py ├── region_similarity_calculator_test.py ├── standard_fields.py ├── target_assigner.py └── target_assigner_test.py ├── create_pascal_tf_record.py ├── create_pascal_tf_record_test.py ├── create_pet_tf_record.py ├── data ├── mscoco_label_map.pbtxt ├── pascal_label_map.pbtxt ├── pet_label_map.pbtxt └── ssd_mobilenet_v1_pets.config ├── data_decoders ├── BUILD ├── __init__.py ├── tf_example_decoder.py └── tf_example_decoder_test.py ├── eval.py ├── eval_util.py ├── evaluator.py ├── export_inference_graph.py ├── exporter.py ├── exporter_test.py ├── g3doc ├── configuring_jobs.md ├── defining_your_own_model.md ├── detection_model_zoo.md ├── exporting_models.md ├── img │ ├── dogs_detections_output.jpg │ ├── example_cat.jpg │ ├── kites_detections_output.jpg │ ├── oxford_pet.png │ ├── tensorboard.png │ └── tensorboard2.png ├── installation.md ├── preparing_inputs.md ├── running_locally.md ├── running_notebook.md ├── running_on_cloud.md ├── running_pets.md └── using_your_own_dataset.md ├── googletranslate.py ├── matchers ├── BUILD ├── __init__.py ├── argmax_matcher.py ├── argmax_matcher_test.py ├── bipartite_matcher.py └── bipartite_matcher_test.py ├── meta_architectures ├── BUILD ├── __init__.py ├── faster_rcnn_meta_arch.py ├── faster_rcnn_meta_arch_test.py ├── faster_rcnn_meta_arch_test_lib.py ├── rfcn_meta_arch.py ├── rfcn_meta_arch_test.py ├── ssd_meta_arch.py └── ssd_meta_arch_test.py ├── models ├── BUILD ├── __init__.py ├── faster_rcnn_inception_resnet_v2_feature_extractor.py ├── faster_rcnn_inception_resnet_v2_feature_extractor_test.py ├── faster_rcnn_resnet_v1_feature_extractor.py ├── faster_rcnn_resnet_v1_feature_extractor_test.py ├── feature_map_generators.py ├── feature_map_generators_test.py ├── ssd_feature_extractor_test.py ├── ssd_inception_v2_feature_extractor.py ├── ssd_inception_v2_feature_extractor_test.py ├── ssd_mobilenet_v1_feature_extractor.py └── ssd_mobilenet_v1_feature_extractor_test.py ├── mysql-connector-java-5.1.45 ├── CHANGES ├── COPYING ├── README ├── README.txt ├── build.xml ├── mysql-connector-java-5.1.45-bin.jar └── src │ ├── com │ └── mysql │ │ ├── fabric │ │ ├── FabricCommunicationException.java │ │ ├── FabricConnection.java │ │ ├── FabricStateResponse.java │ │ ├── HashShardMapping.java │ │ ├── RangeShardMapping.java │ │ ├── Response.java │ │ ├── Server.java │ │ ├── ServerGroup.java │ │ ├── ServerMode.java │ │ ├── ServerRole.java │ │ ├── ShardIndex.java │ │ ├── ShardMapping.java │ │ ├── ShardMappingFactory.java │ │ ├── ShardTable.java │ │ ├── ShardingType.java │ │ ├── hibernate │ │ │ └── FabricMultiTenantConnectionProvider.java │ │ ├── jdbc │ │ │ ├── ErrorReportingExceptionInterceptor.java │ │ │ ├── FabricMySQLConnection.java │ │ │ ├── FabricMySQLConnectionProperties.java │ │ │ ├── FabricMySQLConnectionProxy.java │ │ │ ├── FabricMySQLDataSource.java │ │ │ ├── FabricMySQLDriver.java │ │ │ ├── JDBC4FabricMySQLConnection.java │ │ │ └── JDBC4FabricMySQLConnectionProxy.java │ │ ├── proto │ │ │ └── xmlrpc │ │ │ │ ├── AuthenticatedXmlRpcMethodCaller.java │ │ │ │ ├── DigestAuthentication.java │ │ │ │ ├── InternalXmlRpcMethodCaller.java │ │ │ │ ├── ResultSetParser.java │ │ │ │ ├── XmlRpcClient.java │ │ │ │ └── XmlRpcMethodCaller.java │ │ └── xmlrpc │ │ │ ├── Client.java │ │ │ ├── base │ │ │ ├── Array.java │ │ │ ├── Data.java │ │ │ ├── Fault.java │ │ │ ├── Member.java │ │ │ ├── MethodCall.java │ │ │ ├── MethodResponse.java │ │ │ ├── Param.java │ │ │ ├── Params.java │ │ │ ├── ResponseParser.java │ │ │ ├── Struct.java │ │ │ └── Value.java │ │ │ └── exceptions │ │ │ └── MySQLFabricException.java │ │ └── jdbc │ │ ├── AbandonedConnectionCleanupThread.java │ │ ├── AssertionFailedException.java │ │ ├── AuthenticationPlugin.java │ │ ├── BalanceStrategy.java │ │ ├── BestResponseTimeBalanceStrategy.java │ │ ├── Blob.java │ │ ├── BlobFromLocator.java │ │ ├── Buffer.java │ │ ├── BufferRow.java │ │ ├── ByteArrayRow.java │ │ ├── CacheAdapter.java │ │ ├── CacheAdapterFactory.java │ │ ├── CachedResultSetMetaData.java │ │ ├── CallableStatement.java │ │ ├── CharsetMapping.java │ │ ├── Charsets.properties │ │ ├── Clob.java │ │ ├── CommunicationsException.java │ │ ├── CompressedInputStream.java │ │ ├── Connection.java │ │ ├── ConnectionFeatureNotAvailableException.java │ │ ├── ConnectionGroup.java │ │ ├── ConnectionGroupManager.java │ │ ├── ConnectionImpl.java │ │ ├── ConnectionLifecycleInterceptor.java │ │ ├── ConnectionProperties.java │ │ ├── ConnectionPropertiesImpl.java │ │ ├── ConnectionPropertiesTransform.java │ │ ├── Constants.java │ │ ├── DatabaseMetaData.java │ │ ├── DatabaseMetaDataUsingInfoSchema.java │ │ ├── DocsConnectionPropsHelper.java │ │ ├── Driver.java │ │ ├── EscapeProcessor.java │ │ ├── EscapeProcessorResult.java │ │ ├── EscapeTokenizer.java │ │ ├── ExceptionInterceptor.java │ │ ├── ExportControlled.java │ │ ├── Extension.java │ │ ├── FailoverConnectionProxy.java │ │ ├── Field.java │ │ ├── IterateBlock.java │ │ ├── JDBC42CallableStatement.java │ │ ├── JDBC42Helper.java │ │ ├── JDBC42PreparedStatement.java │ │ ├── JDBC42ResultSet.java │ │ ├── JDBC42ServerPreparedStatement.java │ │ ├── JDBC42UpdatableResultSet.java │ │ ├── JDBC4CallableStatement.java │ │ ├── JDBC4ClientInfoProvider.java │ │ ├── JDBC4ClientInfoProviderSP.java │ │ ├── JDBC4CommentClientInfoProvider.java │ │ ├── JDBC4Connection.java │ │ ├── JDBC4DatabaseMetaData.java │ │ ├── JDBC4DatabaseMetaDataUsingInfoSchema.java │ │ ├── JDBC4LoadBalancedMySQLConnection.java │ │ ├── JDBC4MultiHostMySQLConnection.java │ │ ├── JDBC4MySQLConnection.java │ │ ├── JDBC4MysqlSQLXML.java │ │ ├── JDBC4NClob.java │ │ ├── JDBC4PreparedStatement.java │ │ ├── JDBC4PreparedStatementHelper.java │ │ ├── JDBC4ReplicationMySQLConnection.java │ │ ├── JDBC4ResultSet.java │ │ ├── JDBC4ServerPreparedStatement.java │ │ ├── JDBC4UpdatableResultSet.java │ │ ├── LicenseConfiguration.java │ │ ├── LoadBalanceExceptionChecker.java │ │ ├── LoadBalancedAutoCommitInterceptor.java │ │ ├── LoadBalancedConnection.java │ │ ├── LoadBalancedConnectionProxy.java │ │ ├── LoadBalancedMySQLConnection.java │ │ ├── LocalizedErrorMessages.properties │ │ ├── Messages.java │ │ ├── MiniAdmin.java │ │ ├── MultiHostConnectionProxy.java │ │ ├── MultiHostMySQLConnection.java │ │ ├── MySQLConnection.java │ │ ├── MysqlDataTruncation.java │ │ ├── MysqlDefs.java │ │ ├── MysqlErrorNumbers.java │ │ ├── MysqlIO.java │ │ ├── MysqlParameterMetadata.java │ │ ├── MysqlSavepoint.java │ │ ├── NamedPipeSocketFactory.java │ │ ├── NdbLoadBalanceExceptionChecker.java │ │ ├── NetworkResources.java │ │ ├── NoSubInterceptorWrapper.java │ │ ├── NonRegisteringDriver.java │ │ ├── NonRegisteringReplicationDriver.java │ │ ├── NotImplemented.java │ │ ├── NotUpdatable.java │ │ ├── OperationNotSupportedException.java │ │ ├── OutputStreamWatcher.java │ │ ├── PacketTooBigException.java │ │ ├── ParameterBindings.java │ │ ├── PerConnectionLRUFactory.java │ │ ├── PerVmServerConfigCacheFactory.java │ │ ├── PingTarget.java │ │ ├── PreparedStatement.java │ │ ├── ProfilerEventHandlerFactory.java │ │ ├── RandomBalanceStrategy.java │ │ ├── ReflectiveStatementInterceptorAdapter.java │ │ ├── ReplicationConnection.java │ │ ├── ReplicationConnectionGroup.java │ │ ├── ReplicationConnectionGroupManager.java │ │ ├── ReplicationConnectionProxy.java │ │ ├── ReplicationDriver.java │ │ ├── ReplicationMySQLConnection.java │ │ ├── ResultSetImpl.java │ │ ├── ResultSetInternalMethods.java │ │ ├── ResultSetMetaData.java │ │ ├── ResultSetRow.java │ │ ├── RowData.java │ │ ├── RowDataCursor.java │ │ ├── RowDataDynamic.java │ │ ├── RowDataStatic.java │ │ ├── SQLError.java │ │ ├── Security.java │ │ ├── SequentialBalanceStrategy.java │ │ ├── ServerAffinityStrategy.java │ │ ├── ServerPreparedStatement.java │ │ ├── SingleByteCharsetConverter.java │ │ ├── SocketFactory.java │ │ ├── SocketMetadata.java │ │ ├── SocksProxySocketFactory.java │ │ ├── StandardLoadBalanceExceptionChecker.java │ │ ├── StandardSocketFactory.java │ │ ├── Statement.java │ │ ├── StatementImpl.java │ │ ├── StatementInterceptor.java │ │ ├── StatementInterceptorV2.java │ │ ├── StreamingNotifiable.java │ │ ├── StringUtils.java │ │ ├── TimeUtil.java │ │ ├── TimeZoneMapping.properties │ │ ├── UpdatableResultSet.java │ │ ├── Util.java │ │ ├── V1toV2StatementInterceptorAdapter.java │ │ ├── WatchableOutputStream.java │ │ ├── WatchableWriter.java │ │ ├── Wrapper.java │ │ ├── WriterWatcher.java │ │ ├── authentication │ │ ├── MysqlClearPasswordPlugin.java │ │ ├── MysqlNativePasswordPlugin.java │ │ ├── MysqlOldPasswordPlugin.java │ │ └── Sha256PasswordPlugin.java │ │ ├── configs │ │ ├── 3-0-Compat.properties │ │ ├── 5-0-Compat.properties │ │ ├── clusterBase.properties │ │ ├── coldFusion.properties │ │ ├── fullDebug.properties │ │ ├── maxPerformance.properties │ │ └── solarisMaxPerformance.properties │ │ ├── exceptions │ │ ├── DeadlockTimeoutRollbackMarker.java │ │ ├── MySQLDataException.java │ │ ├── MySQLIntegrityConstraintViolationException.java │ │ ├── MySQLInvalidAuthorizationSpecException.java │ │ ├── MySQLNonTransientConnectionException.java │ │ ├── MySQLNonTransientException.java │ │ ├── MySQLQueryInterruptedException.java │ │ ├── MySQLStatementCancelledException.java │ │ ├── MySQLSyntaxErrorException.java │ │ ├── MySQLTimeoutException.java │ │ ├── MySQLTransactionRollbackException.java │ │ ├── MySQLTransientConnectionException.java │ │ ├── MySQLTransientException.java │ │ └── jdbc4 │ │ │ ├── CommunicationsException.java │ │ │ ├── MySQLDataException.java │ │ │ ├── MySQLIntegrityConstraintViolationException.java │ │ │ ├── MySQLInvalidAuthorizationSpecException.java │ │ │ ├── MySQLNonTransientConnectionException.java │ │ │ ├── MySQLNonTransientException.java │ │ │ ├── MySQLQueryInterruptedException.java │ │ │ ├── MySQLSyntaxErrorException.java │ │ │ ├── MySQLTimeoutException.java │ │ │ ├── MySQLTransactionRollbackException.java │ │ │ ├── MySQLTransientConnectionException.java │ │ │ └── MySQLTransientException.java │ │ ├── integration │ │ ├── c3p0 │ │ │ └── MysqlConnectionTester.java │ │ └── jboss │ │ │ ├── ExtendedMysqlExceptionSorter.java │ │ │ └── MysqlValidConnectionChecker.java │ │ ├── interceptors │ │ ├── ResultSetScannerInterceptor.java │ │ ├── ServerStatusDiffInterceptor.java │ │ └── SessionAssociationInterceptor.java │ │ ├── jdbc2 │ │ └── optional │ │ │ ├── CallableStatementWrapper.java │ │ │ ├── ConnectionWrapper.java │ │ │ ├── JDBC42CallableStatementWrapper.java │ │ │ ├── JDBC42PreparedStatementWrapper.java │ │ │ ├── JDBC4CallableStatementWrapper.java │ │ │ ├── JDBC4ConnectionWrapper.java │ │ │ ├── JDBC4MysqlPooledConnection.java │ │ │ ├── JDBC4MysqlXAConnection.java │ │ │ ├── JDBC4PreparedStatementWrapper.java │ │ │ ├── JDBC4StatementWrapper.java │ │ │ ├── JDBC4SuspendableXAConnection.java │ │ │ ├── MysqlConnectionPoolDataSource.java │ │ │ ├── MysqlDataSource.java │ │ │ ├── MysqlDataSourceFactory.java │ │ │ ├── MysqlPooledConnection.java │ │ │ ├── MysqlXAConnection.java │ │ │ ├── MysqlXADataSource.java │ │ │ ├── MysqlXAException.java │ │ │ ├── MysqlXid.java │ │ │ ├── PreparedStatementWrapper.java │ │ │ ├── StatementWrapper.java │ │ │ ├── SuspendableXAConnection.java │ │ │ └── WrapperBase.java │ │ ├── jmx │ │ ├── LoadBalanceConnectionGroupManager.java │ │ ├── LoadBalanceConnectionGroupManagerMBean.java │ │ ├── ReplicationGroupManager.java │ │ └── ReplicationGroupManagerMBean.java │ │ ├── log │ │ ├── Jdk14Logger.java │ │ ├── Log.java │ │ ├── LogFactory.java │ │ ├── LogUtils.java │ │ ├── NullLogger.java │ │ ├── Slf4JLogger.java │ │ └── StandardLogger.java │ │ ├── profiler │ │ ├── LoggingProfilerEventHandler.java │ │ ├── ProfilerEvent.java │ │ └── ProfilerEventHandler.java │ │ └── util │ │ ├── Base64Decoder.java │ │ ├── BaseBugReport.java │ │ ├── ErrorMappingsDocGenerator.java │ │ ├── LRUCache.java │ │ ├── PropertiesDocGenerator.java │ │ ├── ReadAheadInputStream.java │ │ ├── ResultSetUtil.java │ │ ├── ServerController.java │ │ ├── TimezoneDump.java │ │ └── VersionFSHierarchyMaker.java │ ├── demo │ └── fabric │ │ ├── Client1_Fabric.java │ │ ├── Employee.java │ │ ├── EmployeesDataSource.java │ │ ├── EmployeesJdbc.java │ │ ├── HibernateFabric.java │ │ └── resources │ │ └── com │ │ └── mysql │ │ └── fabric │ │ └── demo │ │ └── employee.hbm.xml │ ├── doc │ └── sources │ │ └── pom.xml │ ├── lib │ ├── c3p0-0.9.1-pre6.jar │ ├── c3p0-0.9.1-pre6.src.zip │ ├── jboss-common-jdbc-wrapper-src.jar │ ├── jboss-common-jdbc-wrapper.jar │ └── slf4j-api-1.6.1.jar │ ├── org │ └── gjt │ │ └── mm │ │ └── mysql │ │ └── Driver.java │ └── testsuite │ ├── BaseStatementInterceptor.java │ ├── BaseTestCase.java │ ├── UnreliableSocketFactory.java │ ├── fabric │ ├── BaseFabricTestCase.java │ ├── SetupFabricTestsuite.java │ ├── TestAdminCommands.java │ ├── TestDumpCommands.java │ ├── TestResultSetParser.java │ ├── TestShardMapping.java │ ├── TestXmlRpcCore.java │ └── jdbc │ │ ├── TestBasicConnection.java │ │ ├── TestFabricMySQLConnectionSharding.java │ │ ├── TestHABasics.java │ │ ├── TestHashSharding.java │ │ └── TestRegressions.java │ ├── perf │ ├── BasePerfTest.java │ ├── LoadStorePerfTest.java │ └── RetrievalPerfTest.java │ ├── regression │ ├── BlobRegressionTest.java │ ├── CachedRowsetTest.java │ ├── CallableStatementRegressionTest.java │ ├── CharsetRegressionTest.java │ ├── ConnectionRegressionTest.java │ ├── DataSourceRegressionTest.java │ ├── EscapeProcessorRegressionTest.java │ ├── MetaDataRegressionTest.java │ ├── MicroPerformanceRegressionTest.java │ ├── NumbersRegressionTest.java │ ├── PooledConnectionRegressionTest.java │ ├── ResultSetRegressionTest.java │ ├── StatementRegressionTest.java │ ├── StressRegressionTest.java │ ├── StringRegressionTest.java │ ├── SubqueriesRegressionTest.java │ ├── SyntaxRegressionTest.java │ ├── UtilsRegressionTest.java │ ├── jdbc4 │ │ ├── ConnectionRegressionTest.java │ │ ├── ExceptionSubclassesTest.java │ │ ├── MetaDataRegressionTest.java │ │ └── StatementRegressionTest.java │ └── jdbc42 │ │ ├── ConnectionRegressionTest.java │ │ ├── ResultSetRegressionTest.java │ │ └── StatementRegressionTest.java │ ├── simple │ ├── BlobTest.java │ ├── CallableStatementTest.java │ ├── CharsetTest.java │ ├── ConnectionTest.java │ ├── DataSourceTest.java │ ├── DateTest.java │ ├── EscapeProcessingTest.java │ ├── MetadataTest.java │ ├── MiniAdminTest.java │ ├── MultiHostConnectionTest.java │ ├── NumbersTest.java │ ├── ReadOnlyCallableStatementTest.java │ ├── ResultSetTest.java │ ├── SSLTest.java │ ├── ServerControllerTest.java │ ├── SimpleTransformer.java │ ├── SplitDBdotNameTest.java │ ├── StatementsTest.java │ ├── StringUtilsTest.java │ ├── TestBug57662Logger.java │ ├── TestLifecycleInterceptor.java │ ├── TransactionTest.java │ ├── TraversalTest.java │ ├── UpdatabilityTest.java │ ├── UtilsTest.java │ ├── XATest.java │ ├── jdbc4 │ │ └── StatementsTest.java │ ├── jdbc42 │ │ ├── ConnectionTest.java │ │ ├── ResultSetTest.java │ │ └── StatementsTest.java │ └── tb2-data.txt.gz │ └── ssl-test-certs │ ├── ca-cert.pem │ ├── ca-key.pem │ ├── ca-truststore │ ├── certs_howto.txt │ ├── client-cert.pem │ ├── client-key.pem │ ├── client-keystore │ ├── mykey.pem │ ├── mykey.pub │ ├── server-cert.pem │ └── server-key.pem ├── object_detection_tutorial.ipynb ├── object_detection_tutorial.py ├── object_detection_webcam.py ├── protos ├── BUILD ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ └── string_int_label_map_pb2.cpython-36.pyc ├── anchor_generator.proto ├── anchor_generator_pb2.py ├── argmax_matcher.proto ├── argmax_matcher_pb2.py ├── bipartite_matcher.proto ├── bipartite_matcher_pb2.py ├── box_coder.proto ├── box_coder_pb2.py ├── box_predictor.proto ├── box_predictor_pb2.py ├── eval.proto ├── eval_pb2.py ├── faster_rcnn.proto ├── faster_rcnn_box_coder.proto ├── faster_rcnn_box_coder_pb2.py ├── faster_rcnn_pb2.py ├── grid_anchor_generator.proto ├── grid_anchor_generator_pb2.py ├── hyperparams.proto ├── hyperparams_pb2.py ├── image_resizer.proto ├── image_resizer_pb2.py ├── input_reader.proto ├── input_reader_pb2.py ├── losses.proto ├── losses_pb2.py ├── matcher.proto ├── matcher_pb2.py ├── mean_stddev_box_coder.proto ├── mean_stddev_box_coder_pb2.py ├── model.proto ├── model_pb2.py ├── optimizer.proto ├── optimizer_pb2.py ├── pipeline.proto ├── pipeline_pb2.py ├── post_processing.proto ├── post_processing_pb2.py ├── preprocessor.proto ├── preprocessor_pb2.py ├── region_similarity_calculator.proto ├── region_similarity_calculator_pb2.py ├── square_box_coder.proto ├── square_box_coder_pb2.py ├── ssd.proto ├── ssd_anchor_generator.proto ├── ssd_anchor_generator_pb2.py ├── ssd_pb2.py ├── string_int_label_map.proto ├── string_int_label_map_pb2.py ├── train.proto └── train_pb2.py ├── run_placesCNN_basic.py ├── sample.py ├── samples ├── cloud │ └── cloud.yml └── configs │ ├── faster_rcnn_inception_resnet_v2_atrous_pets.config │ ├── faster_rcnn_resnet101_pets.config │ ├── faster_rcnn_resnet101_voc07.config │ ├── faster_rcnn_resnet152_pets.config │ ├── faster_rcnn_resnet50_pets.config │ ├── rfcn_resnet101_pets.config │ ├── ssd_inception_v2_pets.config │ └── ssd_mobilenet_v1_pets.config ├── ssd_mobilenet_v1_coco_11_06_2017 └── pipeline.config ├── ssd_mobilenet_v1_coco_2017_11_17 ├── checkpoint ├── model.ckpt.index ├── model.ckpt.meta └── pipeline.config ├── test_images ├── image1.jpg ├── image2.jpg └── image_info.txt ├── textcleaner ├── train.py ├── trainer.py ├── trainer_test.py ├── untitled2.py └── utils ├── BUILD ├── __init__.py ├── __pycache__ ├── __init__.cpython-36.pyc ├── label_map_util.cpython-36.pyc └── visualization_utils.cpython-36.pyc ├── category_util.py ├── category_util_test.py ├── dataset_util.py ├── dataset_util_test.py ├── label_map_util.py ├── label_map_util_test.py ├── learning_schedules.py ├── learning_schedules_test.py ├── metrics.py ├── metrics_test.py ├── np_box_list.py ├── np_box_list_ops.py ├── np_box_list_ops_test.py ├── np_box_list_test.py ├── np_box_ops.py ├── np_box_ops_test.py ├── object_detection_evaluation.py ├── object_detection_evaluation_test.py ├── ops.py ├── ops_test.py ├── per_image_evaluation.py ├── per_image_evaluation_test.py ├── shape_utils.py ├── shape_utils_test.py ├── static_shape.py ├── static_shape_test.py ├── test_utils.py ├── test_utils_test.py ├── variables_helper.py ├── variables_helper_test.py ├── visualization_utils.py ├── visualization_utils_test.py └── visualization_utilss.py /Contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/Contributors.md -------------------------------------------------------------------------------- /EyeVis-Android App/.gradle/4.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EyeVis-Android App/.gradle/4.1/fileContent/fileContent.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/.gradle/4.1/fileContent/fileContent.lock -------------------------------------------------------------------------------- /EyeVis-Android App/.gradle/4.1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/.gradle/4.1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /EyeVis-Android App/.gradle/4.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/.gradle/4.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /EyeVis-Android App/.gradle/4.1/fileHashes/resourceHashesCache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/.gradle/4.1/fileHashes/resourceHashesCache.bin -------------------------------------------------------------------------------- /EyeVis-Android App/.gradle/4.1/javaCompile/classAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/.gradle/4.1/javaCompile/classAnalysis.bin -------------------------------------------------------------------------------- /EyeVis-Android App/.gradle/4.1/javaCompile/jarAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/.gradle/4.1/javaCompile/jarAnalysis.bin -------------------------------------------------------------------------------- /EyeVis-Android App/.gradle/4.1/javaCompile/javaCompile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/.gradle/4.1/javaCompile/javaCompile.lock -------------------------------------------------------------------------------- /EyeVis-Android App/.gradle/4.1/javaCompile/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/.gradle/4.1/javaCompile/taskHistory.bin -------------------------------------------------------------------------------- /EyeVis-Android App/.gradle/4.1/javaCompile/taskJars.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/.gradle/4.1/javaCompile/taskJars.bin -------------------------------------------------------------------------------- /EyeVis-Android App/.gradle/4.1/taskHistory/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/.gradle/4.1/taskHistory/fileSnapshots.bin -------------------------------------------------------------------------------- /EyeVis-Android App/.gradle/4.1/taskHistory/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/.gradle/4.1/taskHistory/taskHistory.bin -------------------------------------------------------------------------------- /EyeVis-Android App/.gradle/4.1/taskHistory/taskHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/.gradle/4.1/taskHistory/taskHistory.lock -------------------------------------------------------------------------------- /EyeVis-Android App/.gradle/buildOutputCleanup/built.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EyeVis-Android App/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Fri Jan 26 02:58:38 IST 2018 2 | gradle.version=4.1 3 | -------------------------------------------------------------------------------- /EyeVis-Android App/.gradle/buildOutputCleanup/cache.properties.lock: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /EyeVis-Android App/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/.idea/gradle.xml -------------------------------------------------------------------------------- /EyeVis-Android App/.idea/libraries/com_android_support_appcompat_v7_25_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/.idea/libraries/com_android_support_appcompat_v7_25_1_0.xml -------------------------------------------------------------------------------- /EyeVis-Android App/.idea/libraries/com_android_support_support_compat_25_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/.idea/libraries/com_android_support_support_compat_25_1_0.xml -------------------------------------------------------------------------------- /EyeVis-Android App/.idea/libraries/com_android_support_support_core_ui_25_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/.idea/libraries/com_android_support_support_core_ui_25_1_0.xml -------------------------------------------------------------------------------- /EyeVis-Android App/.idea/libraries/com_android_support_support_core_utils_25_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/.idea/libraries/com_android_support_support_core_utils_25_1_0.xml -------------------------------------------------------------------------------- /EyeVis-Android App/.idea/libraries/com_android_support_support_fragment_25_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/.idea/libraries/com_android_support_support_fragment_25_1_0.xml -------------------------------------------------------------------------------- /EyeVis-Android App/.idea/libraries/com_android_support_support_media_compat_25_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/.idea/libraries/com_android_support_support_media_compat_25_1_0.xml -------------------------------------------------------------------------------- /EyeVis-Android App/.idea/libraries/com_android_support_support_v4_25_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/.idea/libraries/com_android_support_support_v4_25_1_0.xml -------------------------------------------------------------------------------- /EyeVis-Android App/.idea/libraries/com_google_android_gms_play_services_base_9_8_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/.idea/libraries/com_google_android_gms_play_services_base_9_8_0.xml -------------------------------------------------------------------------------- /EyeVis-Android App/.idea/libraries/com_google_android_gms_play_services_tasks_9_8_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/.idea/libraries/com_google_android_gms_play_services_tasks_9_8_0.xml -------------------------------------------------------------------------------- /EyeVis-Android App/.idea/libraries/com_google_android_gms_play_services_vision_9_8_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/.idea/libraries/com_google_android_gms_play_services_vision_9_8_0.xml -------------------------------------------------------------------------------- /EyeVis-Android App/.idea/libraries/org_tensorflow_tensorflow_android_1_5_0_rc1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/.idea/libraries/org_tensorflow_tensorflow_android_1_5_0_rc1.xml -------------------------------------------------------------------------------- /EyeVis-Android App/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/.idea/misc.xml -------------------------------------------------------------------------------- /EyeVis-Android App/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/.idea/modules.xml -------------------------------------------------------------------------------- /EyeVis-Android App/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /EyeVis-Android App/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/.idea/workspace.xml -------------------------------------------------------------------------------- /EyeVis-Android App/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/AndroidManifest.xml -------------------------------------------------------------------------------- /EyeVis-Android App/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/BUILD -------------------------------------------------------------------------------- /EyeVis-Android App/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/README.md -------------------------------------------------------------------------------- /EyeVis-Android App/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EyeVis-Android App/android.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/android.iml -------------------------------------------------------------------------------- /EyeVis-Android App/assets/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/assets/BUILD -------------------------------------------------------------------------------- /EyeVis-Android App/assets/coco_labels_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/assets/coco_labels_list.txt -------------------------------------------------------------------------------- /EyeVis-Android App/assets/conv_actions_labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/assets/conv_actions_labels.txt -------------------------------------------------------------------------------- /EyeVis-Android App/assets/imagenet_comp_graph_label_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/assets/imagenet_comp_graph_label_strings.txt -------------------------------------------------------------------------------- /EyeVis-Android App/assets/stylize_quantized.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/assets/stylize_quantized.pb -------------------------------------------------------------------------------- /EyeVis-Android App/assets/thumbnails/style0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/assets/thumbnails/style0.jpg -------------------------------------------------------------------------------- /EyeVis-Android App/assets/thumbnails/style1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/assets/thumbnails/style1.jpg -------------------------------------------------------------------------------- /EyeVis-Android App/assets/thumbnails/style10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/assets/thumbnails/style10.jpg -------------------------------------------------------------------------------- /EyeVis-Android App/assets/thumbnails/style11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/assets/thumbnails/style11.jpg -------------------------------------------------------------------------------- /EyeVis-Android App/assets/thumbnails/style12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/assets/thumbnails/style12.jpg -------------------------------------------------------------------------------- /EyeVis-Android App/assets/thumbnails/style13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/assets/thumbnails/style13.jpg -------------------------------------------------------------------------------- /EyeVis-Android App/assets/thumbnails/style14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/assets/thumbnails/style14.jpg -------------------------------------------------------------------------------- /EyeVis-Android App/assets/thumbnails/style15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/assets/thumbnails/style15.jpg -------------------------------------------------------------------------------- /EyeVis-Android App/assets/thumbnails/style16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/assets/thumbnails/style16.jpg -------------------------------------------------------------------------------- /EyeVis-Android App/assets/thumbnails/style17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/assets/thumbnails/style17.jpg -------------------------------------------------------------------------------- /EyeVis-Android App/assets/thumbnails/style18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/assets/thumbnails/style18.jpg -------------------------------------------------------------------------------- /EyeVis-Android App/assets/thumbnails/style19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/assets/thumbnails/style19.jpg -------------------------------------------------------------------------------- /EyeVis-Android App/assets/thumbnails/style2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/assets/thumbnails/style2.jpg -------------------------------------------------------------------------------- /EyeVis-Android App/assets/thumbnails/style20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/assets/thumbnails/style20.jpg -------------------------------------------------------------------------------- /EyeVis-Android App/assets/thumbnails/style21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/assets/thumbnails/style21.jpg -------------------------------------------------------------------------------- /EyeVis-Android App/assets/thumbnails/style22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/assets/thumbnails/style22.jpg -------------------------------------------------------------------------------- /EyeVis-Android App/assets/thumbnails/style23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/assets/thumbnails/style23.jpg -------------------------------------------------------------------------------- /EyeVis-Android App/assets/thumbnails/style24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/assets/thumbnails/style24.jpg -------------------------------------------------------------------------------- /EyeVis-Android App/assets/thumbnails/style25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/assets/thumbnails/style25.jpg -------------------------------------------------------------------------------- /EyeVis-Android App/assets/thumbnails/style3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/assets/thumbnails/style3.jpg -------------------------------------------------------------------------------- /EyeVis-Android App/assets/thumbnails/style4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/assets/thumbnails/style4.jpg -------------------------------------------------------------------------------- /EyeVis-Android App/assets/thumbnails/style5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/assets/thumbnails/style5.jpg -------------------------------------------------------------------------------- /EyeVis-Android App/assets/thumbnails/style6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/assets/thumbnails/style6.jpg -------------------------------------------------------------------------------- /EyeVis-Android App/assets/thumbnails/style7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/assets/thumbnails/style7.jpg -------------------------------------------------------------------------------- /EyeVis-Android App/assets/thumbnails/style8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/assets/thumbnails/style8.jpg -------------------------------------------------------------------------------- /EyeVis-Android App/assets/thumbnails/style9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/assets/thumbnails/style9.jpg -------------------------------------------------------------------------------- /EyeVis-Android App/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/bin/AndroidManifest.xml -------------------------------------------------------------------------------- /EyeVis-Android App/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/build.gradle -------------------------------------------------------------------------------- /EyeVis-Android App/download-models.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/download-models.gradle -------------------------------------------------------------------------------- /EyeVis-Android App/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradle.properties -------------------------------------------------------------------------------- /EyeVis-Android App/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /EyeVis-Android App/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-08-13-486.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-08-13-486.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-08-13-486.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-08-13-486.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-09-54-130.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-09-54-130.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-09-54-130.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-09-54-130.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-15-49-661.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-15-49-661.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-15-49-661.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-15-49-661.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-16-25-716.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-16-25-716.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-16-25-716.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-16-25-716.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-23-07-334.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-23-07-334.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-23-07-334.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-23-07-334.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-26-39-444.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-26-39-444.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-26-39-444.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-26-39-444.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-32-01-148.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-32-01-148.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-32-01-148.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-32-01-148.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-49-11-806.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-49-11-806.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-49-11-806.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-49-11-806.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-51-39-149.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-51-39-149.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-51-39-149.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-51-39-149.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-55-50-034.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-55-50-034.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-55-50-034.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-55-50-034.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-59-29-251.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-59-29-251.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-59-29-251.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-05-59-29-251.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-06-11-27-203.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-06-11-27-203.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-06-11-27-203.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-06-11-27-203.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-06-14-07-914.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-06-14-07-914.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-06-14-07-914.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-06-14-07-914.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-06-17-58-372.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-06-17-58-372.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-06-17-58-372.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-06-17-58-372.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-06-22-36-445.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-06-22-36-445.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-06-22-36-445.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-06-22-36-445.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-06-33-06-568.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-06-33-06-568.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-06-33-06-568.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-06-33-06-568.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-06-37-21-165.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-06-37-21-165.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-06-37-21-165.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-06-37-21-165.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-17-35-33-991.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-17-35-33-991.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-17-35-33-991.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-17-35-33-991.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-17-36-14-538.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-17-36-14-538.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-17-36-14-538.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-17-36-14-538.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-17-57-50-654.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-17-57-50-654.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-17-57-50-654.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-17-57-50-654.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-09-21-547.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-09-21-547.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-09-21-547.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-09-21-547.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-12-30-200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-12-30-200.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-12-30-200.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-12-30-200.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-16-47-523.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-16-47-523.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-16-47-523.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-16-47-523.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-23-11-351.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-23-11-351.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-23-11-351.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-23-11-351.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-27-39-362.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-27-39-362.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-27-39-362.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-27-39-362.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-37-05-743.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-37-05-743.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-37-05-743.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-37-05-743.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-40-58-027.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-40-58-027.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-40-58-027.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-40-58-027.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-45-26-393.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-45-26-393.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-45-26-393.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-45-26-393.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-46-05-521.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-46-05-521.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-46-05-521.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-46-05-521.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-48-51-394.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-48-51-394.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-48-51-394.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-48-51-394.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-51-19-801.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-51-19-801.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-51-19-801.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-26-18-51-19-801.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-00-41-24-743.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-00-41-24-743.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-00-41-24-743.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-00-41-24-743.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-00-41-36-728.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-00-41-36-728.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-00-41-36-728.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-00-41-36-728.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-00-59-22-778.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-00-59-22-778.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-00-59-22-778.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-00-59-22-778.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-01-25-26-797.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-01-25-26-797.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-01-25-26-797.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-01-25-26-797.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-01-32-24-772.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-01-32-24-772.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-01-32-24-772.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-01-32-24-772.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-01-42-59-040.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-01-42-59-040.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-01-42-59-040.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-01-42-59-040.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-01-54-25-596.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-01-54-25-596.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-01-54-25-596.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-01-54-25-596.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-02-12-37-936.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-02-12-37-936.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-02-12-37-936.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-02-12-37-936.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-02-25-11-260.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-02-25-11-260.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-02-25-11-260.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-02-25-11-260.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-02-31-23-697.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-02-31-23-697.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-02-31-23-697.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-02-31-23-697.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-02-36-41-456.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-02-36-41-456.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-02-36-41-456.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-02-36-41-456.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-03-01-02-270.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-03-01-02-270.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-03-01-02-270.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-03-01-02-270.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-03-07-02-547.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-03-07-02-547.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-03-07-02-547.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-03-07-02-547.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-03-11-04-090.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-03-11-04-090.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-03-11-04-090.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-03-11-04-090.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-03-14-23-299.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-03-14-23-299.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-03-14-23-299.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-03-14-23-299.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-03-17-19-048.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-03-17-19-048.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-03-17-19-048.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-03-17-19-048.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-04-28-33-734.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-04-28-33-734.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-04-28-33-734.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-04-28-33-734.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-04-33-07-503.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-04-33-07-503.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-04-33-07-503.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-04-33-07-503.rawproto -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-04-53-13-581.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-04-53-13-581.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-05-06-24-280.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-05-06-24-280.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-05-07-21-134.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-05-07-21-134.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-05-11-51-122.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-05-11-51-122.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-05-12-22-603.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-05-12-22-603.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-05-13-34-702.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-05-13-34-702.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-05-13-38-872.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-05-13-38-872.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-05-14-35-315.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-05-14-35-315.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-05-16-40-900.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-05-16-40-900.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-05-44-38-724.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-05-44-38-724.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-05-45-55-171.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-05-45-55-171.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-05-54-14-062.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-05-54-14-062.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-05-55-38-836.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-05-55-38-836.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-05-56-11-466.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-05-56-11-466.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-05-57-07-939.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-05-57-07-939.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-06-02-16-806.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-06-02-16-806.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-06-24-13-692.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-06-24-13-692.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-06-33-20-786.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-06-33-20-786.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-06-52-54-660.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-06-52-54-660.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-07-02-27-975.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-07-02-27-975.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-07-04-58-860.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-07-04-58-860.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-07-23-29-840.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-07-23-29-840.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-07-29-29-462.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-07-29-29-462.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-07-34-29-369.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-07-34-29-369.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-07-38-56-496.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-07-38-56-496.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-07-42-30-777.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-07-42-30-777.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-07-47-46-244.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-07-47-46-244.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-07-57-20-440.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-07-57-20-440.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-08-13-29-863.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-08-13-29-863.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-10-30-11-989.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-10-30-11-989.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-10-32-32-969.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-10-32-32-969.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-10-33-47-461.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-10-33-47-461.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-10-41-39-507.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-10-41-39-507.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-10-46-56-221.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-10-46-56-221.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-10-50-14-423.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-10-50-14-423.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-10-53-14-752.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-10-53-14-752.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-10-54-35-903.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-10-54-35-903.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-10-55-23-764.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-10-55-23-764.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-11-02-55-002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-11-02-55-002.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-11-04-45-112.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-11-04-45-112.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-11-08-30-997.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-11-08-30-997.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-11-11-30-120.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-11-11-30-120.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-11-21-26-490.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-11-21-26-490.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-11-32-50-204.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-11-32-50-204.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-11-45-47-311.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-11-45-47-311.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-12-20-47-781.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-12-20-47-781.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-12-25-58-321.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-12-25-58-321.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-12-29-32-573.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-12-29-32-573.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-12-32-00-915.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-12-32-00-915.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-12-43-06-146.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-12-43-06-146.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-12-48-13-882.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-12-48-13-882.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-12-50-41-874.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-12-50-41-874.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-13-01-31-546.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-13-01-31-546.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-13-05-49-887.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-13-05-49-887.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-13-12-17-724.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-13-12-17-724.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-13-21-12-949.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-13-21-12-949.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-14-04-48-136.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-14-04-48-136.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-14-08-31-969.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-14-08-31-969.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-14-11-50-911.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-14-11-50-911.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-14-17-26-542.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-14-17-26-542.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-14-22-08-507.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-14-22-08-507.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-14-37-00-404.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-14-37-00-404.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-14-49-34-107.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-14-49-34-107.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-14-55-19-778.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-14-55-19-778.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-15-00-51-920.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-15-00-51-920.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-15-05-57-429.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-15-05-57-429.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-15-09-49-162.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-15-09-49-162.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-15-29-08-867.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-15-29-08-867.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-15-39-03-550.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-15-39-03-550.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-15-47-50-552.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-15-47-50-552.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-16-04-53-845.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-16-04-53-845.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-16-09-27-592.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-16-09-27-592.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-16-15-28-194.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-16-15-28-194.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-16-20-31-926.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-16-20-31-926.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-16-25-49-415.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-16-25-49-415.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-16-30-07-689.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-16-30-07-689.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-16-32-40-310.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-16-32-40-310.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-18-06-53-145.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-18-06-53-145.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-22-15-37-227.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-22-15-37-227.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-22-16-38-525.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-22-16-38-525.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-23-09-52-337.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-23-09-52-337.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-23-11-10-918.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-23-11-10-918.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-23-36-28-323.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-23-36-28-323.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-23-38-51-142.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-23-38-51-142.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-23-41-41-200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-27-23-41-41-200.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-00-07-12-809.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-00-07-12-809.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-00-08-25-437.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-00-08-25-437.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-00-13-05-288.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-00-13-05-288.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-00-13-11-542.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-00-13-11-542.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-00-17-18-656.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-00-17-18-656.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-00-20-49-574.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-00-20-49-574.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-00-21-11-937.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-00-21-11-937.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-00-58-40-077.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-00-58-40-077.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-01-36-35-779.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-01-36-35-779.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-01-37-59-616.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-01-37-59-616.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-01-46-22-583.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-01-46-22-583.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-02-09-35-763.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-02-09-35-763.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-02-10-16-118.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-02-10-16-118.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-02-10-37-290.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-02-10-37-290.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-02-18-15-428.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-02-18-15-428.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-02-49-56-584.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-02-49-56-584.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-02-50-05-319.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-02-50-05-319.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-03-08-53-999.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-03-08-53-999.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-03-10-51-997.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-03-10-51-997.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-03-23-32-318.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-03-23-32-318.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-03-26-29-508.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-03-26-29-508.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-03-32-48-039.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-03-32-48-039.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-03-38-28-764.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-03-38-28-764.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-03-46-41-192.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-03-46-41-192.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-00-17-486.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-00-17-486.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-05-06-503.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-05-06-503.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-07-25-915.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-07-25-915.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-07-53-574.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-07-53-574.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-12-39-002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-12-39-002.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-14-23-238.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-14-23-238.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-23-51-933.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-23-51-933.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-24-58-267.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-24-58-267.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-30-07-051.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-30-07-051.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-31-46-135.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-31-46-135.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-36-07-968.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-36-07-968.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-36-49-285.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-36-49-285.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-43-09-184.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-43-09-184.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-43-51-198.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-43-51-198.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-44-18-124.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-44-18-124.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-45-08-862.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-45-08-862.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-47-09-218.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-47-09-218.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-47-43-835.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-47-43-835.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-55-12-607.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-55-12-607.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-58-11-082.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-58-11-082.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-58-46-086.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-04-58-46-086.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-05-06-26-130.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-05-06-26-130.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-05-10-12-007.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-05-10-12-007.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-05-20-03-908.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-05-20-03-908.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-05-28-02-669.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-05-28-02-669.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-05-33-53-885.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-05-33-53-885.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-05-35-47-596.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/android-profile/profile-2018-01-28-05-35-47-596.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/generated/mockable-android-23.v3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/generated/mockable-android-23.v3.jar -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/generated/mockable-android-25.v3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/generated/mockable-android-25.v3.jar -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/generated/source/r/debug/android/support/compat/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/generated/source/r/debug/android/support/compat/R.java -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/generated/source/r/debug/android/support/coreui/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/generated/source/r/debug/android/support/coreui/R.java -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/generated/source/r/debug/android/support/v4/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/generated/source/r/debug/android/support/v4/R.java -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/generated/source/r/debug/com/google/android/gms/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/generated/source/r/debug/com/google/android/gms/R.java -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/generated/source/r/debug/org/tensorflow/demo/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/generated/source/r/debug/org/tensorflow/demo/R.java -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/outputs/apk/debug/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/outputs/apk/debug/output.json -------------------------------------------------------------------------------- /EyeVis-Android App/gradleBuild/outputs/logs/manifest-merger-debug-report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradleBuild/outputs/logs/manifest-merger-debug-report.txt -------------------------------------------------------------------------------- /EyeVis-Android App/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradlew -------------------------------------------------------------------------------- /EyeVis-Android App/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/gradlew.bat -------------------------------------------------------------------------------- /EyeVis-Android App/jni/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/CMakeLists.txt -------------------------------------------------------------------------------- /EyeVis-Android App/jni/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EyeVis-Android App/jni/imageutils_jni.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/imageutils_jni.cc -------------------------------------------------------------------------------- /EyeVis-Android App/jni/object_tracking/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/object_tracking/config.h -------------------------------------------------------------------------------- /EyeVis-Android App/jni/object_tracking/flow_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/object_tracking/flow_cache.h -------------------------------------------------------------------------------- /EyeVis-Android App/jni/object_tracking/frame_pair.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/object_tracking/frame_pair.cc -------------------------------------------------------------------------------- /EyeVis-Android App/jni/object_tracking/frame_pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/object_tracking/frame_pair.h -------------------------------------------------------------------------------- /EyeVis-Android App/jni/object_tracking/geom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/object_tracking/geom.h -------------------------------------------------------------------------------- /EyeVis-Android App/jni/object_tracking/gl_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/object_tracking/gl_utils.h -------------------------------------------------------------------------------- /EyeVis-Android App/jni/object_tracking/image-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/object_tracking/image-inl.h -------------------------------------------------------------------------------- /EyeVis-Android App/jni/object_tracking/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/object_tracking/image.h -------------------------------------------------------------------------------- /EyeVis-Android App/jni/object_tracking/image_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/object_tracking/image_data.h -------------------------------------------------------------------------------- /EyeVis-Android App/jni/object_tracking/image_neon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/object_tracking/image_neon.cc -------------------------------------------------------------------------------- /EyeVis-Android App/jni/object_tracking/image_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/object_tracking/image_utils.h -------------------------------------------------------------------------------- /EyeVis-Android App/jni/object_tracking/integral_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/object_tracking/integral_image.h -------------------------------------------------------------------------------- /EyeVis-Android App/jni/object_tracking/jni_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/object_tracking/jni_utils.h -------------------------------------------------------------------------------- /EyeVis-Android App/jni/object_tracking/keypoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/object_tracking/keypoint.h -------------------------------------------------------------------------------- /EyeVis-Android App/jni/object_tracking/keypoint_detector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/object_tracking/keypoint_detector.cc -------------------------------------------------------------------------------- /EyeVis-Android App/jni/object_tracking/keypoint_detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/object_tracking/keypoint_detector.h -------------------------------------------------------------------------------- /EyeVis-Android App/jni/object_tracking/logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/object_tracking/logging.cc -------------------------------------------------------------------------------- /EyeVis-Android App/jni/object_tracking/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/object_tracking/logging.h -------------------------------------------------------------------------------- /EyeVis-Android App/jni/object_tracking/object_detector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/object_tracking/object_detector.cc -------------------------------------------------------------------------------- /EyeVis-Android App/jni/object_tracking/object_detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/object_tracking/object_detector.h -------------------------------------------------------------------------------- /EyeVis-Android App/jni/object_tracking/object_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/object_tracking/object_model.h -------------------------------------------------------------------------------- /EyeVis-Android App/jni/object_tracking/object_tracker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/object_tracking/object_tracker.cc -------------------------------------------------------------------------------- /EyeVis-Android App/jni/object_tracking/object_tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/object_tracking/object_tracker.h -------------------------------------------------------------------------------- /EyeVis-Android App/jni/object_tracking/object_tracker_jni.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/object_tracking/object_tracker_jni.cc -------------------------------------------------------------------------------- /EyeVis-Android App/jni/object_tracking/optical_flow.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/object_tracking/optical_flow.cc -------------------------------------------------------------------------------- /EyeVis-Android App/jni/object_tracking/optical_flow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/object_tracking/optical_flow.h -------------------------------------------------------------------------------- /EyeVis-Android App/jni/object_tracking/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/object_tracking/sprite.h -------------------------------------------------------------------------------- /EyeVis-Android App/jni/object_tracking/time_log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/object_tracking/time_log.cc -------------------------------------------------------------------------------- /EyeVis-Android App/jni/object_tracking/time_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/object_tracking/time_log.h -------------------------------------------------------------------------------- /EyeVis-Android App/jni/object_tracking/tracked_object.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/object_tracking/tracked_object.cc -------------------------------------------------------------------------------- /EyeVis-Android App/jni/object_tracking/tracked_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/object_tracking/tracked_object.h -------------------------------------------------------------------------------- /EyeVis-Android App/jni/object_tracking/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/object_tracking/utils.h -------------------------------------------------------------------------------- /EyeVis-Android App/jni/object_tracking/utils_neon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/object_tracking/utils_neon.cc -------------------------------------------------------------------------------- /EyeVis-Android App/jni/rgb2yuv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/rgb2yuv.cc -------------------------------------------------------------------------------- /EyeVis-Android App/jni/rgb2yuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/rgb2yuv.h -------------------------------------------------------------------------------- /EyeVis-Android App/jni/yuv2rgb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/yuv2rgb.cc -------------------------------------------------------------------------------- /EyeVis-Android App/jni/yuv2rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/jni/yuv2rgb.h -------------------------------------------------------------------------------- /EyeVis-Android App/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/local.properties -------------------------------------------------------------------------------- /EyeVis-Android App/res/drawable-hdpi/ic_action_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/res/drawable-hdpi/ic_action_info.png -------------------------------------------------------------------------------- /EyeVis-Android App/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /EyeVis-Android App/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /EyeVis-Android App/res/drawable-hdpi/tile.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/res/drawable-hdpi/tile.9.png -------------------------------------------------------------------------------- /EyeVis-Android App/res/drawable-mdpi/ic_action_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/res/drawable-mdpi/ic_action_info.png -------------------------------------------------------------------------------- /EyeVis-Android App/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /EyeVis-Android App/res/drawable-xhdpi/ic_action_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/res/drawable-xhdpi/ic_action_info.png -------------------------------------------------------------------------------- /EyeVis-Android App/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /EyeVis-Android App/res/drawable-xxhdpi/ic_action_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/res/drawable-xxhdpi/ic_action_info.png -------------------------------------------------------------------------------- /EyeVis-Android App/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /EyeVis-Android App/res/drawable/border.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/res/drawable/border.xml -------------------------------------------------------------------------------- /EyeVis-Android App/res/layout/activity_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/res/layout/activity_camera.xml -------------------------------------------------------------------------------- /EyeVis-Android App/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/res/layout/activity_main.xml -------------------------------------------------------------------------------- /EyeVis-Android App/res/layout/activity_splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/res/layout/activity_splash.xml -------------------------------------------------------------------------------- /EyeVis-Android App/res/layout/camera_connection_fragment_tracking.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/res/layout/camera_connection_fragment_tracking.xml -------------------------------------------------------------------------------- /EyeVis-Android App/res/layout/list_text_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/res/layout/list_text_item.xml -------------------------------------------------------------------------------- /EyeVis-Android App/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /EyeVis-Android App/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /EyeVis-Android App/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /EyeVis-Android App/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /EyeVis-Android App/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /EyeVis-Android App/res/raw/vid1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/res/raw/vid1.mp4 -------------------------------------------------------------------------------- /EyeVis-Android App/res/values-sw600dp/template-dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/res/values-sw600dp/template-dimens.xml -------------------------------------------------------------------------------- /EyeVis-Android App/res/values-sw600dp/template-styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/res/values-sw600dp/template-styles.xml -------------------------------------------------------------------------------- /EyeVis-Android App/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/res/values-v11/styles.xml -------------------------------------------------------------------------------- /EyeVis-Android App/res/values-v11/template-styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/res/values-v11/template-styles.xml -------------------------------------------------------------------------------- /EyeVis-Android App/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/res/values-v14/styles.xml -------------------------------------------------------------------------------- /EyeVis-Android App/res/values-v21/base-colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/res/values-v21/base-colors.xml -------------------------------------------------------------------------------- /EyeVis-Android App/res/values-v21/base-template-styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/res/values-v21/base-template-styles.xml -------------------------------------------------------------------------------- /EyeVis-Android App/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/res/values/attrs.xml -------------------------------------------------------------------------------- /EyeVis-Android App/res/values/base-strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/res/values/base-strings.xml -------------------------------------------------------------------------------- /EyeVis-Android App/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/res/values/colors.xml -------------------------------------------------------------------------------- /EyeVis-Android App/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/res/values/strings.xml -------------------------------------------------------------------------------- /EyeVis-Android App/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/res/values/styles.xml -------------------------------------------------------------------------------- /EyeVis-Android App/res/values/template-dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/res/values/template-dimens.xml -------------------------------------------------------------------------------- /EyeVis-Android App/res/values/template-styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/res/values/template-styles.xml -------------------------------------------------------------------------------- /EyeVis-Android App/sample_images/classify1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/sample_images/classify1.jpg -------------------------------------------------------------------------------- /EyeVis-Android App/sample_images/detect1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/sample_images/detect1.jpg -------------------------------------------------------------------------------- /EyeVis-Android App/sample_images/stylize1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/sample_images/stylize1.jpg -------------------------------------------------------------------------------- /EyeVis-Android App/src/main/java/org/tensorflow/demo/Splash.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/src/main/java/org/tensorflow/demo/Splash.java -------------------------------------------------------------------------------- /EyeVis-Android App/src/org/tensorflow/demo/AutoFitTextureView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/src/org/tensorflow/demo/AutoFitTextureView.java -------------------------------------------------------------------------------- /EyeVis-Android App/src/org/tensorflow/demo/CameraActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/src/org/tensorflow/demo/CameraActivity.java -------------------------------------------------------------------------------- /EyeVis-Android App/src/org/tensorflow/demo/CameraConnectionFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/src/org/tensorflow/demo/CameraConnectionFragment.java -------------------------------------------------------------------------------- /EyeVis-Android App/src/org/tensorflow/demo/Classifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/src/org/tensorflow/demo/Classifier.java -------------------------------------------------------------------------------- /EyeVis-Android App/src/org/tensorflow/demo/DetectorActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/src/org/tensorflow/demo/DetectorActivity.java -------------------------------------------------------------------------------- /EyeVis-Android App/src/org/tensorflow/demo/LegacyCameraConnectionFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/src/org/tensorflow/demo/LegacyCameraConnectionFragment.java -------------------------------------------------------------------------------- /EyeVis-Android App/src/org/tensorflow/demo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/src/org/tensorflow/demo/MainActivity.java -------------------------------------------------------------------------------- /EyeVis-Android App/src/org/tensorflow/demo/OverlayView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/src/org/tensorflow/demo/OverlayView.java -------------------------------------------------------------------------------- /EyeVis-Android App/src/org/tensorflow/demo/RecognitionScoreView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/src/org/tensorflow/demo/RecognitionScoreView.java -------------------------------------------------------------------------------- /EyeVis-Android App/src/org/tensorflow/demo/RecognizeCommands.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/src/org/tensorflow/demo/RecognizeCommands.java -------------------------------------------------------------------------------- /EyeVis-Android App/src/org/tensorflow/demo/ResultsView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/src/org/tensorflow/demo/ResultsView.java -------------------------------------------------------------------------------- /EyeVis-Android App/src/org/tensorflow/demo/TensorFlowImageClassifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/src/org/tensorflow/demo/TensorFlowImageClassifier.java -------------------------------------------------------------------------------- /EyeVis-Android App/src/org/tensorflow/demo/TensorFlowMultiBoxDetector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/src/org/tensorflow/demo/TensorFlowMultiBoxDetector.java -------------------------------------------------------------------------------- /EyeVis-Android App/src/org/tensorflow/demo/TensorFlowObjectDetectionAPIModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/src/org/tensorflow/demo/TensorFlowObjectDetectionAPIModel.java -------------------------------------------------------------------------------- /EyeVis-Android App/src/org/tensorflow/demo/TensorFlowYoloDetector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/src/org/tensorflow/demo/TensorFlowYoloDetector.java -------------------------------------------------------------------------------- /EyeVis-Android App/src/org/tensorflow/demo/env/BorderedText.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/src/org/tensorflow/demo/env/BorderedText.java -------------------------------------------------------------------------------- /EyeVis-Android App/src/org/tensorflow/demo/env/ImageUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/src/org/tensorflow/demo/env/ImageUtils.java -------------------------------------------------------------------------------- /EyeVis-Android App/src/org/tensorflow/demo/env/Logger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/src/org/tensorflow/demo/env/Logger.java -------------------------------------------------------------------------------- /EyeVis-Android App/src/org/tensorflow/demo/env/Size.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/src/org/tensorflow/demo/env/Size.java -------------------------------------------------------------------------------- /EyeVis-Android App/src/org/tensorflow/demo/env/SplitTimer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/src/org/tensorflow/demo/env/SplitTimer.java -------------------------------------------------------------------------------- /EyeVis-Android App/src/org/tensorflow/demo/tracking/MultiBoxTracker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/src/org/tensorflow/demo/tracking/MultiBoxTracker.java -------------------------------------------------------------------------------- /EyeVis-Android App/src/org/tensorflow/demo/tracking/ObjectTracker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/EyeVis-Android App/src/org/tensorflow/demo/tracking/ObjectTracker.java -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/README.md -------------------------------------------------------------------------------- /object_recognition_detection/.spyproject/codestyle.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/.spyproject/codestyle.ini -------------------------------------------------------------------------------- /object_recognition_detection/.spyproject/encoding.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/.spyproject/encoding.ini -------------------------------------------------------------------------------- /object_recognition_detection/.spyproject/vcs.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/.spyproject/vcs.ini -------------------------------------------------------------------------------- /object_recognition_detection/.spyproject/workspace.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/.spyproject/workspace.ini -------------------------------------------------------------------------------- /object_recognition_detection/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/BUILD -------------------------------------------------------------------------------- /object_recognition_detection/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/CONTRIBUTING.md -------------------------------------------------------------------------------- /object_recognition_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/README.md -------------------------------------------------------------------------------- /object_recognition_detection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /object_recognition_detection/__pycache__/error.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/__pycache__/error.cpython-36.pyc -------------------------------------------------------------------------------- /object_recognition_detection/__pycache__/pytesser.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/__pycache__/pytesser.cpython-36.pyc -------------------------------------------------------------------------------- /object_recognition_detection/__pycache__/util.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/__pycache__/util.cpython-36.pyc -------------------------------------------------------------------------------- /object_recognition_detection/anchor_generators/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/anchor_generators/BUILD -------------------------------------------------------------------------------- /object_recognition_detection/anchor_generators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /object_recognition_detection/anchor_generators/grid_anchor_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/anchor_generators/grid_anchor_generator.py -------------------------------------------------------------------------------- /object_recognition_detection/anchor_generators/grid_anchor_generator_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/anchor_generators/grid_anchor_generator_test.py -------------------------------------------------------------------------------- /object_recognition_detection/anchor_generators/multiple_grid_anchor_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/anchor_generators/multiple_grid_anchor_generator.py -------------------------------------------------------------------------------- /object_recognition_detection/anchor_generators/multiple_grid_anchor_generator_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/anchor_generators/multiple_grid_anchor_generator_test.py -------------------------------------------------------------------------------- /object_recognition_detection/box_coders/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/box_coders/BUILD -------------------------------------------------------------------------------- /object_recognition_detection/box_coders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /object_recognition_detection/box_coders/faster_rcnn_box_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/box_coders/faster_rcnn_box_coder.py -------------------------------------------------------------------------------- /object_recognition_detection/box_coders/faster_rcnn_box_coder_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/box_coders/faster_rcnn_box_coder_test.py -------------------------------------------------------------------------------- /object_recognition_detection/box_coders/keypoint_box_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/box_coders/keypoint_box_coder.py -------------------------------------------------------------------------------- /object_recognition_detection/box_coders/keypoint_box_coder_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/box_coders/keypoint_box_coder_test.py -------------------------------------------------------------------------------- /object_recognition_detection/box_coders/mean_stddev_box_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/box_coders/mean_stddev_box_coder.py -------------------------------------------------------------------------------- /object_recognition_detection/box_coders/mean_stddev_box_coder_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/box_coders/mean_stddev_box_coder_test.py -------------------------------------------------------------------------------- /object_recognition_detection/box_coders/square_box_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/box_coders/square_box_coder.py -------------------------------------------------------------------------------- /object_recognition_detection/box_coders/square_box_coder_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/box_coders/square_box_coder_test.py -------------------------------------------------------------------------------- /object_recognition_detection/builders/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/builders/BUILD -------------------------------------------------------------------------------- /object_recognition_detection/builders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /object_recognition_detection/builders/anchor_generator_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/builders/anchor_generator_builder.py -------------------------------------------------------------------------------- /object_recognition_detection/builders/anchor_generator_builder_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/builders/anchor_generator_builder_test.py -------------------------------------------------------------------------------- /object_recognition_detection/builders/box_coder_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/builders/box_coder_builder.py -------------------------------------------------------------------------------- /object_recognition_detection/builders/box_coder_builder_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/builders/box_coder_builder_test.py -------------------------------------------------------------------------------- /object_recognition_detection/builders/box_predictor_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/builders/box_predictor_builder.py -------------------------------------------------------------------------------- /object_recognition_detection/builders/box_predictor_builder_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/builders/box_predictor_builder_test.py -------------------------------------------------------------------------------- /object_recognition_detection/builders/hyperparams_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/builders/hyperparams_builder.py -------------------------------------------------------------------------------- /object_recognition_detection/builders/hyperparams_builder_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/builders/hyperparams_builder_test.py -------------------------------------------------------------------------------- /object_recognition_detection/builders/image_resizer_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/builders/image_resizer_builder.py -------------------------------------------------------------------------------- /object_recognition_detection/builders/image_resizer_builder_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/builders/image_resizer_builder_test.py -------------------------------------------------------------------------------- /object_recognition_detection/builders/input_reader_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/builders/input_reader_builder.py -------------------------------------------------------------------------------- /object_recognition_detection/builders/input_reader_builder_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/builders/input_reader_builder_test.py -------------------------------------------------------------------------------- /object_recognition_detection/builders/losses_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/builders/losses_builder.py -------------------------------------------------------------------------------- /object_recognition_detection/builders/losses_builder_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/builders/losses_builder_test.py -------------------------------------------------------------------------------- /object_recognition_detection/builders/matcher_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/builders/matcher_builder.py -------------------------------------------------------------------------------- /object_recognition_detection/builders/matcher_builder_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/builders/matcher_builder_test.py -------------------------------------------------------------------------------- /object_recognition_detection/builders/model_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/builders/model_builder.py -------------------------------------------------------------------------------- /object_recognition_detection/builders/model_builder_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/builders/model_builder_test.py -------------------------------------------------------------------------------- /object_recognition_detection/builders/optimizer_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/builders/optimizer_builder.py -------------------------------------------------------------------------------- /object_recognition_detection/builders/optimizer_builder_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/builders/optimizer_builder_test.py -------------------------------------------------------------------------------- /object_recognition_detection/builders/post_processing_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/builders/post_processing_builder.py -------------------------------------------------------------------------------- /object_recognition_detection/builders/post_processing_builder_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/builders/post_processing_builder_test.py -------------------------------------------------------------------------------- /object_recognition_detection/builders/preprocessor_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/builders/preprocessor_builder.py -------------------------------------------------------------------------------- /object_recognition_detection/builders/preprocessor_builder_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/builders/preprocessor_builder_test.py -------------------------------------------------------------------------------- /object_recognition_detection/builders/region_similarity_calculator_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/builders/region_similarity_calculator_builder.py -------------------------------------------------------------------------------- /object_recognition_detection/builders/region_similarity_calculator_builder_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/builders/region_similarity_calculator_builder_test.py -------------------------------------------------------------------------------- /object_recognition_detection/categories_places365.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/categories_places365.txt -------------------------------------------------------------------------------- /object_recognition_detection/core/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/core/BUILD -------------------------------------------------------------------------------- /object_recognition_detection/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /object_recognition_detection/core/anchor_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/core/anchor_generator.py -------------------------------------------------------------------------------- /object_recognition_detection/core/balanced_positive_negative_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/core/balanced_positive_negative_sampler.py -------------------------------------------------------------------------------- /object_recognition_detection/core/balanced_positive_negative_sampler_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/core/balanced_positive_negative_sampler_test.py -------------------------------------------------------------------------------- /object_recognition_detection/core/batcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/core/batcher.py -------------------------------------------------------------------------------- /object_recognition_detection/core/batcher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/core/batcher_test.py -------------------------------------------------------------------------------- /object_recognition_detection/core/box_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/core/box_coder.py -------------------------------------------------------------------------------- /object_recognition_detection/core/box_coder_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/core/box_coder_test.py -------------------------------------------------------------------------------- /object_recognition_detection/core/box_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/core/box_list.py -------------------------------------------------------------------------------- /object_recognition_detection/core/box_list_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/core/box_list_ops.py -------------------------------------------------------------------------------- /object_recognition_detection/core/box_list_ops_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/core/box_list_ops_test.py -------------------------------------------------------------------------------- /object_recognition_detection/core/box_list_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/core/box_list_test.py -------------------------------------------------------------------------------- /object_recognition_detection/core/box_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/core/box_predictor.py -------------------------------------------------------------------------------- /object_recognition_detection/core/box_predictor_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/core/box_predictor_test.py -------------------------------------------------------------------------------- /object_recognition_detection/core/data_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/core/data_decoder.py -------------------------------------------------------------------------------- /object_recognition_detection/core/keypoint_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/core/keypoint_ops.py -------------------------------------------------------------------------------- /object_recognition_detection/core/keypoint_ops_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/core/keypoint_ops_test.py -------------------------------------------------------------------------------- /object_recognition_detection/core/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/core/losses.py -------------------------------------------------------------------------------- /object_recognition_detection/core/losses_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/core/losses_test.py -------------------------------------------------------------------------------- /object_recognition_detection/core/matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/core/matcher.py -------------------------------------------------------------------------------- /object_recognition_detection/core/matcher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/core/matcher_test.py -------------------------------------------------------------------------------- /object_recognition_detection/core/minibatch_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/core/minibatch_sampler.py -------------------------------------------------------------------------------- /object_recognition_detection/core/minibatch_sampler_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/core/minibatch_sampler_test.py -------------------------------------------------------------------------------- /object_recognition_detection/core/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/core/model.py -------------------------------------------------------------------------------- /object_recognition_detection/core/post_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/core/post_processing.py -------------------------------------------------------------------------------- /object_recognition_detection/core/post_processing_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/core/post_processing_test.py -------------------------------------------------------------------------------- /object_recognition_detection/core/prefetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/core/prefetcher.py -------------------------------------------------------------------------------- /object_recognition_detection/core/prefetcher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/core/prefetcher_test.py -------------------------------------------------------------------------------- /object_recognition_detection/core/preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/core/preprocessor.py -------------------------------------------------------------------------------- /object_recognition_detection/core/preprocessor_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/core/preprocessor_test.py -------------------------------------------------------------------------------- /object_recognition_detection/core/region_similarity_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/core/region_similarity_calculator.py -------------------------------------------------------------------------------- /object_recognition_detection/core/region_similarity_calculator_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/core/region_similarity_calculator_test.py -------------------------------------------------------------------------------- /object_recognition_detection/core/standard_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/core/standard_fields.py -------------------------------------------------------------------------------- /object_recognition_detection/core/target_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/core/target_assigner.py -------------------------------------------------------------------------------- /object_recognition_detection/core/target_assigner_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/core/target_assigner_test.py -------------------------------------------------------------------------------- /object_recognition_detection/create_pascal_tf_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/create_pascal_tf_record.py -------------------------------------------------------------------------------- /object_recognition_detection/create_pascal_tf_record_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/create_pascal_tf_record_test.py -------------------------------------------------------------------------------- /object_recognition_detection/create_pet_tf_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/create_pet_tf_record.py -------------------------------------------------------------------------------- /object_recognition_detection/data/mscoco_label_map.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/data/mscoco_label_map.pbtxt -------------------------------------------------------------------------------- /object_recognition_detection/data/pascal_label_map.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/data/pascal_label_map.pbtxt -------------------------------------------------------------------------------- /object_recognition_detection/data/pet_label_map.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/data/pet_label_map.pbtxt -------------------------------------------------------------------------------- /object_recognition_detection/data/ssd_mobilenet_v1_pets.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/data/ssd_mobilenet_v1_pets.config -------------------------------------------------------------------------------- /object_recognition_detection/data_decoders/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/data_decoders/BUILD -------------------------------------------------------------------------------- /object_recognition_detection/data_decoders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /object_recognition_detection/data_decoders/tf_example_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/data_decoders/tf_example_decoder.py -------------------------------------------------------------------------------- /object_recognition_detection/data_decoders/tf_example_decoder_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/data_decoders/tf_example_decoder_test.py -------------------------------------------------------------------------------- /object_recognition_detection/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/eval.py -------------------------------------------------------------------------------- /object_recognition_detection/eval_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/eval_util.py -------------------------------------------------------------------------------- /object_recognition_detection/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/evaluator.py -------------------------------------------------------------------------------- /object_recognition_detection/export_inference_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/export_inference_graph.py -------------------------------------------------------------------------------- /object_recognition_detection/exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/exporter.py -------------------------------------------------------------------------------- /object_recognition_detection/exporter_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/exporter_test.py -------------------------------------------------------------------------------- /object_recognition_detection/g3doc/configuring_jobs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/g3doc/configuring_jobs.md -------------------------------------------------------------------------------- /object_recognition_detection/g3doc/defining_your_own_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/g3doc/defining_your_own_model.md -------------------------------------------------------------------------------- /object_recognition_detection/g3doc/detection_model_zoo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/g3doc/detection_model_zoo.md -------------------------------------------------------------------------------- /object_recognition_detection/g3doc/exporting_models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/g3doc/exporting_models.md -------------------------------------------------------------------------------- /object_recognition_detection/g3doc/img/dogs_detections_output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/g3doc/img/dogs_detections_output.jpg -------------------------------------------------------------------------------- /object_recognition_detection/g3doc/img/example_cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/g3doc/img/example_cat.jpg -------------------------------------------------------------------------------- /object_recognition_detection/g3doc/img/kites_detections_output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/g3doc/img/kites_detections_output.jpg -------------------------------------------------------------------------------- /object_recognition_detection/g3doc/img/oxford_pet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/g3doc/img/oxford_pet.png -------------------------------------------------------------------------------- /object_recognition_detection/g3doc/img/tensorboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/g3doc/img/tensorboard.png -------------------------------------------------------------------------------- /object_recognition_detection/g3doc/img/tensorboard2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/g3doc/img/tensorboard2.png -------------------------------------------------------------------------------- /object_recognition_detection/g3doc/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/g3doc/installation.md -------------------------------------------------------------------------------- /object_recognition_detection/g3doc/preparing_inputs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/g3doc/preparing_inputs.md -------------------------------------------------------------------------------- /object_recognition_detection/g3doc/running_locally.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/g3doc/running_locally.md -------------------------------------------------------------------------------- /object_recognition_detection/g3doc/running_notebook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/g3doc/running_notebook.md -------------------------------------------------------------------------------- /object_recognition_detection/g3doc/running_on_cloud.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/g3doc/running_on_cloud.md -------------------------------------------------------------------------------- /object_recognition_detection/g3doc/running_pets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/g3doc/running_pets.md -------------------------------------------------------------------------------- /object_recognition_detection/g3doc/using_your_own_dataset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/g3doc/using_your_own_dataset.md -------------------------------------------------------------------------------- /object_recognition_detection/googletranslate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/googletranslate.py -------------------------------------------------------------------------------- /object_recognition_detection/matchers/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/matchers/BUILD -------------------------------------------------------------------------------- /object_recognition_detection/matchers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /object_recognition_detection/matchers/argmax_matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/matchers/argmax_matcher.py -------------------------------------------------------------------------------- /object_recognition_detection/matchers/argmax_matcher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/matchers/argmax_matcher_test.py -------------------------------------------------------------------------------- /object_recognition_detection/matchers/bipartite_matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/matchers/bipartite_matcher.py -------------------------------------------------------------------------------- /object_recognition_detection/matchers/bipartite_matcher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/matchers/bipartite_matcher_test.py -------------------------------------------------------------------------------- /object_recognition_detection/meta_architectures/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/meta_architectures/BUILD -------------------------------------------------------------------------------- /object_recognition_detection/meta_architectures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /object_recognition_detection/meta_architectures/faster_rcnn_meta_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/meta_architectures/faster_rcnn_meta_arch.py -------------------------------------------------------------------------------- /object_recognition_detection/meta_architectures/faster_rcnn_meta_arch_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/meta_architectures/faster_rcnn_meta_arch_test.py -------------------------------------------------------------------------------- /object_recognition_detection/meta_architectures/faster_rcnn_meta_arch_test_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/meta_architectures/faster_rcnn_meta_arch_test_lib.py -------------------------------------------------------------------------------- /object_recognition_detection/meta_architectures/rfcn_meta_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/meta_architectures/rfcn_meta_arch.py -------------------------------------------------------------------------------- /object_recognition_detection/meta_architectures/rfcn_meta_arch_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/meta_architectures/rfcn_meta_arch_test.py -------------------------------------------------------------------------------- /object_recognition_detection/meta_architectures/ssd_meta_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/meta_architectures/ssd_meta_arch.py -------------------------------------------------------------------------------- /object_recognition_detection/meta_architectures/ssd_meta_arch_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/meta_architectures/ssd_meta_arch_test.py -------------------------------------------------------------------------------- /object_recognition_detection/models/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/models/BUILD -------------------------------------------------------------------------------- /object_recognition_detection/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /object_recognition_detection/models/faster_rcnn_resnet_v1_feature_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/models/faster_rcnn_resnet_v1_feature_extractor.py -------------------------------------------------------------------------------- /object_recognition_detection/models/faster_rcnn_resnet_v1_feature_extractor_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/models/faster_rcnn_resnet_v1_feature_extractor_test.py -------------------------------------------------------------------------------- /object_recognition_detection/models/feature_map_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/models/feature_map_generators.py -------------------------------------------------------------------------------- /object_recognition_detection/models/feature_map_generators_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/models/feature_map_generators_test.py -------------------------------------------------------------------------------- /object_recognition_detection/models/ssd_feature_extractor_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/models/ssd_feature_extractor_test.py -------------------------------------------------------------------------------- /object_recognition_detection/models/ssd_inception_v2_feature_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/models/ssd_inception_v2_feature_extractor.py -------------------------------------------------------------------------------- /object_recognition_detection/models/ssd_inception_v2_feature_extractor_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/models/ssd_inception_v2_feature_extractor_test.py -------------------------------------------------------------------------------- /object_recognition_detection/models/ssd_mobilenet_v1_feature_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/models/ssd_mobilenet_v1_feature_extractor.py -------------------------------------------------------------------------------- /object_recognition_detection/models/ssd_mobilenet_v1_feature_extractor_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/models/ssd_mobilenet_v1_feature_extractor_test.py -------------------------------------------------------------------------------- /object_recognition_detection/mysql-connector-java-5.1.45/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/mysql-connector-java-5.1.45/CHANGES -------------------------------------------------------------------------------- /object_recognition_detection/mysql-connector-java-5.1.45/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/mysql-connector-java-5.1.45/COPYING -------------------------------------------------------------------------------- /object_recognition_detection/mysql-connector-java-5.1.45/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/mysql-connector-java-5.1.45/README -------------------------------------------------------------------------------- /object_recognition_detection/mysql-connector-java-5.1.45/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/mysql-connector-java-5.1.45/README.txt -------------------------------------------------------------------------------- /object_recognition_detection/mysql-connector-java-5.1.45/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/mysql-connector-java-5.1.45/build.xml -------------------------------------------------------------------------------- /object_recognition_detection/mysql-connector-java-5.1.45/src/com/mysql/jdbc/Blob.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/mysql-connector-java-5.1.45/src/com/mysql/jdbc/Blob.java -------------------------------------------------------------------------------- /object_recognition_detection/mysql-connector-java-5.1.45/src/com/mysql/jdbc/Clob.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/mysql-connector-java-5.1.45/src/com/mysql/jdbc/Clob.java -------------------------------------------------------------------------------- /object_recognition_detection/mysql-connector-java-5.1.45/src/com/mysql/jdbc/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/mysql-connector-java-5.1.45/src/com/mysql/jdbc/Util.java -------------------------------------------------------------------------------- /object_recognition_detection/mysql-connector-java-5.1.45/src/doc/sources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/mysql-connector-java-5.1.45/src/doc/sources/pom.xml -------------------------------------------------------------------------------- /object_recognition_detection/mysql-connector-java-5.1.45/src/lib/c3p0-0.9.1-pre6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/mysql-connector-java-5.1.45/src/lib/c3p0-0.9.1-pre6.jar -------------------------------------------------------------------------------- /object_recognition_detection/mysql-connector-java-5.1.45/src/lib/slf4j-api-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/mysql-connector-java-5.1.45/src/lib/slf4j-api-1.6.1.jar -------------------------------------------------------------------------------- /object_recognition_detection/object_detection_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/object_detection_tutorial.ipynb -------------------------------------------------------------------------------- /object_recognition_detection/object_detection_tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/object_detection_tutorial.py -------------------------------------------------------------------------------- /object_recognition_detection/object_detection_webcam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/object_detection_webcam.py -------------------------------------------------------------------------------- /object_recognition_detection/protos/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/BUILD -------------------------------------------------------------------------------- /object_recognition_detection/protos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /object_recognition_detection/protos/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /object_recognition_detection/protos/anchor_generator.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/anchor_generator.proto -------------------------------------------------------------------------------- /object_recognition_detection/protos/anchor_generator_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/anchor_generator_pb2.py -------------------------------------------------------------------------------- /object_recognition_detection/protos/argmax_matcher.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/argmax_matcher.proto -------------------------------------------------------------------------------- /object_recognition_detection/protos/argmax_matcher_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/argmax_matcher_pb2.py -------------------------------------------------------------------------------- /object_recognition_detection/protos/bipartite_matcher.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/bipartite_matcher.proto -------------------------------------------------------------------------------- /object_recognition_detection/protos/bipartite_matcher_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/bipartite_matcher_pb2.py -------------------------------------------------------------------------------- /object_recognition_detection/protos/box_coder.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/box_coder.proto -------------------------------------------------------------------------------- /object_recognition_detection/protos/box_coder_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/box_coder_pb2.py -------------------------------------------------------------------------------- /object_recognition_detection/protos/box_predictor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/box_predictor.proto -------------------------------------------------------------------------------- /object_recognition_detection/protos/box_predictor_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/box_predictor_pb2.py -------------------------------------------------------------------------------- /object_recognition_detection/protos/eval.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/eval.proto -------------------------------------------------------------------------------- /object_recognition_detection/protos/eval_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/eval_pb2.py -------------------------------------------------------------------------------- /object_recognition_detection/protos/faster_rcnn.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/faster_rcnn.proto -------------------------------------------------------------------------------- /object_recognition_detection/protos/faster_rcnn_box_coder.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/faster_rcnn_box_coder.proto -------------------------------------------------------------------------------- /object_recognition_detection/protos/faster_rcnn_box_coder_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/faster_rcnn_box_coder_pb2.py -------------------------------------------------------------------------------- /object_recognition_detection/protos/faster_rcnn_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/faster_rcnn_pb2.py -------------------------------------------------------------------------------- /object_recognition_detection/protos/grid_anchor_generator.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/grid_anchor_generator.proto -------------------------------------------------------------------------------- /object_recognition_detection/protos/grid_anchor_generator_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/grid_anchor_generator_pb2.py -------------------------------------------------------------------------------- /object_recognition_detection/protos/hyperparams.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/hyperparams.proto -------------------------------------------------------------------------------- /object_recognition_detection/protos/hyperparams_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/hyperparams_pb2.py -------------------------------------------------------------------------------- /object_recognition_detection/protos/image_resizer.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/image_resizer.proto -------------------------------------------------------------------------------- /object_recognition_detection/protos/image_resizer_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/image_resizer_pb2.py -------------------------------------------------------------------------------- /object_recognition_detection/protos/input_reader.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/input_reader.proto -------------------------------------------------------------------------------- /object_recognition_detection/protos/input_reader_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/input_reader_pb2.py -------------------------------------------------------------------------------- /object_recognition_detection/protos/losses.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/losses.proto -------------------------------------------------------------------------------- /object_recognition_detection/protos/losses_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/losses_pb2.py -------------------------------------------------------------------------------- /object_recognition_detection/protos/matcher.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/matcher.proto -------------------------------------------------------------------------------- /object_recognition_detection/protos/matcher_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/matcher_pb2.py -------------------------------------------------------------------------------- /object_recognition_detection/protos/mean_stddev_box_coder.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/mean_stddev_box_coder.proto -------------------------------------------------------------------------------- /object_recognition_detection/protos/mean_stddev_box_coder_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/mean_stddev_box_coder_pb2.py -------------------------------------------------------------------------------- /object_recognition_detection/protos/model.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/model.proto -------------------------------------------------------------------------------- /object_recognition_detection/protos/model_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/model_pb2.py -------------------------------------------------------------------------------- /object_recognition_detection/protos/optimizer.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/optimizer.proto -------------------------------------------------------------------------------- /object_recognition_detection/protos/optimizer_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/optimizer_pb2.py -------------------------------------------------------------------------------- /object_recognition_detection/protos/pipeline.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/pipeline.proto -------------------------------------------------------------------------------- /object_recognition_detection/protos/pipeline_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/pipeline_pb2.py -------------------------------------------------------------------------------- /object_recognition_detection/protos/post_processing.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/post_processing.proto -------------------------------------------------------------------------------- /object_recognition_detection/protos/post_processing_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/post_processing_pb2.py -------------------------------------------------------------------------------- /object_recognition_detection/protos/preprocessor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/preprocessor.proto -------------------------------------------------------------------------------- /object_recognition_detection/protos/preprocessor_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/preprocessor_pb2.py -------------------------------------------------------------------------------- /object_recognition_detection/protos/region_similarity_calculator.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/region_similarity_calculator.proto -------------------------------------------------------------------------------- /object_recognition_detection/protos/region_similarity_calculator_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/region_similarity_calculator_pb2.py -------------------------------------------------------------------------------- /object_recognition_detection/protos/square_box_coder.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/square_box_coder.proto -------------------------------------------------------------------------------- /object_recognition_detection/protos/square_box_coder_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/square_box_coder_pb2.py -------------------------------------------------------------------------------- /object_recognition_detection/protos/ssd.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/ssd.proto -------------------------------------------------------------------------------- /object_recognition_detection/protos/ssd_anchor_generator.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/ssd_anchor_generator.proto -------------------------------------------------------------------------------- /object_recognition_detection/protos/ssd_anchor_generator_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/ssd_anchor_generator_pb2.py -------------------------------------------------------------------------------- /object_recognition_detection/protos/ssd_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/ssd_pb2.py -------------------------------------------------------------------------------- /object_recognition_detection/protos/string_int_label_map.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/string_int_label_map.proto -------------------------------------------------------------------------------- /object_recognition_detection/protos/string_int_label_map_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/string_int_label_map_pb2.py -------------------------------------------------------------------------------- /object_recognition_detection/protos/train.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/train.proto -------------------------------------------------------------------------------- /object_recognition_detection/protos/train_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/protos/train_pb2.py -------------------------------------------------------------------------------- /object_recognition_detection/run_placesCNN_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/run_placesCNN_basic.py -------------------------------------------------------------------------------- /object_recognition_detection/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/sample.py -------------------------------------------------------------------------------- /object_recognition_detection/samples/cloud/cloud.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/samples/cloud/cloud.yml -------------------------------------------------------------------------------- /object_recognition_detection/samples/configs/faster_rcnn_resnet101_pets.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/samples/configs/faster_rcnn_resnet101_pets.config -------------------------------------------------------------------------------- /object_recognition_detection/samples/configs/faster_rcnn_resnet101_voc07.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/samples/configs/faster_rcnn_resnet101_voc07.config -------------------------------------------------------------------------------- /object_recognition_detection/samples/configs/faster_rcnn_resnet152_pets.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/samples/configs/faster_rcnn_resnet152_pets.config -------------------------------------------------------------------------------- /object_recognition_detection/samples/configs/faster_rcnn_resnet50_pets.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/samples/configs/faster_rcnn_resnet50_pets.config -------------------------------------------------------------------------------- /object_recognition_detection/samples/configs/rfcn_resnet101_pets.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/samples/configs/rfcn_resnet101_pets.config -------------------------------------------------------------------------------- /object_recognition_detection/samples/configs/ssd_inception_v2_pets.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/samples/configs/ssd_inception_v2_pets.config -------------------------------------------------------------------------------- /object_recognition_detection/samples/configs/ssd_mobilenet_v1_pets.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/samples/configs/ssd_mobilenet_v1_pets.config -------------------------------------------------------------------------------- /object_recognition_detection/ssd_mobilenet_v1_coco_11_06_2017/pipeline.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/ssd_mobilenet_v1_coco_11_06_2017/pipeline.config -------------------------------------------------------------------------------- /object_recognition_detection/ssd_mobilenet_v1_coco_2017_11_17/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/ssd_mobilenet_v1_coco_2017_11_17/checkpoint -------------------------------------------------------------------------------- /object_recognition_detection/ssd_mobilenet_v1_coco_2017_11_17/model.ckpt.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/ssd_mobilenet_v1_coco_2017_11_17/model.ckpt.index -------------------------------------------------------------------------------- /object_recognition_detection/ssd_mobilenet_v1_coco_2017_11_17/model.ckpt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/ssd_mobilenet_v1_coco_2017_11_17/model.ckpt.meta -------------------------------------------------------------------------------- /object_recognition_detection/ssd_mobilenet_v1_coco_2017_11_17/pipeline.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/ssd_mobilenet_v1_coco_2017_11_17/pipeline.config -------------------------------------------------------------------------------- /object_recognition_detection/test_images/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/test_images/image1.jpg -------------------------------------------------------------------------------- /object_recognition_detection/test_images/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/test_images/image2.jpg -------------------------------------------------------------------------------- /object_recognition_detection/test_images/image_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/test_images/image_info.txt -------------------------------------------------------------------------------- /object_recognition_detection/textcleaner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/textcleaner -------------------------------------------------------------------------------- /object_recognition_detection/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/train.py -------------------------------------------------------------------------------- /object_recognition_detection/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/trainer.py -------------------------------------------------------------------------------- /object_recognition_detection/trainer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/trainer_test.py -------------------------------------------------------------------------------- /object_recognition_detection/untitled2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/untitled2.py -------------------------------------------------------------------------------- /object_recognition_detection/utils/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/BUILD -------------------------------------------------------------------------------- /object_recognition_detection/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /object_recognition_detection/utils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /object_recognition_detection/utils/__pycache__/label_map_util.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/__pycache__/label_map_util.cpython-36.pyc -------------------------------------------------------------------------------- /object_recognition_detection/utils/__pycache__/visualization_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/__pycache__/visualization_utils.cpython-36.pyc -------------------------------------------------------------------------------- /object_recognition_detection/utils/category_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/category_util.py -------------------------------------------------------------------------------- /object_recognition_detection/utils/category_util_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/category_util_test.py -------------------------------------------------------------------------------- /object_recognition_detection/utils/dataset_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/dataset_util.py -------------------------------------------------------------------------------- /object_recognition_detection/utils/dataset_util_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/dataset_util_test.py -------------------------------------------------------------------------------- /object_recognition_detection/utils/label_map_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/label_map_util.py -------------------------------------------------------------------------------- /object_recognition_detection/utils/label_map_util_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/label_map_util_test.py -------------------------------------------------------------------------------- /object_recognition_detection/utils/learning_schedules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/learning_schedules.py -------------------------------------------------------------------------------- /object_recognition_detection/utils/learning_schedules_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/learning_schedules_test.py -------------------------------------------------------------------------------- /object_recognition_detection/utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/metrics.py -------------------------------------------------------------------------------- /object_recognition_detection/utils/metrics_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/metrics_test.py -------------------------------------------------------------------------------- /object_recognition_detection/utils/np_box_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/np_box_list.py -------------------------------------------------------------------------------- /object_recognition_detection/utils/np_box_list_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/np_box_list_ops.py -------------------------------------------------------------------------------- /object_recognition_detection/utils/np_box_list_ops_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/np_box_list_ops_test.py -------------------------------------------------------------------------------- /object_recognition_detection/utils/np_box_list_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/np_box_list_test.py -------------------------------------------------------------------------------- /object_recognition_detection/utils/np_box_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/np_box_ops.py -------------------------------------------------------------------------------- /object_recognition_detection/utils/np_box_ops_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/np_box_ops_test.py -------------------------------------------------------------------------------- /object_recognition_detection/utils/object_detection_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/object_detection_evaluation.py -------------------------------------------------------------------------------- /object_recognition_detection/utils/object_detection_evaluation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/object_detection_evaluation_test.py -------------------------------------------------------------------------------- /object_recognition_detection/utils/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/ops.py -------------------------------------------------------------------------------- /object_recognition_detection/utils/ops_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/ops_test.py -------------------------------------------------------------------------------- /object_recognition_detection/utils/per_image_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/per_image_evaluation.py -------------------------------------------------------------------------------- /object_recognition_detection/utils/per_image_evaluation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/per_image_evaluation_test.py -------------------------------------------------------------------------------- /object_recognition_detection/utils/shape_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/shape_utils.py -------------------------------------------------------------------------------- /object_recognition_detection/utils/shape_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/shape_utils_test.py -------------------------------------------------------------------------------- /object_recognition_detection/utils/static_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/static_shape.py -------------------------------------------------------------------------------- /object_recognition_detection/utils/static_shape_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/static_shape_test.py -------------------------------------------------------------------------------- /object_recognition_detection/utils/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/test_utils.py -------------------------------------------------------------------------------- /object_recognition_detection/utils/test_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/test_utils_test.py -------------------------------------------------------------------------------- /object_recognition_detection/utils/variables_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/variables_helper.py -------------------------------------------------------------------------------- /object_recognition_detection/utils/variables_helper_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/variables_helper_test.py -------------------------------------------------------------------------------- /object_recognition_detection/utils/visualization_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/visualization_utils.py -------------------------------------------------------------------------------- /object_recognition_detection/utils/visualization_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/visualization_utils_test.py -------------------------------------------------------------------------------- /object_recognition_detection/utils/visualization_utilss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khitk9738/EyeVis/HEAD/object_recognition_detection/utils/visualization_utilss.py --------------------------------------------------------------------------------