├── AndroidManifest.xml ├── README.md ├── bin ├── AndroidManifest.xml ├── R.txt ├── android-object-recog.apk ├── android-object-recog.jar ├── classes.dex ├── classes │ ├── com │ │ └── android_object_recog │ │ │ ├── BuildConfig.class │ │ │ ├── MainActivity$1.class │ │ │ ├── MainActivity$2$1.class │ │ │ ├── MainActivity$2$2.class │ │ │ ├── MainActivity$2.class │ │ │ ├── MainActivity$3.class │ │ │ ├── MainActivity$4$1.class │ │ │ ├── MainActivity$4.class │ │ │ ├── MainActivity$EditViewRunnable.class │ │ │ ├── MainActivity$TTSInitListener.class │ │ │ ├── MainActivity.class │ │ │ ├── R$attr.class │ │ │ ├── R$drawable.class │ │ │ ├── R$id.class │ │ │ ├── R$layout.class │ │ │ ├── R$menu.class │ │ │ ├── R$string.class │ │ │ ├── R$style.class │ │ │ ├── R$styleable.class │ │ │ ├── R.class │ │ │ └── object_recog │ │ │ ├── MatchingStrategy.class │ │ │ ├── ObjectRecognizer.class │ │ │ ├── Utilities$1.class │ │ │ └── Utilities.class │ └── org │ │ └── opencv │ │ ├── R$attr.class │ │ ├── R$id.class │ │ ├── R$styleable.class │ │ └── R.class ├── dexedLibs │ ├── android-support-v4-6d59991163415349ceba181cd6ce7a09.jar │ ├── android-support-v4-c3a3a030300599281961cfe473f238d0.jar │ ├── androidtouchgallery-a16bd5778a2e9ee48356bd36aa5f5500.jar │ ├── jxl-c512d41d7587ef97739d87b490a88a5d.jar │ ├── opencv library - 2.4.5-c1de0c296a011ce3c3a1567f92b5b758.jar │ └── opencv library - 2.4.7.1-4d9ba55bf22955823f30bb7a7c8f3349.jar ├── jarlist.cache ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ └── drawable-xhdpi │ │ └── ic_launcher.png └── resources.ap_ ├── gen ├── com │ └── android_object_recog │ │ ├── BuildConfig.java │ │ └── R.java └── org │ └── opencv │ └── R.java ├── ic_launcher-web.png ├── libs ├── android-support-v4.jar └── jxl.jar ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ └── ic_launcher.png ├── drawable-ldpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── layout │ └── activity_main.xml ├── menu │ └── activity_main.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml └── values │ ├── strings.xml │ └── styles.xml └── src └── com └── android_object_recog ├── MainActivity.java └── object_recog ├── MatchingStrategy.java ├── ObjectRecognizer.java └── Utilities.java /AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 17 | 20 | 23 | 26 | 27 | 32 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/README.md -------------------------------------------------------------------------------- /bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 17 | 20 | 23 | 26 | 27 | 32 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /bin/R.txt: -------------------------------------------------------------------------------- 1 | int attr camera_id 0x7f010001 2 | int attr show_fps 0x7f010000 3 | int drawable ic_launcher 0x7f020000 4 | int id any 0x7f040000 5 | int id back 0x7f040001 6 | int id cameraView 0x7f040005 7 | int id detectedObjTextView 0x7f040006 8 | int id front 0x7f040002 9 | int id scrollLinearLayout 0x7f040004 10 | int id scrollView 0x7f040003 11 | int layout activity_main 0x7f030000 12 | int menu activity_main 0x7f070000 13 | int string app_name 0x7f050000 14 | int string menu_settings 0x7f050001 15 | int string title_activity_main 0x7f050002 16 | int style AppBaseTheme 0x7f060000 17 | int style AppTheme 0x7f060001 18 | int[] styleable CameraBridgeViewBase { 0x7f010000, 0x7f010001 } 19 | int styleable CameraBridgeViewBase_camera_id 1 20 | int styleable CameraBridgeViewBase_show_fps 0 21 | -------------------------------------------------------------------------------- /bin/android-object-recog.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/android-object-recog.apk -------------------------------------------------------------------------------- /bin/android-object-recog.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/android-object-recog.jar -------------------------------------------------------------------------------- /bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/classes.dex -------------------------------------------------------------------------------- /bin/classes/com/android_object_recog/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/classes/com/android_object_recog/BuildConfig.class -------------------------------------------------------------------------------- /bin/classes/com/android_object_recog/MainActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/classes/com/android_object_recog/MainActivity$1.class -------------------------------------------------------------------------------- /bin/classes/com/android_object_recog/MainActivity$2$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/classes/com/android_object_recog/MainActivity$2$1.class -------------------------------------------------------------------------------- /bin/classes/com/android_object_recog/MainActivity$2$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/classes/com/android_object_recog/MainActivity$2$2.class -------------------------------------------------------------------------------- /bin/classes/com/android_object_recog/MainActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/classes/com/android_object_recog/MainActivity$2.class -------------------------------------------------------------------------------- /bin/classes/com/android_object_recog/MainActivity$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/classes/com/android_object_recog/MainActivity$3.class -------------------------------------------------------------------------------- /bin/classes/com/android_object_recog/MainActivity$4$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/classes/com/android_object_recog/MainActivity$4$1.class -------------------------------------------------------------------------------- /bin/classes/com/android_object_recog/MainActivity$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/classes/com/android_object_recog/MainActivity$4.class -------------------------------------------------------------------------------- /bin/classes/com/android_object_recog/MainActivity$EditViewRunnable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/classes/com/android_object_recog/MainActivity$EditViewRunnable.class -------------------------------------------------------------------------------- /bin/classes/com/android_object_recog/MainActivity$TTSInitListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/classes/com/android_object_recog/MainActivity$TTSInitListener.class -------------------------------------------------------------------------------- /bin/classes/com/android_object_recog/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/classes/com/android_object_recog/MainActivity.class -------------------------------------------------------------------------------- /bin/classes/com/android_object_recog/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/classes/com/android_object_recog/R$attr.class -------------------------------------------------------------------------------- /bin/classes/com/android_object_recog/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/classes/com/android_object_recog/R$drawable.class -------------------------------------------------------------------------------- /bin/classes/com/android_object_recog/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/classes/com/android_object_recog/R$id.class -------------------------------------------------------------------------------- /bin/classes/com/android_object_recog/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/classes/com/android_object_recog/R$layout.class -------------------------------------------------------------------------------- /bin/classes/com/android_object_recog/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/classes/com/android_object_recog/R$menu.class -------------------------------------------------------------------------------- /bin/classes/com/android_object_recog/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/classes/com/android_object_recog/R$string.class -------------------------------------------------------------------------------- /bin/classes/com/android_object_recog/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/classes/com/android_object_recog/R$style.class -------------------------------------------------------------------------------- /bin/classes/com/android_object_recog/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/classes/com/android_object_recog/R$styleable.class -------------------------------------------------------------------------------- /bin/classes/com/android_object_recog/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/classes/com/android_object_recog/R.class -------------------------------------------------------------------------------- /bin/classes/com/android_object_recog/object_recog/MatchingStrategy.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/classes/com/android_object_recog/object_recog/MatchingStrategy.class -------------------------------------------------------------------------------- /bin/classes/com/android_object_recog/object_recog/ObjectRecognizer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/classes/com/android_object_recog/object_recog/ObjectRecognizer.class -------------------------------------------------------------------------------- /bin/classes/com/android_object_recog/object_recog/Utilities$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/classes/com/android_object_recog/object_recog/Utilities$1.class -------------------------------------------------------------------------------- /bin/classes/com/android_object_recog/object_recog/Utilities.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/classes/com/android_object_recog/object_recog/Utilities.class -------------------------------------------------------------------------------- /bin/classes/org/opencv/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/classes/org/opencv/R$attr.class -------------------------------------------------------------------------------- /bin/classes/org/opencv/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/classes/org/opencv/R$id.class -------------------------------------------------------------------------------- /bin/classes/org/opencv/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/classes/org/opencv/R$styleable.class -------------------------------------------------------------------------------- /bin/classes/org/opencv/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/classes/org/opencv/R.class -------------------------------------------------------------------------------- /bin/dexedLibs/android-support-v4-6d59991163415349ceba181cd6ce7a09.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/dexedLibs/android-support-v4-6d59991163415349ceba181cd6ce7a09.jar -------------------------------------------------------------------------------- /bin/dexedLibs/android-support-v4-c3a3a030300599281961cfe473f238d0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/dexedLibs/android-support-v4-c3a3a030300599281961cfe473f238d0.jar -------------------------------------------------------------------------------- /bin/dexedLibs/androidtouchgallery-a16bd5778a2e9ee48356bd36aa5f5500.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/dexedLibs/androidtouchgallery-a16bd5778a2e9ee48356bd36aa5f5500.jar -------------------------------------------------------------------------------- /bin/dexedLibs/jxl-c512d41d7587ef97739d87b490a88a5d.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/dexedLibs/jxl-c512d41d7587ef97739d87b490a88a5d.jar -------------------------------------------------------------------------------- /bin/dexedLibs/opencv library - 2.4.5-c1de0c296a011ce3c3a1567f92b5b758.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/dexedLibs/opencv library - 2.4.5-c1de0c296a011ce3c3a1567f92b5b758.jar -------------------------------------------------------------------------------- /bin/dexedLibs/opencv library - 2.4.7.1-4d9ba55bf22955823f30bb7a7c8f3349.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/dexedLibs/opencv library - 2.4.7.1-4d9ba55bf22955823f30bb7a7c8f3349.jar -------------------------------------------------------------------------------- /bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependecy. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/bin/resources.ap_ -------------------------------------------------------------------------------- /gen/com/android_object_recog/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.android_object_recog; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /gen/com/android_object_recog/R.java: -------------------------------------------------------------------------------- 1 | /* AUTO-GENERATED FILE. DO NOT MODIFY. 2 | * 3 | * This class was automatically generated by the 4 | * aapt tool from the resource data it found. It 5 | * should not be modified by hand. 6 | */ 7 | 8 | package com.android_object_recog; 9 | 10 | public final class R { 11 | public static final class attr { 12 | /**

May be an integer value, such as "100". 13 |

This may also be a reference to a resource (in the form 14 | "@[package:]type:name") or 15 | theme attribute (in the form 16 | "?[package:][type:]name") 17 | containing a value of this type. 18 |

May be one of the following constant values.

19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 |
ConstantValueDescription
any-1
back0
front1
28 | */ 29 | public static final int camera_id=0x7f010001; 30 | /**

Must be a boolean value, either "true" or "false". 31 |

This may also be a reference to a resource (in the form 32 | "@[package:]type:name") or 33 | theme attribute (in the form 34 | "?[package:][type:]name") 35 | containing a value of this type. 36 | */ 37 | public static final int show_fps=0x7f010000; 38 | } 39 | public static final class drawable { 40 | public static final int ic_launcher=0x7f020000; 41 | } 42 | public static final class id { 43 | public static final int any=0x7f040000; 44 | public static final int back=0x7f040001; 45 | public static final int cameraView=0x7f040005; 46 | public static final int detectedObjTextView=0x7f040006; 47 | public static final int front=0x7f040002; 48 | public static final int scrollLinearLayout=0x7f040004; 49 | public static final int scrollView=0x7f040003; 50 | } 51 | public static final class layout { 52 | public static final int activity_main=0x7f030000; 53 | } 54 | public static final class menu { 55 | public static final int activity_main=0x7f070000; 56 | } 57 | public static final class string { 58 | public static final int app_name=0x7f050000; 59 | public static final int menu_settings=0x7f050001; 60 | public static final int title_activity_main=0x7f050002; 61 | } 62 | public static final class style { 63 | /** 64 | Base application theme, dependent on API level. This theme is replaced 65 | by AppBaseTheme from res/values-vXX/styles.xml on newer devices. 66 | 67 | 68 | Theme customizations available in newer API levels can go in 69 | res/values-vXX/styles.xml, while customizations related to 70 | backward-compatibility can go here. 71 | 72 | 73 | Base application theme for API 11+. This theme completely replaces 74 | AppBaseTheme from res/values/styles.xml on API 11+ devices. 75 | 76 | API 11 theme customizations can go here. 77 | 78 | Base application theme for API 14+. This theme completely replaces 79 | AppBaseTheme from BOTH res/values/styles.xml and 80 | res/values-v11/styles.xml on API 14+ devices. 81 | 82 | API 14 theme customizations can go here. 83 | */ 84 | public static final int AppBaseTheme=0x7f060000; 85 | /** Application theme. 86 | All customizations that are NOT specific to a particular API-level can go here. 87 | */ 88 | public static final int AppTheme=0x7f060001; 89 | } 90 | public static final class styleable { 91 | /** Attributes that can be used with a CameraBridgeViewBase. 92 |

Includes the following attributes:

93 | 94 | 95 | 96 | 97 | 98 | 99 |
AttributeDescription
{@link #CameraBridgeViewBase_camera_id com.android_object_recog:camera_id}
{@link #CameraBridgeViewBase_show_fps com.android_object_recog:show_fps}
100 | @see #CameraBridgeViewBase_camera_id 101 | @see #CameraBridgeViewBase_show_fps 102 | */ 103 | public static final int[] CameraBridgeViewBase = { 104 | 0x7f010000, 0x7f010001 105 | }; 106 | /** 107 |

This symbol is the offset where the {@link com.android_object_recog.R.attr#camera_id} 108 | attribute's value can be found in the {@link #CameraBridgeViewBase} array. 109 | 110 | 111 |

May be an integer value, such as "100". 112 |

This may also be a reference to a resource (in the form 113 | "@[package:]type:name") or 114 | theme attribute (in the form 115 | "?[package:][type:]name") 116 | containing a value of this type. 117 |

May be one of the following constant values.

118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 |
ConstantValueDescription
any-1
back0
front1
127 | @attr name android:camera_id 128 | */ 129 | public static final int CameraBridgeViewBase_camera_id = 1; 130 | /** 131 |

This symbol is the offset where the {@link com.android_object_recog.R.attr#show_fps} 132 | attribute's value can be found in the {@link #CameraBridgeViewBase} array. 133 | 134 | 135 |

Must be a boolean value, either "true" or "false". 136 |

This may also be a reference to a resource (in the form 137 | "@[package:]type:name") or 138 | theme attribute (in the form 139 | "?[package:][type:]name") 140 | containing a value of this type. 141 | @attr name android:show_fps 142 | */ 143 | public static final int CameraBridgeViewBase_show_fps = 0; 144 | }; 145 | } 146 | -------------------------------------------------------------------------------- /gen/org/opencv/R.java: -------------------------------------------------------------------------------- 1 | /* AUTO-GENERATED FILE. DO NOT MODIFY. 2 | * 3 | * This class was automatically generated by the 4 | * aapt tool from the resource data it found. It 5 | * should not be modified by hand. 6 | */ 7 | package org.opencv; 8 | 9 | public final class R { 10 | public static final class id { 11 | public static final int back = 0x7f040001; 12 | public static final int front = 0x7f040002; 13 | public static final int any = 0x7f040000; 14 | } 15 | public static final class styleable { 16 | public static final int[] CameraBridgeViewBase = { 0x7f010000, 0x7f010001 }; 17 | public static final int CameraBridgeViewBase_camera_id = 1; 18 | public static final int CameraBridgeViewBase_show_fps = 0; 19 | } 20 | public static final class attr { 21 | public static final int camera_id = 0x7f010001; 22 | public static final int show_fps = 0x7f010000; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/ic_launcher-web.png -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/libs/android-support-v4.jar -------------------------------------------------------------------------------- /libs/jxl.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/libs/jxl.jar -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-17 15 | android.library.reference.1=../OpenCV Library - 2.4.5 16 | android.library=false 17 | -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadanasreldin/android-object-recognition/34986ffeb8cb84bbf54c16cbd2b2416b922b0dd4/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 12 | 13 |