├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── MAINTAINERS.md ├── README-cn.md ├── README-ja.md ├── README.md ├── doc └── source │ └── images │ ├── apiKey.png │ ├── app-not-running.png │ ├── architecture.png │ ├── output1.png │ └── toolchain-pipeline.png ├── manifest.yml ├── mobile ├── .gitignore ├── .npmignore ├── Dockerfile ├── config.xml ├── hooks │ └── README.md ├── package.json ├── platforms │ └── platforms.json ├── plugins │ ├── cordova-plugin-cache-clear │ │ ├── README.md │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── src │ │ │ ├── android │ │ │ │ └── CacheClear.java │ │ │ └── ios │ │ │ │ ├── CacheClear.h │ │ │ │ └── CacheClear.m │ │ └── www │ │ │ └── CacheClear.js │ ├── cordova-plugin-whitelist │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── RELEASENOTES.md │ │ ├── doc │ │ │ ├── de │ │ │ │ └── README.md │ │ │ ├── es │ │ │ │ └── README.md │ │ │ ├── fr │ │ │ │ └── README.md │ │ │ ├── it │ │ │ │ └── README.md │ │ │ ├── ja │ │ │ │ └── README.md │ │ │ ├── ko │ │ │ │ └── README.md │ │ │ ├── pl │ │ │ │ └── README.md │ │ │ └── zh │ │ │ │ └── README.md │ │ ├── package.json │ │ ├── plugin.xml │ │ └── src │ │ │ └── android │ │ │ └── WhitelistPlugin.java │ └── fetch.json ├── res │ ├── README.md │ ├── icon │ │ ├── android │ │ │ ├── icon-36-ldpi.png │ │ │ ├── icon-48-mdpi.png │ │ │ ├── icon-72-hdpi.png │ │ │ └── icon-96-xhdpi.png │ │ ├── bada-wac │ │ │ ├── icon-48-type5.png │ │ │ ├── icon-50-type3.png │ │ │ └── icon-80-type4.png │ │ ├── bada │ │ │ └── icon-128.png │ │ ├── blackberry │ │ │ └── icon-80.png │ │ ├── blackberry10 │ │ │ └── icon-80.png │ │ ├── ios │ │ │ ├── icon-57-2x.png │ │ │ ├── icon-57.png │ │ │ ├── icon-72-2x.png │ │ │ └── icon-72.png │ │ ├── tizen │ │ │ └── icon-128.png │ │ ├── webos │ │ │ └── icon-64.png │ │ └── windows-phone │ │ │ ├── icon-173-tile.png │ │ │ ├── icon-48.png │ │ │ └── icon-62-tile.png │ └── screen │ │ ├── android │ │ ├── screen-hdpi-landscape.png │ │ ├── screen-hdpi-portrait.png │ │ ├── screen-ldpi-landscape.png │ │ ├── screen-ldpi-portrait.png │ │ ├── screen-mdpi-landscape.png │ │ ├── screen-mdpi-portrait.png │ │ ├── screen-xhdpi-landscape.png │ │ └── screen-xhdpi-portrait.png │ │ ├── bada-wac │ │ ├── screen-type3.png │ │ ├── screen-type4.png │ │ └── screen-type5.png │ │ ├── bada │ │ └── screen-portrait.png │ │ ├── blackberry │ │ └── screen-225.png │ │ ├── blackberry10 │ │ ├── splash-1280x768.png │ │ ├── splash-720x720.png │ │ └── splash-768x1280.png │ │ ├── ios │ │ ├── screen-ipad-landscape-2x.png │ │ ├── screen-ipad-landscape.png │ │ ├── screen-ipad-portrait-2x.png │ │ ├── screen-ipad-portrait.png │ │ ├── screen-iphone-landscape-2x.png │ │ ├── screen-iphone-landscape.png │ │ ├── screen-iphone-portrait-2x.png │ │ ├── screen-iphone-portrait-568h-2x.png │ │ └── screen-iphone-portrait.png │ │ ├── tizen │ │ └── README.md │ │ ├── webos │ │ └── screen-64.png │ │ └── windows-phone │ │ └── screen-portrait.jpg └── www │ ├── config.json │ ├── css │ └── index.css │ ├── img │ ├── camera.png │ └── car_icon.png │ ├── index.html │ └── js │ ├── index.js │ └── jquery-2.1.1.min.js ├── server ├── app.js ├── casper-runner.js ├── data │ ├── BrokenWindshield.zip │ ├── FlatTire.zip │ ├── MotorcycleAccident.zip │ ├── Negatives.zip │ └── Vandalism.zip ├── env.example ├── lib │ └── watson-visRec-setup.js ├── package-lock.json ├── package.json └── public │ ├── css │ └── index.css │ ├── img │ └── car_icon.png │ ├── index.html │ └── js │ └── index.js └── test ├── README.md ├── data ├── brokenWindowTest.jpg ├── flatTireTest.jpg └── motorcycleAccidentTest.jpg └── integration └── test.mainpage.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /README-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/README-cn.md -------------------------------------------------------------------------------- /README-ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/README-ja.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/README.md -------------------------------------------------------------------------------- /doc/source/images/apiKey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/doc/source/images/apiKey.png -------------------------------------------------------------------------------- /doc/source/images/app-not-running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/doc/source/images/app-not-running.png -------------------------------------------------------------------------------- /doc/source/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/doc/source/images/architecture.png -------------------------------------------------------------------------------- /doc/source/images/output1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/doc/source/images/output1.png -------------------------------------------------------------------------------- /doc/source/images/toolchain-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/doc/source/images/toolchain-pipeline.png -------------------------------------------------------------------------------- /manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/manifest.yml -------------------------------------------------------------------------------- /mobile/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/.gitignore -------------------------------------------------------------------------------- /mobile/.npmignore: -------------------------------------------------------------------------------- 1 | # OS X 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /mobile/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/Dockerfile -------------------------------------------------------------------------------- /mobile/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/config.xml -------------------------------------------------------------------------------- /mobile/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/hooks/README.md -------------------------------------------------------------------------------- /mobile/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/package.json -------------------------------------------------------------------------------- /mobile/platforms/platforms.json: -------------------------------------------------------------------------------- 1 | { 2 | "android": "6.3.0" 3 | } -------------------------------------------------------------------------------- /mobile/plugins/cordova-plugin-cache-clear/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/plugins/cordova-plugin-cache-clear/README.md -------------------------------------------------------------------------------- /mobile/plugins/cordova-plugin-cache-clear/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/plugins/cordova-plugin-cache-clear/package.json -------------------------------------------------------------------------------- /mobile/plugins/cordova-plugin-cache-clear/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/plugins/cordova-plugin-cache-clear/plugin.xml -------------------------------------------------------------------------------- /mobile/plugins/cordova-plugin-cache-clear/src/android/CacheClear.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/plugins/cordova-plugin-cache-clear/src/android/CacheClear.java -------------------------------------------------------------------------------- /mobile/plugins/cordova-plugin-cache-clear/src/ios/CacheClear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/plugins/cordova-plugin-cache-clear/src/ios/CacheClear.h -------------------------------------------------------------------------------- /mobile/plugins/cordova-plugin-cache-clear/src/ios/CacheClear.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/plugins/cordova-plugin-cache-clear/src/ios/CacheClear.m -------------------------------------------------------------------------------- /mobile/plugins/cordova-plugin-cache-clear/www/CacheClear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/plugins/cordova-plugin-cache-clear/www/CacheClear.js -------------------------------------------------------------------------------- /mobile/plugins/cordova-plugin-whitelist/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/plugins/cordova-plugin-whitelist/CONTRIBUTING.md -------------------------------------------------------------------------------- /mobile/plugins/cordova-plugin-whitelist/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/plugins/cordova-plugin-whitelist/LICENSE -------------------------------------------------------------------------------- /mobile/plugins/cordova-plugin-whitelist/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/plugins/cordova-plugin-whitelist/NOTICE -------------------------------------------------------------------------------- /mobile/plugins/cordova-plugin-whitelist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/plugins/cordova-plugin-whitelist/README.md -------------------------------------------------------------------------------- /mobile/plugins/cordova-plugin-whitelist/RELEASENOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/plugins/cordova-plugin-whitelist/RELEASENOTES.md -------------------------------------------------------------------------------- /mobile/plugins/cordova-plugin-whitelist/doc/de/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/plugins/cordova-plugin-whitelist/doc/de/README.md -------------------------------------------------------------------------------- /mobile/plugins/cordova-plugin-whitelist/doc/es/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/plugins/cordova-plugin-whitelist/doc/es/README.md -------------------------------------------------------------------------------- /mobile/plugins/cordova-plugin-whitelist/doc/fr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/plugins/cordova-plugin-whitelist/doc/fr/README.md -------------------------------------------------------------------------------- /mobile/plugins/cordova-plugin-whitelist/doc/it/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/plugins/cordova-plugin-whitelist/doc/it/README.md -------------------------------------------------------------------------------- /mobile/plugins/cordova-plugin-whitelist/doc/ja/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/plugins/cordova-plugin-whitelist/doc/ja/README.md -------------------------------------------------------------------------------- /mobile/plugins/cordova-plugin-whitelist/doc/ko/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/plugins/cordova-plugin-whitelist/doc/ko/README.md -------------------------------------------------------------------------------- /mobile/plugins/cordova-plugin-whitelist/doc/pl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/plugins/cordova-plugin-whitelist/doc/pl/README.md -------------------------------------------------------------------------------- /mobile/plugins/cordova-plugin-whitelist/doc/zh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/plugins/cordova-plugin-whitelist/doc/zh/README.md -------------------------------------------------------------------------------- /mobile/plugins/cordova-plugin-whitelist/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/plugins/cordova-plugin-whitelist/package.json -------------------------------------------------------------------------------- /mobile/plugins/cordova-plugin-whitelist/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/plugins/cordova-plugin-whitelist/plugin.xml -------------------------------------------------------------------------------- /mobile/plugins/cordova-plugin-whitelist/src/android/WhitelistPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/plugins/cordova-plugin-whitelist/src/android/WhitelistPlugin.java -------------------------------------------------------------------------------- /mobile/plugins/fetch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/plugins/fetch.json -------------------------------------------------------------------------------- /mobile/res/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/README.md -------------------------------------------------------------------------------- /mobile/res/icon/android/icon-36-ldpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/icon/android/icon-36-ldpi.png -------------------------------------------------------------------------------- /mobile/res/icon/android/icon-48-mdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/icon/android/icon-48-mdpi.png -------------------------------------------------------------------------------- /mobile/res/icon/android/icon-72-hdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/icon/android/icon-72-hdpi.png -------------------------------------------------------------------------------- /mobile/res/icon/android/icon-96-xhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/icon/android/icon-96-xhdpi.png -------------------------------------------------------------------------------- /mobile/res/icon/bada-wac/icon-48-type5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/icon/bada-wac/icon-48-type5.png -------------------------------------------------------------------------------- /mobile/res/icon/bada-wac/icon-50-type3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/icon/bada-wac/icon-50-type3.png -------------------------------------------------------------------------------- /mobile/res/icon/bada-wac/icon-80-type4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/icon/bada-wac/icon-80-type4.png -------------------------------------------------------------------------------- /mobile/res/icon/bada/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/icon/bada/icon-128.png -------------------------------------------------------------------------------- /mobile/res/icon/blackberry/icon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/icon/blackberry/icon-80.png -------------------------------------------------------------------------------- /mobile/res/icon/blackberry10/icon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/icon/blackberry10/icon-80.png -------------------------------------------------------------------------------- /mobile/res/icon/ios/icon-57-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/icon/ios/icon-57-2x.png -------------------------------------------------------------------------------- /mobile/res/icon/ios/icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/icon/ios/icon-57.png -------------------------------------------------------------------------------- /mobile/res/icon/ios/icon-72-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/icon/ios/icon-72-2x.png -------------------------------------------------------------------------------- /mobile/res/icon/ios/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/icon/ios/icon-72.png -------------------------------------------------------------------------------- /mobile/res/icon/tizen/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/icon/tizen/icon-128.png -------------------------------------------------------------------------------- /mobile/res/icon/webos/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/icon/webos/icon-64.png -------------------------------------------------------------------------------- /mobile/res/icon/windows-phone/icon-173-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/icon/windows-phone/icon-173-tile.png -------------------------------------------------------------------------------- /mobile/res/icon/windows-phone/icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/icon/windows-phone/icon-48.png -------------------------------------------------------------------------------- /mobile/res/icon/windows-phone/icon-62-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/icon/windows-phone/icon-62-tile.png -------------------------------------------------------------------------------- /mobile/res/screen/android/screen-hdpi-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/screen/android/screen-hdpi-landscape.png -------------------------------------------------------------------------------- /mobile/res/screen/android/screen-hdpi-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/screen/android/screen-hdpi-portrait.png -------------------------------------------------------------------------------- /mobile/res/screen/android/screen-ldpi-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/screen/android/screen-ldpi-landscape.png -------------------------------------------------------------------------------- /mobile/res/screen/android/screen-ldpi-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/screen/android/screen-ldpi-portrait.png -------------------------------------------------------------------------------- /mobile/res/screen/android/screen-mdpi-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/screen/android/screen-mdpi-landscape.png -------------------------------------------------------------------------------- /mobile/res/screen/android/screen-mdpi-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/screen/android/screen-mdpi-portrait.png -------------------------------------------------------------------------------- /mobile/res/screen/android/screen-xhdpi-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/screen/android/screen-xhdpi-landscape.png -------------------------------------------------------------------------------- /mobile/res/screen/android/screen-xhdpi-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/screen/android/screen-xhdpi-portrait.png -------------------------------------------------------------------------------- /mobile/res/screen/bada-wac/screen-type3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/screen/bada-wac/screen-type3.png -------------------------------------------------------------------------------- /mobile/res/screen/bada-wac/screen-type4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/screen/bada-wac/screen-type4.png -------------------------------------------------------------------------------- /mobile/res/screen/bada-wac/screen-type5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/screen/bada-wac/screen-type5.png -------------------------------------------------------------------------------- /mobile/res/screen/bada/screen-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/screen/bada/screen-portrait.png -------------------------------------------------------------------------------- /mobile/res/screen/blackberry/screen-225.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/screen/blackberry/screen-225.png -------------------------------------------------------------------------------- /mobile/res/screen/blackberry10/splash-1280x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/screen/blackberry10/splash-1280x768.png -------------------------------------------------------------------------------- /mobile/res/screen/blackberry10/splash-720x720.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/screen/blackberry10/splash-720x720.png -------------------------------------------------------------------------------- /mobile/res/screen/blackberry10/splash-768x1280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/screen/blackberry10/splash-768x1280.png -------------------------------------------------------------------------------- /mobile/res/screen/ios/screen-ipad-landscape-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/screen/ios/screen-ipad-landscape-2x.png -------------------------------------------------------------------------------- /mobile/res/screen/ios/screen-ipad-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/screen/ios/screen-ipad-landscape.png -------------------------------------------------------------------------------- /mobile/res/screen/ios/screen-ipad-portrait-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/screen/ios/screen-ipad-portrait-2x.png -------------------------------------------------------------------------------- /mobile/res/screen/ios/screen-ipad-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/screen/ios/screen-ipad-portrait.png -------------------------------------------------------------------------------- /mobile/res/screen/ios/screen-iphone-landscape-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/screen/ios/screen-iphone-landscape-2x.png -------------------------------------------------------------------------------- /mobile/res/screen/ios/screen-iphone-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/screen/ios/screen-iphone-landscape.png -------------------------------------------------------------------------------- /mobile/res/screen/ios/screen-iphone-portrait-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/screen/ios/screen-iphone-portrait-2x.png -------------------------------------------------------------------------------- /mobile/res/screen/ios/screen-iphone-portrait-568h-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/screen/ios/screen-iphone-portrait-568h-2x.png -------------------------------------------------------------------------------- /mobile/res/screen/ios/screen-iphone-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/screen/ios/screen-iphone-portrait.png -------------------------------------------------------------------------------- /mobile/res/screen/tizen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/screen/tizen/README.md -------------------------------------------------------------------------------- /mobile/res/screen/webos/screen-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/screen/webos/screen-64.png -------------------------------------------------------------------------------- /mobile/res/screen/windows-phone/screen-portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/res/screen/windows-phone/screen-portrait.jpg -------------------------------------------------------------------------------- /mobile/www/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "SERVER_URL": "https://put_server_url_here" 3 | } 4 | -------------------------------------------------------------------------------- /mobile/www/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/www/css/index.css -------------------------------------------------------------------------------- /mobile/www/img/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/www/img/camera.png -------------------------------------------------------------------------------- /mobile/www/img/car_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/www/img/car_icon.png -------------------------------------------------------------------------------- /mobile/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/www/index.html -------------------------------------------------------------------------------- /mobile/www/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/www/js/index.js -------------------------------------------------------------------------------- /mobile/www/js/jquery-2.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/mobile/www/js/jquery-2.1.1.min.js -------------------------------------------------------------------------------- /server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/server/app.js -------------------------------------------------------------------------------- /server/casper-runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/server/casper-runner.js -------------------------------------------------------------------------------- /server/data/BrokenWindshield.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/server/data/BrokenWindshield.zip -------------------------------------------------------------------------------- /server/data/FlatTire.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/server/data/FlatTire.zip -------------------------------------------------------------------------------- /server/data/MotorcycleAccident.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/server/data/MotorcycleAccident.zip -------------------------------------------------------------------------------- /server/data/Negatives.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/server/data/Negatives.zip -------------------------------------------------------------------------------- /server/data/Vandalism.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/server/data/Vandalism.zip -------------------------------------------------------------------------------- /server/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/server/env.example -------------------------------------------------------------------------------- /server/lib/watson-visRec-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/server/lib/watson-visRec-setup.js -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/server/package.json -------------------------------------------------------------------------------- /server/public/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/server/public/css/index.css -------------------------------------------------------------------------------- /server/public/img/car_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/server/public/img/car_icon.png -------------------------------------------------------------------------------- /server/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/server/public/index.html -------------------------------------------------------------------------------- /server/public/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/server/public/js/index.js -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/test/README.md -------------------------------------------------------------------------------- /test/data/brokenWindowTest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/test/data/brokenWindowTest.jpg -------------------------------------------------------------------------------- /test/data/flatTireTest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/test/data/flatTireTest.jpg -------------------------------------------------------------------------------- /test/data/motorcycleAccidentTest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/test/data/motorcycleAccidentTest.jpg -------------------------------------------------------------------------------- /test/integration/test.mainpage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-vehicle-damage-analyzer/HEAD/test/integration/test.mainpage.js --------------------------------------------------------------------------------