├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── TrafficLightApp.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── CaffeApp.xcscmblueprint │ │ ├── TrafficLightApp.xcscmblueprint │ │ └── TrafficLightDetector.xcscmblueprint └── xcuserdata │ └── avihayassouline.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── CaffeApp.xcscheme │ └── xcschememanagement.plist ├── TrafficLightApp ├── AppDelegate.h ├── AppDelegate.m ├── Assets │ ├── greenLight.png │ ├── noLight.png │ └── redLight.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Classifier.h ├── Classifier.mm ├── Info.plist ├── ViewController.h ├── ViewController.mm └── main.m ├── download_dependencies.sh ├── model ├── deploy.prototxt ├── labels.txt └── mean.binaryproto └── screenshots └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asavihay/TrafficLights-DeepLearning-iOS/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asavihay/TrafficLights-DeepLearning-iOS/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asavihay/TrafficLights-DeepLearning-iOS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asavihay/TrafficLights-DeepLearning-iOS/HEAD/README.md -------------------------------------------------------------------------------- /TrafficLightApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asavihay/TrafficLights-DeepLearning-iOS/HEAD/TrafficLightApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TrafficLightApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asavihay/TrafficLights-DeepLearning-iOS/HEAD/TrafficLightApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TrafficLightApp.xcodeproj/project.xcworkspace/xcshareddata/CaffeApp.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asavihay/TrafficLights-DeepLearning-iOS/HEAD/TrafficLightApp.xcodeproj/project.xcworkspace/xcshareddata/CaffeApp.xcscmblueprint -------------------------------------------------------------------------------- /TrafficLightApp.xcodeproj/project.xcworkspace/xcshareddata/TrafficLightApp.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asavihay/TrafficLights-DeepLearning-iOS/HEAD/TrafficLightApp.xcodeproj/project.xcworkspace/xcshareddata/TrafficLightApp.xcscmblueprint -------------------------------------------------------------------------------- /TrafficLightApp.xcodeproj/project.xcworkspace/xcshareddata/TrafficLightDetector.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asavihay/TrafficLights-DeepLearning-iOS/HEAD/TrafficLightApp.xcodeproj/project.xcworkspace/xcshareddata/TrafficLightDetector.xcscmblueprint -------------------------------------------------------------------------------- /TrafficLightApp.xcodeproj/xcuserdata/avihayassouline.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asavihay/TrafficLights-DeepLearning-iOS/HEAD/TrafficLightApp.xcodeproj/xcuserdata/avihayassouline.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /TrafficLightApp.xcodeproj/xcuserdata/avihayassouline.xcuserdatad/xcschemes/CaffeApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asavihay/TrafficLights-DeepLearning-iOS/HEAD/TrafficLightApp.xcodeproj/xcuserdata/avihayassouline.xcuserdatad/xcschemes/CaffeApp.xcscheme -------------------------------------------------------------------------------- /TrafficLightApp.xcodeproj/xcuserdata/avihayassouline.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asavihay/TrafficLights-DeepLearning-iOS/HEAD/TrafficLightApp.xcodeproj/xcuserdata/avihayassouline.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /TrafficLightApp/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asavihay/TrafficLights-DeepLearning-iOS/HEAD/TrafficLightApp/AppDelegate.h -------------------------------------------------------------------------------- /TrafficLightApp/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asavihay/TrafficLights-DeepLearning-iOS/HEAD/TrafficLightApp/AppDelegate.m -------------------------------------------------------------------------------- /TrafficLightApp/Assets/greenLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asavihay/TrafficLights-DeepLearning-iOS/HEAD/TrafficLightApp/Assets/greenLight.png -------------------------------------------------------------------------------- /TrafficLightApp/Assets/noLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asavihay/TrafficLights-DeepLearning-iOS/HEAD/TrafficLightApp/Assets/noLight.png -------------------------------------------------------------------------------- /TrafficLightApp/Assets/redLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asavihay/TrafficLights-DeepLearning-iOS/HEAD/TrafficLightApp/Assets/redLight.png -------------------------------------------------------------------------------- /TrafficLightApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asavihay/TrafficLights-DeepLearning-iOS/HEAD/TrafficLightApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TrafficLightApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asavihay/TrafficLights-DeepLearning-iOS/HEAD/TrafficLightApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TrafficLightApp/Classifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asavihay/TrafficLights-DeepLearning-iOS/HEAD/TrafficLightApp/Classifier.h -------------------------------------------------------------------------------- /TrafficLightApp/Classifier.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asavihay/TrafficLights-DeepLearning-iOS/HEAD/TrafficLightApp/Classifier.mm -------------------------------------------------------------------------------- /TrafficLightApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asavihay/TrafficLights-DeepLearning-iOS/HEAD/TrafficLightApp/Info.plist -------------------------------------------------------------------------------- /TrafficLightApp/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asavihay/TrafficLights-DeepLearning-iOS/HEAD/TrafficLightApp/ViewController.h -------------------------------------------------------------------------------- /TrafficLightApp/ViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asavihay/TrafficLights-DeepLearning-iOS/HEAD/TrafficLightApp/ViewController.mm -------------------------------------------------------------------------------- /TrafficLightApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asavihay/TrafficLights-DeepLearning-iOS/HEAD/TrafficLightApp/main.m -------------------------------------------------------------------------------- /download_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asavihay/TrafficLights-DeepLearning-iOS/HEAD/download_dependencies.sh -------------------------------------------------------------------------------- /model/deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asavihay/TrafficLights-DeepLearning-iOS/HEAD/model/deploy.prototxt -------------------------------------------------------------------------------- /model/labels.txt: -------------------------------------------------------------------------------- 1 | background 2 | red 3 | green 4 | -------------------------------------------------------------------------------- /model/mean.binaryproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asavihay/TrafficLights-DeepLearning-iOS/HEAD/model/mean.binaryproto -------------------------------------------------------------------------------- /screenshots/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asavihay/TrafficLights-DeepLearning-iOS/HEAD/screenshots/screenshot.png --------------------------------------------------------------------------------