├── .gitignore ├── README.md ├── openCV-Practice.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── Realank.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── Realank.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── openCV-Practice.xcscheme │ └── xcschememanagement.plist ├── openCV-Practice ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── face.imageset │ │ ├── Contents.json │ │ └── IMG_0165.PNG │ ├── img.imageset │ │ ├── Contents.json │ │ └── IMG_3705.PNG │ ├── lane1.imageset │ │ ├── Contents.json │ │ └── lane1.jpeg │ └── lane2.imageset │ │ ├── Contents.json │ │ └── lane2.jpg ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── LaneDetectViewController.h ├── LaneDetectViewController.m ├── LaneDetectViewController.xib ├── VideoViewController.h ├── VideoViewController.m ├── VideoViewController.xib ├── ViewController.h ├── ViewController.m ├── haarcascade_eye_tree_eyeglasses.xml ├── haarcascade_frontalface_alt.xml ├── haarcascade_frontalface_alt2.xml ├── linefinder.h ├── main.m ├── openCVUtil.h └── openCVUtil.mm ├── openCV-PracticeTests ├── Info.plist └── openCV_PracticeTests.m └── openCV-PracticeUITests ├── Info.plist └── openCV_PracticeUITests.m /.gitignore: -------------------------------------------------------------------------------- 1 | opencv2.framework -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/README.md -------------------------------------------------------------------------------- /openCV-Practice.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-Practice.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /openCV-Practice.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-Practice.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /openCV-Practice.xcodeproj/project.xcworkspace/xcuserdata/Realank.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-Practice.xcodeproj/project.xcworkspace/xcuserdata/Realank.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /openCV-Practice.xcodeproj/xcuserdata/Realank.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-Practice.xcodeproj/xcuserdata/Realank.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /openCV-Practice.xcodeproj/xcuserdata/Realank.xcuserdatad/xcschemes/openCV-Practice.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-Practice.xcodeproj/xcuserdata/Realank.xcuserdatad/xcschemes/openCV-Practice.xcscheme -------------------------------------------------------------------------------- /openCV-Practice.xcodeproj/xcuserdata/Realank.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-Practice.xcodeproj/xcuserdata/Realank.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /openCV-Practice/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-Practice/AppDelegate.h -------------------------------------------------------------------------------- /openCV-Practice/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-Practice/AppDelegate.m -------------------------------------------------------------------------------- /openCV-Practice/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-Practice/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /openCV-Practice/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-Practice/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /openCV-Practice/Assets.xcassets/face.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-Practice/Assets.xcassets/face.imageset/Contents.json -------------------------------------------------------------------------------- /openCV-Practice/Assets.xcassets/face.imageset/IMG_0165.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-Practice/Assets.xcassets/face.imageset/IMG_0165.PNG -------------------------------------------------------------------------------- /openCV-Practice/Assets.xcassets/img.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-Practice/Assets.xcassets/img.imageset/Contents.json -------------------------------------------------------------------------------- /openCV-Practice/Assets.xcassets/img.imageset/IMG_3705.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-Practice/Assets.xcassets/img.imageset/IMG_3705.PNG -------------------------------------------------------------------------------- /openCV-Practice/Assets.xcassets/lane1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-Practice/Assets.xcassets/lane1.imageset/Contents.json -------------------------------------------------------------------------------- /openCV-Practice/Assets.xcassets/lane1.imageset/lane1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-Practice/Assets.xcassets/lane1.imageset/lane1.jpeg -------------------------------------------------------------------------------- /openCV-Practice/Assets.xcassets/lane2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-Practice/Assets.xcassets/lane2.imageset/Contents.json -------------------------------------------------------------------------------- /openCV-Practice/Assets.xcassets/lane2.imageset/lane2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-Practice/Assets.xcassets/lane2.imageset/lane2.jpg -------------------------------------------------------------------------------- /openCV-Practice/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-Practice/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /openCV-Practice/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-Practice/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /openCV-Practice/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-Practice/Info.plist -------------------------------------------------------------------------------- /openCV-Practice/LaneDetectViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-Practice/LaneDetectViewController.h -------------------------------------------------------------------------------- /openCV-Practice/LaneDetectViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-Practice/LaneDetectViewController.m -------------------------------------------------------------------------------- /openCV-Practice/LaneDetectViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-Practice/LaneDetectViewController.xib -------------------------------------------------------------------------------- /openCV-Practice/VideoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-Practice/VideoViewController.h -------------------------------------------------------------------------------- /openCV-Practice/VideoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-Practice/VideoViewController.m -------------------------------------------------------------------------------- /openCV-Practice/VideoViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-Practice/VideoViewController.xib -------------------------------------------------------------------------------- /openCV-Practice/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-Practice/ViewController.h -------------------------------------------------------------------------------- /openCV-Practice/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-Practice/ViewController.m -------------------------------------------------------------------------------- /openCV-Practice/haarcascade_eye_tree_eyeglasses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-Practice/haarcascade_eye_tree_eyeglasses.xml -------------------------------------------------------------------------------- /openCV-Practice/haarcascade_frontalface_alt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-Practice/haarcascade_frontalface_alt.xml -------------------------------------------------------------------------------- /openCV-Practice/haarcascade_frontalface_alt2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-Practice/haarcascade_frontalface_alt2.xml -------------------------------------------------------------------------------- /openCV-Practice/linefinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-Practice/linefinder.h -------------------------------------------------------------------------------- /openCV-Practice/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-Practice/main.m -------------------------------------------------------------------------------- /openCV-Practice/openCVUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-Practice/openCVUtil.h -------------------------------------------------------------------------------- /openCV-Practice/openCVUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-Practice/openCVUtil.mm -------------------------------------------------------------------------------- /openCV-PracticeTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-PracticeTests/Info.plist -------------------------------------------------------------------------------- /openCV-PracticeTests/openCV_PracticeTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-PracticeTests/openCV_PracticeTests.m -------------------------------------------------------------------------------- /openCV-PracticeUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-PracticeUITests/Info.plist -------------------------------------------------------------------------------- /openCV-PracticeUITests/openCV_PracticeUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Realank/openCV-Practice/HEAD/openCV-PracticeUITests/openCV_PracticeUITests.m --------------------------------------------------------------------------------