├── .gitattributes ├── AndroidPart ├── Carteller-Android │ ├── .gitignore │ ├── BottomNavigationModule │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── ca │ │ │ │ └── gcastle │ │ │ │ └── bottomnavigation │ │ │ │ ├── behaviour │ │ │ │ ├── BottomNavigationBehavior.java │ │ │ │ └── VerticalScrollingBehavior.java │ │ │ │ ├── listeners │ │ │ │ └── OnChildClickedListener.java │ │ │ │ └── view │ │ │ │ ├── BottomNavigationTabView.java │ │ │ │ ├── BottomNavigationUtils.java │ │ │ │ └── BottomNavigationView.java │ │ │ └── res │ │ │ ├── drawable │ │ │ └── shape_circle_red500_fill_white_outline.xml │ │ │ ├── layout │ │ │ └── view_bottomnavigation_tab.xml │ │ │ └── values │ │ │ ├── attr_bottom_navigation_tab.xml │ │ │ └── colours.xml │ ├── LICENSE │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ ├── release │ │ │ ├── app-release.apk │ │ │ └── output.json │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── shashank │ │ │ │ └── platform │ │ │ │ └── loginui │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── ic_launcher-web.png │ │ │ ├── java │ │ │ │ ├── com │ │ │ │ │ └── shashank │ │ │ │ │ │ └── platform │ │ │ │ │ │ └── loginui │ │ │ │ │ │ ├── CarInfo.java │ │ │ │ │ │ ├── LoginActivity.java │ │ │ │ │ │ ├── OnSwipeTouchListener.java │ │ │ │ │ │ ├── RecognizeFragmenAdapter.java │ │ │ │ │ │ ├── RecognizeFragment.java │ │ │ │ │ │ ├── RegisterActivity.java │ │ │ │ │ │ ├── SelectionActivity.java │ │ │ │ │ │ └── UserinfoFragment.java │ │ │ │ └── handler │ │ │ │ │ └── HttpHandler.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ ├── add_image.png │ │ │ │ ├── buttonshapewhitebg.xml │ │ │ │ ├── good_morning_img.png │ │ │ │ ├── good_night_img.png │ │ │ │ ├── ic_email_white_24dp.xml │ │ │ │ ├── ic_help_black_24dp.png │ │ │ │ ├── ic_help_white_24dp.png │ │ │ │ ├── ic_home_black_24dp.png │ │ │ │ ├── ic_home_white_24dp.png │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ ├── ic_lock_white_24dp.xml │ │ │ │ ├── ic_search_black_24dp.png │ │ │ │ ├── ic_search_white_24dp.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── font │ │ │ │ ├── calibri.ttf │ │ │ │ └── gotham.ttf │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ ├── activity_register.xml │ │ │ │ ├── activity_selection.xml │ │ │ │ ├── fragment_recognize.xml │ │ │ │ └── fragment_userinfo.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_help_black_24dp.png │ │ │ │ ├── ic_help_white_24dp.png │ │ │ │ ├── ic_home_black_24dp.png │ │ │ │ ├── ic_home_white_24dp.png │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ ├── ic_search_black_24dp.png │ │ │ │ └── ic_search_white_24dp.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_help_black_24dp.png │ │ │ │ ├── ic_help_white_24dp.png │ │ │ │ ├── ic_home_black_24dp.png │ │ │ │ ├── ic_home_white_24dp.png │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ ├── ic_search_black_24dp.png │ │ │ │ └── ic_search_white_24dp.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_help_black_24dp.png │ │ │ │ ├── ic_help_white_24dp.png │ │ │ │ ├── ic_home_black_24dp.png │ │ │ │ ├── ic_home_white_24dp.png │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ ├── ic_search_black_24dp.png │ │ │ │ └── ic_search_white_24dp.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_help_black_24dp.png │ │ │ │ ├── ic_help_white_24dp.png │ │ │ │ ├── ic_home_black_24dp.png │ │ │ │ ├── ic_home_white_24dp.png │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ ├── ic_search_black_24dp.png │ │ │ │ └── ic_search_white_24dp.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_help_black_24dp.png │ │ │ │ ├── ic_help_white_24dp.png │ │ │ │ ├── ic_home_black_24dp.png │ │ │ │ ├── ic_home_white_24dp.png │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ ├── ic_search_black_24dp.png │ │ │ │ └── ic_search_white_24dp.png │ │ │ │ └── values │ │ │ │ ├── array.xml │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── shashank │ │ │ └── platform │ │ │ └── loginui │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── release │ ├── app-release.apk │ └── output.json ├── CarInfoTeller └── CarInfoTeller │ ├── .idea │ ├── CarInfoTeller.iml │ ├── dictionaries │ │ └── Robb.xml │ ├── misc.xml │ ├── modules.xml │ └── workspace.xml │ ├── __pycache__ │ └── config.cpython-37.pyc │ ├── base │ ├── __init__.py │ ├── base_data_loader.py │ ├── base_model.py │ └── base_trainer.py │ ├── config.py │ ├── data_processing │ ├── __pycache__ │ │ ├── auto_augment.cpython-37.pyc │ │ └── car_dataset.cpython-37.pyc │ ├── auto_augment.py │ ├── car_dataset.py │ ├── datasets │ │ └── cars_metas │ │ │ ├── cars_meta.mat │ │ │ ├── cars_test_annos.mat │ │ │ └── cars_train_annos.mat │ └── extract_cars.py │ ├── demo.py │ ├── models │ ├── __init__.py │ └── efficentnet.py │ ├── train.py │ └── utils │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-37.pyc │ └── car_info_util.cpython-37.pyc │ └── car_info_util.py ├── CarTeller ├── .idea │ ├── CarTeller.iml │ ├── dictionaries │ │ └── Robb.xml │ ├── encodings.xml │ ├── misc.xml │ ├── modules.xml │ └── workspace.xml ├── CarAttributeTeller │ ├── __init__.py │ └── car_attribute_main.py ├── CarBoardTeller │ ├── __init__.py │ ├── car_board_main.py │ └── config.js ├── CarInfoTeller │ ├── __init__.py │ ├── base │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── base_data_loader.cpython-37.pyc │ │ │ ├── base_model.cpython-37.pyc │ │ │ └── base_trainer.cpython-37.pyc │ │ ├── base_data_loader.py │ │ ├── base_model.py │ │ └── base_trainer.py │ ├── car_info_main.py │ ├── cars_meta.mat │ ├── cars_translated.txt │ ├── logger │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── logger.cpython-37.pyc │ │ │ └── visualization.cpython-37.pyc │ │ ├── logger.py │ │ ├── logger_config.json │ │ └── visualization.py │ ├── model │ │ ├── adabound.py │ │ ├── inception.py │ │ ├── loss.py │ │ ├── metric.py │ │ ├── model.py │ │ ├── resnet.py │ │ ├── squeezenet.py │ │ └── wide_resnet.py │ ├── test_config.json │ ├── train.py │ ├── train2.py │ └── utils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ └── util.cpython-37.pyc │ │ └── util.py ├── CarTypeTellerMore │ ├── __init__.py │ ├── car_type_more_main.py │ └── labels_map.txt ├── CarTypeTellerOne │ ├── __init__.py │ └── car_type_one_main.py ├── DriverBehavior │ ├── __init__.py │ └── behavior_main.py ├── app │ ├── __init__.py │ ├── database.py │ ├── models.py │ └── views.py ├── car_teller.py ├── config.py ├── manage.py └── parse_config.py ├── CarTypeTellerOne ├── .idea │ ├── CarTypeTeller.iml │ ├── misc.xml │ ├── modules.xml │ └── workspace.xml └── CarTypeTeller │ ├── .idea │ ├── CarTypeTeller.iml │ ├── misc.xml │ ├── modules.xml │ └── workspace.xml │ └── models │ ├── CarTypeTeller.py │ └── __init__.py ├── README.md └── html ├── 123.html ├── API.html ├── CarAttribute.html ├── CarBoard.html ├── CarInfo.html ├── CarNumber.html ├── CarType.html ├── DriverBehavior.html ├── LICENSE.txt ├── browserconfig.xml ├── doc ├── TOC.md ├── css.md ├── extend.md ├── faq.md ├── html.md ├── js.md ├── misc.md └── usage.md ├── favicon.ico ├── history.html ├── humans.txt ├── icon.png ├── img ├── .gitignore ├── app.jpg ├── behavior.jpeg ├── behavior2.png ├── car1.jpg ├── car2.jpg ├── car3.jpg ├── car4.jpg ├── car5.jpg ├── car6.jpg ├── car7.jpg ├── carAttribute_main.jpg ├── carBoard.jpg ├── carBoard_main.jpg ├── carCount.png ├── carInfo.jpg ├── carInfo_main.jpg ├── carTeller_main.jpg ├── carTeller_temp.jpg ├── carTypeApp.jpg ├── carType_main.jpg ├── driverBehavior.jpg ├── intro.png ├── login2.jpg ├── login_body_bg.jpg ├── phoneDect.png ├── roll_board1.jpg ├── roll_board2.jpg ├── roll_board3.jpg └── timg.jpg ├── jpg ├── 12019-07-12107_04_23.jpg ├── 12019-07-12107_07_14.jpg ├── 12019-07-12107_08_26.jpg ├── 12019-07-12107_09_01.jpg └── 12019-07-12107_09_22.jpg ├── js └── vendor │ ├── jquery-3.4.1.min.js │ └── modernizr-3.7.1.min.js ├── layui ├── css │ ├── layui.css │ ├── layui.mobile.css │ └── modules │ │ ├── code.css │ │ ├── laydate │ │ └── default │ │ │ └── laydate.css │ │ └── layer │ │ └── default │ │ ├── icon-ext.png │ │ ├── icon.png │ │ ├── layer.css │ │ ├── loading-0.gif │ │ ├── loading-1.gif │ │ └── loading-2.gif ├── font │ ├── iconfont.eot │ ├── iconfont.svg │ ├── iconfont.ttf │ ├── iconfont.woff │ └── iconfont.woff2 ├── images │ └── face │ │ ├── 0.gif │ │ ├── 1.gif │ │ ├── 10.gif │ │ ├── 11.gif │ │ ├── 12.gif │ │ ├── 13.gif │ │ ├── 14.gif │ │ ├── 15.gif │ │ ├── 16.gif │ │ ├── 17.gif │ │ ├── 18.gif │ │ ├── 19.gif │ │ ├── 2.gif │ │ ├── 20.gif │ │ ├── 21.gif │ │ ├── 22.gif │ │ ├── 23.gif │ │ ├── 24.gif │ │ ├── 25.gif │ │ ├── 26.gif │ │ ├── 27.gif │ │ ├── 28.gif │ │ ├── 29.gif │ │ ├── 3.gif │ │ ├── 30.gif │ │ ├── 31.gif │ │ ├── 32.gif │ │ ├── 33.gif │ │ ├── 34.gif │ │ ├── 35.gif │ │ ├── 36.gif │ │ ├── 37.gif │ │ ├── 38.gif │ │ ├── 39.gif │ │ ├── 4.gif │ │ ├── 40.gif │ │ ├── 41.gif │ │ ├── 42.gif │ │ ├── 43.gif │ │ ├── 44.gif │ │ ├── 45.gif │ │ ├── 46.gif │ │ ├── 47.gif │ │ ├── 48.gif │ │ ├── 49.gif │ │ ├── 5.gif │ │ ├── 50.gif │ │ ├── 51.gif │ │ ├── 52.gif │ │ ├── 53.gif │ │ ├── 54.gif │ │ ├── 55.gif │ │ ├── 56.gif │ │ ├── 57.gif │ │ ├── 58.gif │ │ ├── 59.gif │ │ ├── 6.gif │ │ ├── 60.gif │ │ ├── 61.gif │ │ ├── 62.gif │ │ ├── 63.gif │ │ ├── 64.gif │ │ ├── 65.gif │ │ ├── 66.gif │ │ ├── 67.gif │ │ ├── 68.gif │ │ ├── 69.gif │ │ ├── 7.gif │ │ ├── 70.gif │ │ ├── 71.gif │ │ ├── 8.gif │ │ └── 9.gif ├── lay │ └── modules │ │ ├── carousel.js │ │ ├── code.js │ │ ├── colorpicker.js │ │ ├── element.js │ │ ├── flow.js │ │ ├── form.js │ │ ├── jquery.js │ │ ├── laydate.js │ │ ├── layedit.js │ │ ├── layer.js │ │ ├── laypage.js │ │ ├── laytpl.js │ │ ├── mobile.js │ │ ├── rate.js │ │ ├── slider.js │ │ ├── table.js │ │ ├── transfer.js │ │ ├── tree.js │ │ ├── upload.js │ │ └── util.js ├── layui.all.js └── layui.js ├── layui_exts └── sliderVerify │ └── sliderVerify.js ├── login.html ├── per_info.html ├── robots.txt ├── site.webmanifest ├── tile-wide.png └── tile.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/.gitattributes -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/.gitignore -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/BottomNavigationModule/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/BottomNavigationModule/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/BottomNavigationModule/build.gradle -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/BottomNavigationModule/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/BottomNavigationModule/proguard-rules.pro -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/BottomNavigationModule/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/BottomNavigationModule/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/BottomNavigationModule/src/main/java/ca/gcastle/bottomnavigation/behaviour/BottomNavigationBehavior.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/BottomNavigationModule/src/main/java/ca/gcastle/bottomnavigation/behaviour/BottomNavigationBehavior.java -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/BottomNavigationModule/src/main/java/ca/gcastle/bottomnavigation/behaviour/VerticalScrollingBehavior.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/BottomNavigationModule/src/main/java/ca/gcastle/bottomnavigation/behaviour/VerticalScrollingBehavior.java -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/BottomNavigationModule/src/main/java/ca/gcastle/bottomnavigation/listeners/OnChildClickedListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/BottomNavigationModule/src/main/java/ca/gcastle/bottomnavigation/listeners/OnChildClickedListener.java -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/BottomNavigationModule/src/main/java/ca/gcastle/bottomnavigation/view/BottomNavigationTabView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/BottomNavigationModule/src/main/java/ca/gcastle/bottomnavigation/view/BottomNavigationTabView.java -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/BottomNavigationModule/src/main/java/ca/gcastle/bottomnavigation/view/BottomNavigationUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/BottomNavigationModule/src/main/java/ca/gcastle/bottomnavigation/view/BottomNavigationUtils.java -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/BottomNavigationModule/src/main/java/ca/gcastle/bottomnavigation/view/BottomNavigationView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/BottomNavigationModule/src/main/java/ca/gcastle/bottomnavigation/view/BottomNavigationView.java -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/BottomNavigationModule/src/main/res/drawable/shape_circle_red500_fill_white_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/BottomNavigationModule/src/main/res/drawable/shape_circle_red500_fill_white_outline.xml -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/BottomNavigationModule/src/main/res/layout/view_bottomnavigation_tab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/BottomNavigationModule/src/main/res/layout/view_bottomnavigation_tab.xml -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/BottomNavigationModule/src/main/res/values/attr_bottom_navigation_tab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/BottomNavigationModule/src/main/res/values/attr_bottom_navigation_tab.xml -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/BottomNavigationModule/src/main/res/values/colours.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/BottomNavigationModule/src/main/res/values/colours.xml -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/LICENSE -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/build.gradle -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/proguard-rules.pro -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/release/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/release/app-release.apk -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/release/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/release/output.json -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/androidTest/java/com/shashank/platform/loginui/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/androidTest/java/com/shashank/platform/loginui/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/java/com/shashank/platform/loginui/CarInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/java/com/shashank/platform/loginui/CarInfo.java -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/java/com/shashank/platform/loginui/LoginActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/java/com/shashank/platform/loginui/LoginActivity.java -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/java/com/shashank/platform/loginui/OnSwipeTouchListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/java/com/shashank/platform/loginui/OnSwipeTouchListener.java -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/java/com/shashank/platform/loginui/RecognizeFragmenAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/java/com/shashank/platform/loginui/RecognizeFragmenAdapter.java -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/java/com/shashank/platform/loginui/RecognizeFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/java/com/shashank/platform/loginui/RecognizeFragment.java -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/java/com/shashank/platform/loginui/RegisterActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/java/com/shashank/platform/loginui/RegisterActivity.java -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/java/com/shashank/platform/loginui/SelectionActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/java/com/shashank/platform/loginui/SelectionActivity.java -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/java/com/shashank/platform/loginui/UserinfoFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/java/com/shashank/platform/loginui/UserinfoFragment.java -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/java/handler/HttpHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/java/handler/HttpHandler.java -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/drawable/add_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/drawable/add_image.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/drawable/buttonshapewhitebg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/drawable/buttonshapewhitebg.xml -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/drawable/good_morning_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/drawable/good_morning_img.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/drawable/good_night_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/drawable/good_night_img.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/drawable/ic_email_white_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/drawable/ic_email_white_24dp.xml -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/drawable/ic_help_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/drawable/ic_help_black_24dp.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/drawable/ic_help_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/drawable/ic_help_white_24dp.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/drawable/ic_home_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/drawable/ic_home_black_24dp.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/drawable/ic_home_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/drawable/ic_home_white_24dp.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/drawable/ic_lock_white_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/drawable/ic_lock_white_24dp.xml -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/drawable/ic_search_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/drawable/ic_search_black_24dp.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/drawable/ic_search_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/drawable/ic_search_white_24dp.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/drawable/icon.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/drawable/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/drawable/logo.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/font/calibri.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/font/calibri.ttf -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/font/gotham.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/font/gotham.ttf -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/layout/activity_register.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/layout/activity_register.xml -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/layout/activity_selection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/layout/activity_selection.xml -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/layout/fragment_recognize.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/layout/fragment_recognize.xml -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/layout/fragment_userinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/layout/fragment_userinfo.xml -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-hdpi/ic_help_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-hdpi/ic_help_black_24dp.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-hdpi/ic_help_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-hdpi/ic_help_white_24dp.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-hdpi/ic_home_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-hdpi/ic_home_black_24dp.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-hdpi/ic_home_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-hdpi/ic_home_white_24dp.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-hdpi/ic_search_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-hdpi/ic_search_black_24dp.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-hdpi/ic_search_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-hdpi/ic_search_white_24dp.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-mdpi/ic_help_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-mdpi/ic_help_black_24dp.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-mdpi/ic_help_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-mdpi/ic_help_white_24dp.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-mdpi/ic_home_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-mdpi/ic_home_black_24dp.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-mdpi/ic_home_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-mdpi/ic_home_white_24dp.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-mdpi/ic_search_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-mdpi/ic_search_black_24dp.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-mdpi/ic_search_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-mdpi/ic_search_white_24dp.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-xhdpi/ic_help_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-xhdpi/ic_help_black_24dp.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-xhdpi/ic_help_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-xhdpi/ic_help_white_24dp.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-xhdpi/ic_home_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-xhdpi/ic_home_black_24dp.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-xhdpi/ic_home_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-xhdpi/ic_home_white_24dp.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-xhdpi/ic_search_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-xhdpi/ic_search_black_24dp.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-xhdpi/ic_search_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-xhdpi/ic_search_white_24dp.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-xxhdpi/ic_help_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-xxhdpi/ic_help_black_24dp.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-xxhdpi/ic_help_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-xxhdpi/ic_help_white_24dp.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-xxhdpi/ic_home_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-xxhdpi/ic_home_black_24dp.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-xxhdpi/ic_home_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-xxhdpi/ic_home_white_24dp.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-xxhdpi/ic_search_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-xxhdpi/ic_search_black_24dp.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-xxhdpi/ic_search_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-xxhdpi/ic_search_white_24dp.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-xxxhdpi/ic_help_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-xxxhdpi/ic_help_black_24dp.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-xxxhdpi/ic_help_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-xxxhdpi/ic_help_white_24dp.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-xxxhdpi/ic_home_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-xxxhdpi/ic_home_black_24dp.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-xxxhdpi/ic_home_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-xxxhdpi/ic_home_white_24dp.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-xxxhdpi/ic_search_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-xxxhdpi/ic_search_black_24dp.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/mipmap-xxxhdpi/ic_search_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/mipmap-xxxhdpi/ic_search_white_24dp.png -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/values/array.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/values/array.xml -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/app/src/test/java/com/shashank/platform/loginui/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/app/src/test/java/com/shashank/platform/loginui/ExampleUnitTest.java -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/build.gradle -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/gradle.properties -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/gradlew -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/Carteller-Android/gradlew.bat -------------------------------------------------------------------------------- /AndroidPart/Carteller-Android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':BottomNavigationModule' 2 | -------------------------------------------------------------------------------- /AndroidPart/release/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/release/app-release.apk -------------------------------------------------------------------------------- /AndroidPart/release/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/AndroidPart/release/output.json -------------------------------------------------------------------------------- /CarInfoTeller/CarInfoTeller/.idea/CarInfoTeller.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarInfoTeller/CarInfoTeller/.idea/CarInfoTeller.iml -------------------------------------------------------------------------------- /CarInfoTeller/CarInfoTeller/.idea/dictionaries/Robb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarInfoTeller/CarInfoTeller/.idea/dictionaries/Robb.xml -------------------------------------------------------------------------------- /CarInfoTeller/CarInfoTeller/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarInfoTeller/CarInfoTeller/.idea/misc.xml -------------------------------------------------------------------------------- /CarInfoTeller/CarInfoTeller/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarInfoTeller/CarInfoTeller/.idea/modules.xml -------------------------------------------------------------------------------- /CarInfoTeller/CarInfoTeller/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarInfoTeller/CarInfoTeller/.idea/workspace.xml -------------------------------------------------------------------------------- /CarInfoTeller/CarInfoTeller/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarInfoTeller/CarInfoTeller/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /CarInfoTeller/CarInfoTeller/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarInfoTeller/CarInfoTeller/base/__init__.py -------------------------------------------------------------------------------- /CarInfoTeller/CarInfoTeller/base/base_data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarInfoTeller/CarInfoTeller/base/base_data_loader.py -------------------------------------------------------------------------------- /CarInfoTeller/CarInfoTeller/base/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarInfoTeller/CarInfoTeller/base/base_model.py -------------------------------------------------------------------------------- /CarInfoTeller/CarInfoTeller/base/base_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarInfoTeller/CarInfoTeller/base/base_trainer.py -------------------------------------------------------------------------------- /CarInfoTeller/CarInfoTeller/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarInfoTeller/CarInfoTeller/config.py -------------------------------------------------------------------------------- /CarInfoTeller/CarInfoTeller/data_processing/__pycache__/auto_augment.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarInfoTeller/CarInfoTeller/data_processing/__pycache__/auto_augment.cpython-37.pyc -------------------------------------------------------------------------------- /CarInfoTeller/CarInfoTeller/data_processing/__pycache__/car_dataset.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarInfoTeller/CarInfoTeller/data_processing/__pycache__/car_dataset.cpython-37.pyc -------------------------------------------------------------------------------- /CarInfoTeller/CarInfoTeller/data_processing/auto_augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarInfoTeller/CarInfoTeller/data_processing/auto_augment.py -------------------------------------------------------------------------------- /CarInfoTeller/CarInfoTeller/data_processing/car_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarInfoTeller/CarInfoTeller/data_processing/car_dataset.py -------------------------------------------------------------------------------- /CarInfoTeller/CarInfoTeller/data_processing/datasets/cars_metas/cars_meta.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarInfoTeller/CarInfoTeller/data_processing/datasets/cars_metas/cars_meta.mat -------------------------------------------------------------------------------- /CarInfoTeller/CarInfoTeller/data_processing/datasets/cars_metas/cars_test_annos.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarInfoTeller/CarInfoTeller/data_processing/datasets/cars_metas/cars_test_annos.mat -------------------------------------------------------------------------------- /CarInfoTeller/CarInfoTeller/data_processing/datasets/cars_metas/cars_train_annos.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarInfoTeller/CarInfoTeller/data_processing/datasets/cars_metas/cars_train_annos.mat -------------------------------------------------------------------------------- /CarInfoTeller/CarInfoTeller/data_processing/extract_cars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarInfoTeller/CarInfoTeller/data_processing/extract_cars.py -------------------------------------------------------------------------------- /CarInfoTeller/CarInfoTeller/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarInfoTeller/CarInfoTeller/demo.py -------------------------------------------------------------------------------- /CarInfoTeller/CarInfoTeller/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CarInfoTeller/CarInfoTeller/models/efficentnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarInfoTeller/CarInfoTeller/models/efficentnet.py -------------------------------------------------------------------------------- /CarInfoTeller/CarInfoTeller/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarInfoTeller/CarInfoTeller/train.py -------------------------------------------------------------------------------- /CarInfoTeller/CarInfoTeller/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CarInfoTeller/CarInfoTeller/utils/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarInfoTeller/CarInfoTeller/utils/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /CarInfoTeller/CarInfoTeller/utils/__pycache__/car_info_util.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarInfoTeller/CarInfoTeller/utils/__pycache__/car_info_util.cpython-37.pyc -------------------------------------------------------------------------------- /CarInfoTeller/CarInfoTeller/utils/car_info_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarInfoTeller/CarInfoTeller/utils/car_info_util.py -------------------------------------------------------------------------------- /CarTeller/.idea/CarTeller.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/.idea/CarTeller.iml -------------------------------------------------------------------------------- /CarTeller/.idea/dictionaries/Robb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/.idea/dictionaries/Robb.xml -------------------------------------------------------------------------------- /CarTeller/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/.idea/encodings.xml -------------------------------------------------------------------------------- /CarTeller/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/.idea/misc.xml -------------------------------------------------------------------------------- /CarTeller/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/.idea/modules.xml -------------------------------------------------------------------------------- /CarTeller/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/.idea/workspace.xml -------------------------------------------------------------------------------- /CarTeller/CarAttributeTeller/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CarTeller/CarAttributeTeller/car_attribute_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarAttributeTeller/car_attribute_main.py -------------------------------------------------------------------------------- /CarTeller/CarBoardTeller/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CarTeller/CarBoardTeller/car_board_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarBoardTeller/car_board_main.py -------------------------------------------------------------------------------- /CarTeller/CarBoardTeller/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarBoardTeller/config.js -------------------------------------------------------------------------------- /CarTeller/CarInfoTeller/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CarTeller/CarInfoTeller/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarInfoTeller/base/__init__.py -------------------------------------------------------------------------------- /CarTeller/CarInfoTeller/base/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarInfoTeller/base/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /CarTeller/CarInfoTeller/base/__pycache__/base_data_loader.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarInfoTeller/base/__pycache__/base_data_loader.cpython-37.pyc -------------------------------------------------------------------------------- /CarTeller/CarInfoTeller/base/__pycache__/base_model.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarInfoTeller/base/__pycache__/base_model.cpython-37.pyc -------------------------------------------------------------------------------- /CarTeller/CarInfoTeller/base/__pycache__/base_trainer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarInfoTeller/base/__pycache__/base_trainer.cpython-37.pyc -------------------------------------------------------------------------------- /CarTeller/CarInfoTeller/base/base_data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarInfoTeller/base/base_data_loader.py -------------------------------------------------------------------------------- /CarTeller/CarInfoTeller/base/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarInfoTeller/base/base_model.py -------------------------------------------------------------------------------- /CarTeller/CarInfoTeller/base/base_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarInfoTeller/base/base_trainer.py -------------------------------------------------------------------------------- /CarTeller/CarInfoTeller/car_info_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarInfoTeller/car_info_main.py -------------------------------------------------------------------------------- /CarTeller/CarInfoTeller/cars_meta.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarInfoTeller/cars_meta.mat -------------------------------------------------------------------------------- /CarTeller/CarInfoTeller/cars_translated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarInfoTeller/cars_translated.txt -------------------------------------------------------------------------------- /CarTeller/CarInfoTeller/logger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarInfoTeller/logger/__init__.py -------------------------------------------------------------------------------- /CarTeller/CarInfoTeller/logger/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarInfoTeller/logger/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /CarTeller/CarInfoTeller/logger/__pycache__/logger.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarInfoTeller/logger/__pycache__/logger.cpython-37.pyc -------------------------------------------------------------------------------- /CarTeller/CarInfoTeller/logger/__pycache__/visualization.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarInfoTeller/logger/__pycache__/visualization.cpython-37.pyc -------------------------------------------------------------------------------- /CarTeller/CarInfoTeller/logger/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarInfoTeller/logger/logger.py -------------------------------------------------------------------------------- /CarTeller/CarInfoTeller/logger/logger_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarInfoTeller/logger/logger_config.json -------------------------------------------------------------------------------- /CarTeller/CarInfoTeller/logger/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarInfoTeller/logger/visualization.py -------------------------------------------------------------------------------- /CarTeller/CarInfoTeller/model/adabound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarInfoTeller/model/adabound.py -------------------------------------------------------------------------------- /CarTeller/CarInfoTeller/model/inception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarInfoTeller/model/inception.py -------------------------------------------------------------------------------- /CarTeller/CarInfoTeller/model/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarInfoTeller/model/loss.py -------------------------------------------------------------------------------- /CarTeller/CarInfoTeller/model/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarInfoTeller/model/metric.py -------------------------------------------------------------------------------- /CarTeller/CarInfoTeller/model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarInfoTeller/model/model.py -------------------------------------------------------------------------------- /CarTeller/CarInfoTeller/model/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarInfoTeller/model/resnet.py -------------------------------------------------------------------------------- /CarTeller/CarInfoTeller/model/squeezenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarInfoTeller/model/squeezenet.py -------------------------------------------------------------------------------- /CarTeller/CarInfoTeller/model/wide_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarInfoTeller/model/wide_resnet.py -------------------------------------------------------------------------------- /CarTeller/CarInfoTeller/test_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarInfoTeller/test_config.json -------------------------------------------------------------------------------- /CarTeller/CarInfoTeller/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarInfoTeller/train.py -------------------------------------------------------------------------------- /CarTeller/CarInfoTeller/train2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarInfoTeller/train2.py -------------------------------------------------------------------------------- /CarTeller/CarInfoTeller/utils/__init__.py: -------------------------------------------------------------------------------- 1 | from .util import * 2 | -------------------------------------------------------------------------------- /CarTeller/CarInfoTeller/utils/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarInfoTeller/utils/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /CarTeller/CarInfoTeller/utils/__pycache__/util.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarInfoTeller/utils/__pycache__/util.cpython-37.pyc -------------------------------------------------------------------------------- /CarTeller/CarInfoTeller/utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarInfoTeller/utils/util.py -------------------------------------------------------------------------------- /CarTeller/CarTypeTellerMore/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CarTeller/CarTypeTellerMore/car_type_more_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarTypeTellerMore/car_type_more_main.py -------------------------------------------------------------------------------- /CarTeller/CarTypeTellerMore/labels_map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarTypeTellerMore/labels_map.txt -------------------------------------------------------------------------------- /CarTeller/CarTypeTellerOne/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CarTeller/CarTypeTellerOne/car_type_one_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/CarTypeTellerOne/car_type_one_main.py -------------------------------------------------------------------------------- /CarTeller/DriverBehavior/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CarTeller/DriverBehavior/behavior_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/DriverBehavior/behavior_main.py -------------------------------------------------------------------------------- /CarTeller/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/app/__init__.py -------------------------------------------------------------------------------- /CarTeller/app/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/app/database.py -------------------------------------------------------------------------------- /CarTeller/app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/app/models.py -------------------------------------------------------------------------------- /CarTeller/app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/app/views.py -------------------------------------------------------------------------------- /CarTeller/car_teller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/car_teller.py -------------------------------------------------------------------------------- /CarTeller/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/config.py -------------------------------------------------------------------------------- /CarTeller/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/manage.py -------------------------------------------------------------------------------- /CarTeller/parse_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTeller/parse_config.py -------------------------------------------------------------------------------- /CarTypeTellerOne/.idea/CarTypeTeller.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTypeTellerOne/.idea/CarTypeTeller.iml -------------------------------------------------------------------------------- /CarTypeTellerOne/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTypeTellerOne/.idea/misc.xml -------------------------------------------------------------------------------- /CarTypeTellerOne/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTypeTellerOne/.idea/modules.xml -------------------------------------------------------------------------------- /CarTypeTellerOne/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTypeTellerOne/.idea/workspace.xml -------------------------------------------------------------------------------- /CarTypeTellerOne/CarTypeTeller/.idea/CarTypeTeller.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTypeTellerOne/CarTypeTeller/.idea/CarTypeTeller.iml -------------------------------------------------------------------------------- /CarTypeTellerOne/CarTypeTeller/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTypeTellerOne/CarTypeTeller/.idea/misc.xml -------------------------------------------------------------------------------- /CarTypeTellerOne/CarTypeTeller/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTypeTellerOne/CarTypeTeller/.idea/modules.xml -------------------------------------------------------------------------------- /CarTypeTellerOne/CarTypeTeller/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTypeTellerOne/CarTypeTeller/.idea/workspace.xml -------------------------------------------------------------------------------- /CarTypeTellerOne/CarTypeTeller/models/CarTypeTeller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/CarTypeTellerOne/CarTypeTeller/models/CarTypeTeller.py -------------------------------------------------------------------------------- /CarTypeTellerOne/CarTypeTeller/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/README.md -------------------------------------------------------------------------------- /html/123.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/123.html -------------------------------------------------------------------------------- /html/API.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/API.html -------------------------------------------------------------------------------- /html/CarAttribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/CarAttribute.html -------------------------------------------------------------------------------- /html/CarBoard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/CarBoard.html -------------------------------------------------------------------------------- /html/CarInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/CarInfo.html -------------------------------------------------------------------------------- /html/CarNumber.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/CarNumber.html -------------------------------------------------------------------------------- /html/CarType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/CarType.html -------------------------------------------------------------------------------- /html/DriverBehavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/DriverBehavior.html -------------------------------------------------------------------------------- /html/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/LICENSE.txt -------------------------------------------------------------------------------- /html/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/browserconfig.xml -------------------------------------------------------------------------------- /html/doc/TOC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/doc/TOC.md -------------------------------------------------------------------------------- /html/doc/css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/doc/css.md -------------------------------------------------------------------------------- /html/doc/extend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/doc/extend.md -------------------------------------------------------------------------------- /html/doc/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/doc/faq.md -------------------------------------------------------------------------------- /html/doc/html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/doc/html.md -------------------------------------------------------------------------------- /html/doc/js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/doc/js.md -------------------------------------------------------------------------------- /html/doc/misc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/doc/misc.md -------------------------------------------------------------------------------- /html/doc/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/doc/usage.md -------------------------------------------------------------------------------- /html/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/favicon.ico -------------------------------------------------------------------------------- /html/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/history.html -------------------------------------------------------------------------------- /html/humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/humans.txt -------------------------------------------------------------------------------- /html/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/icon.png -------------------------------------------------------------------------------- /html/img/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /html/img/app.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/img/app.jpg -------------------------------------------------------------------------------- /html/img/behavior.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/img/behavior.jpeg -------------------------------------------------------------------------------- /html/img/behavior2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/img/behavior2.png -------------------------------------------------------------------------------- /html/img/car1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/img/car1.jpg -------------------------------------------------------------------------------- /html/img/car2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/img/car2.jpg -------------------------------------------------------------------------------- /html/img/car3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/img/car3.jpg -------------------------------------------------------------------------------- /html/img/car4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/img/car4.jpg -------------------------------------------------------------------------------- /html/img/car5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/img/car5.jpg -------------------------------------------------------------------------------- /html/img/car6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/img/car6.jpg -------------------------------------------------------------------------------- /html/img/car7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/img/car7.jpg -------------------------------------------------------------------------------- /html/img/carAttribute_main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/img/carAttribute_main.jpg -------------------------------------------------------------------------------- /html/img/carBoard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/img/carBoard.jpg -------------------------------------------------------------------------------- /html/img/carBoard_main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/img/carBoard_main.jpg -------------------------------------------------------------------------------- /html/img/carCount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/img/carCount.png -------------------------------------------------------------------------------- /html/img/carInfo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/img/carInfo.jpg -------------------------------------------------------------------------------- /html/img/carInfo_main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/img/carInfo_main.jpg -------------------------------------------------------------------------------- /html/img/carTeller_main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/img/carTeller_main.jpg -------------------------------------------------------------------------------- /html/img/carTeller_temp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/img/carTeller_temp.jpg -------------------------------------------------------------------------------- /html/img/carTypeApp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/img/carTypeApp.jpg -------------------------------------------------------------------------------- /html/img/carType_main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/img/carType_main.jpg -------------------------------------------------------------------------------- /html/img/driverBehavior.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/img/driverBehavior.jpg -------------------------------------------------------------------------------- /html/img/intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/img/intro.png -------------------------------------------------------------------------------- /html/img/login2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/img/login2.jpg -------------------------------------------------------------------------------- /html/img/login_body_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/img/login_body_bg.jpg -------------------------------------------------------------------------------- /html/img/phoneDect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/img/phoneDect.png -------------------------------------------------------------------------------- /html/img/roll_board1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/img/roll_board1.jpg -------------------------------------------------------------------------------- /html/img/roll_board2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/img/roll_board2.jpg -------------------------------------------------------------------------------- /html/img/roll_board3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/img/roll_board3.jpg -------------------------------------------------------------------------------- /html/img/timg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/img/timg.jpg -------------------------------------------------------------------------------- /html/jpg/12019-07-12107_04_23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/jpg/12019-07-12107_04_23.jpg -------------------------------------------------------------------------------- /html/jpg/12019-07-12107_07_14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/jpg/12019-07-12107_07_14.jpg -------------------------------------------------------------------------------- /html/jpg/12019-07-12107_08_26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/jpg/12019-07-12107_08_26.jpg -------------------------------------------------------------------------------- /html/jpg/12019-07-12107_09_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/jpg/12019-07-12107_09_01.jpg -------------------------------------------------------------------------------- /html/jpg/12019-07-12107_09_22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/jpg/12019-07-12107_09_22.jpg -------------------------------------------------------------------------------- /html/js/vendor/jquery-3.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/js/vendor/jquery-3.4.1.min.js -------------------------------------------------------------------------------- /html/js/vendor/modernizr-3.7.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/js/vendor/modernizr-3.7.1.min.js -------------------------------------------------------------------------------- /html/layui/css/layui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/css/layui.css -------------------------------------------------------------------------------- /html/layui/css/layui.mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/css/layui.mobile.css -------------------------------------------------------------------------------- /html/layui/css/modules/code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/css/modules/code.css -------------------------------------------------------------------------------- /html/layui/css/modules/laydate/default/laydate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/css/modules/laydate/default/laydate.css -------------------------------------------------------------------------------- /html/layui/css/modules/layer/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/css/modules/layer/default/icon-ext.png -------------------------------------------------------------------------------- /html/layui/css/modules/layer/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/css/modules/layer/default/icon.png -------------------------------------------------------------------------------- /html/layui/css/modules/layer/default/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/css/modules/layer/default/layer.css -------------------------------------------------------------------------------- /html/layui/css/modules/layer/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/css/modules/layer/default/loading-0.gif -------------------------------------------------------------------------------- /html/layui/css/modules/layer/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/css/modules/layer/default/loading-1.gif -------------------------------------------------------------------------------- /html/layui/css/modules/layer/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/css/modules/layer/default/loading-2.gif -------------------------------------------------------------------------------- /html/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/font/iconfont.eot -------------------------------------------------------------------------------- /html/layui/font/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/font/iconfont.svg -------------------------------------------------------------------------------- /html/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /html/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/font/iconfont.woff -------------------------------------------------------------------------------- /html/layui/font/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/font/iconfont.woff2 -------------------------------------------------------------------------------- /html/layui/images/face/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/0.gif -------------------------------------------------------------------------------- /html/layui/images/face/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/1.gif -------------------------------------------------------------------------------- /html/layui/images/face/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/10.gif -------------------------------------------------------------------------------- /html/layui/images/face/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/11.gif -------------------------------------------------------------------------------- /html/layui/images/face/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/12.gif -------------------------------------------------------------------------------- /html/layui/images/face/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/13.gif -------------------------------------------------------------------------------- /html/layui/images/face/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/14.gif -------------------------------------------------------------------------------- /html/layui/images/face/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/15.gif -------------------------------------------------------------------------------- /html/layui/images/face/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/16.gif -------------------------------------------------------------------------------- /html/layui/images/face/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/17.gif -------------------------------------------------------------------------------- /html/layui/images/face/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/18.gif -------------------------------------------------------------------------------- /html/layui/images/face/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/19.gif -------------------------------------------------------------------------------- /html/layui/images/face/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/2.gif -------------------------------------------------------------------------------- /html/layui/images/face/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/20.gif -------------------------------------------------------------------------------- /html/layui/images/face/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/21.gif -------------------------------------------------------------------------------- /html/layui/images/face/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/22.gif -------------------------------------------------------------------------------- /html/layui/images/face/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/23.gif -------------------------------------------------------------------------------- /html/layui/images/face/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/24.gif -------------------------------------------------------------------------------- /html/layui/images/face/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/25.gif -------------------------------------------------------------------------------- /html/layui/images/face/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/26.gif -------------------------------------------------------------------------------- /html/layui/images/face/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/27.gif -------------------------------------------------------------------------------- /html/layui/images/face/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/28.gif -------------------------------------------------------------------------------- /html/layui/images/face/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/29.gif -------------------------------------------------------------------------------- /html/layui/images/face/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/3.gif -------------------------------------------------------------------------------- /html/layui/images/face/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/30.gif -------------------------------------------------------------------------------- /html/layui/images/face/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/31.gif -------------------------------------------------------------------------------- /html/layui/images/face/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/32.gif -------------------------------------------------------------------------------- /html/layui/images/face/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/33.gif -------------------------------------------------------------------------------- /html/layui/images/face/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/34.gif -------------------------------------------------------------------------------- /html/layui/images/face/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/35.gif -------------------------------------------------------------------------------- /html/layui/images/face/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/36.gif -------------------------------------------------------------------------------- /html/layui/images/face/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/37.gif -------------------------------------------------------------------------------- /html/layui/images/face/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/38.gif -------------------------------------------------------------------------------- /html/layui/images/face/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/39.gif -------------------------------------------------------------------------------- /html/layui/images/face/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/4.gif -------------------------------------------------------------------------------- /html/layui/images/face/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/40.gif -------------------------------------------------------------------------------- /html/layui/images/face/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/41.gif -------------------------------------------------------------------------------- /html/layui/images/face/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/42.gif -------------------------------------------------------------------------------- /html/layui/images/face/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/43.gif -------------------------------------------------------------------------------- /html/layui/images/face/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/44.gif -------------------------------------------------------------------------------- /html/layui/images/face/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/45.gif -------------------------------------------------------------------------------- /html/layui/images/face/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/46.gif -------------------------------------------------------------------------------- /html/layui/images/face/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/47.gif -------------------------------------------------------------------------------- /html/layui/images/face/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/48.gif -------------------------------------------------------------------------------- /html/layui/images/face/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/49.gif -------------------------------------------------------------------------------- /html/layui/images/face/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/5.gif -------------------------------------------------------------------------------- /html/layui/images/face/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/50.gif -------------------------------------------------------------------------------- /html/layui/images/face/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/51.gif -------------------------------------------------------------------------------- /html/layui/images/face/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/52.gif -------------------------------------------------------------------------------- /html/layui/images/face/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/53.gif -------------------------------------------------------------------------------- /html/layui/images/face/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/54.gif -------------------------------------------------------------------------------- /html/layui/images/face/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/55.gif -------------------------------------------------------------------------------- /html/layui/images/face/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/56.gif -------------------------------------------------------------------------------- /html/layui/images/face/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/57.gif -------------------------------------------------------------------------------- /html/layui/images/face/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/58.gif -------------------------------------------------------------------------------- /html/layui/images/face/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/59.gif -------------------------------------------------------------------------------- /html/layui/images/face/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/6.gif -------------------------------------------------------------------------------- /html/layui/images/face/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/60.gif -------------------------------------------------------------------------------- /html/layui/images/face/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/61.gif -------------------------------------------------------------------------------- /html/layui/images/face/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/62.gif -------------------------------------------------------------------------------- /html/layui/images/face/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/63.gif -------------------------------------------------------------------------------- /html/layui/images/face/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/64.gif -------------------------------------------------------------------------------- /html/layui/images/face/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/65.gif -------------------------------------------------------------------------------- /html/layui/images/face/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/66.gif -------------------------------------------------------------------------------- /html/layui/images/face/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/67.gif -------------------------------------------------------------------------------- /html/layui/images/face/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/68.gif -------------------------------------------------------------------------------- /html/layui/images/face/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/69.gif -------------------------------------------------------------------------------- /html/layui/images/face/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/7.gif -------------------------------------------------------------------------------- /html/layui/images/face/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/70.gif -------------------------------------------------------------------------------- /html/layui/images/face/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/71.gif -------------------------------------------------------------------------------- /html/layui/images/face/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/8.gif -------------------------------------------------------------------------------- /html/layui/images/face/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/images/face/9.gif -------------------------------------------------------------------------------- /html/layui/lay/modules/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/lay/modules/carousel.js -------------------------------------------------------------------------------- /html/layui/lay/modules/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/lay/modules/code.js -------------------------------------------------------------------------------- /html/layui/lay/modules/colorpicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/lay/modules/colorpicker.js -------------------------------------------------------------------------------- /html/layui/lay/modules/element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/lay/modules/element.js -------------------------------------------------------------------------------- /html/layui/lay/modules/flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/lay/modules/flow.js -------------------------------------------------------------------------------- /html/layui/lay/modules/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/lay/modules/form.js -------------------------------------------------------------------------------- /html/layui/lay/modules/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/lay/modules/jquery.js -------------------------------------------------------------------------------- /html/layui/lay/modules/laydate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/lay/modules/laydate.js -------------------------------------------------------------------------------- /html/layui/lay/modules/layedit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/lay/modules/layedit.js -------------------------------------------------------------------------------- /html/layui/lay/modules/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/lay/modules/layer.js -------------------------------------------------------------------------------- /html/layui/lay/modules/laypage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/lay/modules/laypage.js -------------------------------------------------------------------------------- /html/layui/lay/modules/laytpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/lay/modules/laytpl.js -------------------------------------------------------------------------------- /html/layui/lay/modules/mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/lay/modules/mobile.js -------------------------------------------------------------------------------- /html/layui/lay/modules/rate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/lay/modules/rate.js -------------------------------------------------------------------------------- /html/layui/lay/modules/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/lay/modules/slider.js -------------------------------------------------------------------------------- /html/layui/lay/modules/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/lay/modules/table.js -------------------------------------------------------------------------------- /html/layui/lay/modules/transfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/lay/modules/transfer.js -------------------------------------------------------------------------------- /html/layui/lay/modules/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/lay/modules/tree.js -------------------------------------------------------------------------------- /html/layui/lay/modules/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/lay/modules/upload.js -------------------------------------------------------------------------------- /html/layui/lay/modules/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/lay/modules/util.js -------------------------------------------------------------------------------- /html/layui/layui.all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/layui.all.js -------------------------------------------------------------------------------- /html/layui/layui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui/layui.js -------------------------------------------------------------------------------- /html/layui_exts/sliderVerify/sliderVerify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/layui_exts/sliderVerify/sliderVerify.js -------------------------------------------------------------------------------- /html/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/login.html -------------------------------------------------------------------------------- /html/per_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/per_info.html -------------------------------------------------------------------------------- /html/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/robots.txt -------------------------------------------------------------------------------- /html/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/site.webmanifest -------------------------------------------------------------------------------- /html/tile-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/tile-wide.png -------------------------------------------------------------------------------- /html/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoRobb/CarTeller/HEAD/html/tile.png --------------------------------------------------------------------------------