├── .authors ├── .gitignore ├── Assets ├── Default.png ├── Default@2x.png ├── Icon_114.png ├── Icon_57.png └── Icon_72.png ├── Classes ├── OpenCVTestAppDelegate.h ├── OpenCVTestAppDelegate.m ├── OpenCVTestViewController.h └── OpenCVTestViewController.m ├── Info.plist ├── MIT-LICENSE.txt ├── OpenCV-2.1.0.patch ├── OpenCV-2.2.0.patch ├── OpenCVTest.xcodeproj └── project.pbxproj ├── OpenCVTest_Prefix.pch ├── README.md ├── Resources ├── Default.png ├── Default@2x.png ├── Icon_114.png ├── Icon_57.png ├── Icon_72.png ├── MainWindow.xib ├── Tink.aiff └── cat.png ├── main.m ├── opencv_cmake.sh ├── opencv_device ├── include │ ├── opencv │ │ ├── cv.h │ │ ├── cv.hpp │ │ ├── cvaux.h │ │ ├── cvaux.hpp │ │ ├── cvwimage.h │ │ ├── cxcore.h │ │ ├── cxcore.hpp │ │ ├── cxeigen.hpp │ │ ├── cxmisc.h │ │ ├── highgui.h │ │ └── ml.h │ └── opencv2 │ │ ├── contrib │ │ └── contrib.hpp │ │ ├── core │ │ ├── core.hpp │ │ ├── core_c.h │ │ ├── eigen.hpp │ │ ├── internal.hpp │ │ ├── mat.hpp │ │ ├── operations.hpp │ │ ├── types_c.h │ │ ├── version.hpp │ │ └── wimage.hpp │ │ ├── features2d │ │ └── features2d.hpp │ │ ├── flann │ │ ├── all_indices.h │ │ ├── allocator.h │ │ ├── autotuned_index.h │ │ ├── composite_index.h │ │ ├── dist.h │ │ ├── flann.hpp │ │ ├── flann_base.hpp │ │ ├── general.h │ │ ├── ground_truth.h │ │ ├── hdf5.h │ │ ├── heap.h │ │ ├── index_testing.h │ │ ├── kdtree_index.h │ │ ├── kmeans_index.h │ │ ├── linear_index.h │ │ ├── logger.h │ │ ├── matrix.h │ │ ├── nn_index.h │ │ ├── object_factory.h │ │ ├── random.h │ │ ├── result_set.h │ │ ├── sampling.h │ │ ├── saving.h │ │ ├── simplex_downhill.h │ │ └── timer.h │ │ ├── gpu │ │ ├── devmem2d.hpp │ │ ├── gpu.hpp │ │ ├── matrix_operations.hpp │ │ └── stream_accessor.hpp │ │ ├── imgproc │ │ ├── imgproc.hpp │ │ ├── imgproc_c.h │ │ └── types_c.h │ │ ├── legacy │ │ ├── blobtrack.hpp │ │ ├── compat.hpp │ │ ├── legacy.hpp │ │ └── streams.hpp │ │ ├── ml │ │ └── ml.hpp │ │ ├── objdetect │ │ └── objdetect.hpp │ │ ├── opencv.hpp │ │ └── video │ │ ├── background_segm.hpp │ │ └── tracking.hpp ├── lib │ ├── libopencv_core.a │ ├── libopencv_imgproc.a │ └── libopencv_objdetect.a └── share │ └── opencv │ └── haarcascades │ ├── haarcascade_frontalface_alt.xml │ ├── haarcascade_frontalface_alt2.xml │ ├── haarcascade_frontalface_alt_tree.xml │ ├── haarcascade_frontalface_default.xml │ ├── haarcascade_fullbody.xml │ ├── haarcascade_lowerbody.xml │ ├── haarcascade_profileface.xml │ └── haarcascade_upperbody.xml └── opencv_simulator ├── include ├── opencv │ ├── cv.h │ ├── cv.hpp │ ├── cvaux.h │ ├── cvaux.hpp │ ├── cvwimage.h │ ├── cxcore.h │ ├── cxcore.hpp │ ├── cxeigen.hpp │ ├── cxmisc.h │ ├── highgui.h │ └── ml.h └── opencv2 │ ├── contrib │ └── contrib.hpp │ ├── core │ ├── core.hpp │ ├── core_c.h │ ├── eigen.hpp │ ├── internal.hpp │ ├── mat.hpp │ ├── operations.hpp │ ├── types_c.h │ ├── version.hpp │ └── wimage.hpp │ ├── features2d │ └── features2d.hpp │ ├── flann │ ├── all_indices.h │ ├── allocator.h │ ├── autotuned_index.h │ ├── composite_index.h │ ├── dist.h │ ├── flann.hpp │ ├── flann_base.hpp │ ├── general.h │ ├── ground_truth.h │ ├── hdf5.h │ ├── heap.h │ ├── index_testing.h │ ├── kdtree_index.h │ ├── kmeans_index.h │ ├── linear_index.h │ ├── logger.h │ ├── matrix.h │ ├── nn_index.h │ ├── object_factory.h │ ├── random.h │ ├── result_set.h │ ├── sampling.h │ ├── saving.h │ ├── simplex_downhill.h │ └── timer.h │ ├── gpu │ ├── devmem2d.hpp │ ├── gpu.hpp │ ├── matrix_operations.hpp │ └── stream_accessor.hpp │ ├── imgproc │ ├── imgproc.hpp │ ├── imgproc_c.h │ └── types_c.h │ ├── legacy │ ├── blobtrack.hpp │ ├── compat.hpp │ ├── legacy.hpp │ └── streams.hpp │ ├── ml │ └── ml.hpp │ ├── objdetect │ └── objdetect.hpp │ ├── opencv.hpp │ └── video │ ├── background_segm.hpp │ └── tracking.hpp └── lib ├── libopencv_core.a ├── libopencv_imgproc.a └── libopencv_objdetect.a /.authors: -------------------------------------------------------------------------------- 1 | niw = Yoshimasa Niwa 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/Assets/Default.png -------------------------------------------------------------------------------- /Assets/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/Assets/Default@2x.png -------------------------------------------------------------------------------- /Assets/Icon_114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/Assets/Icon_114.png -------------------------------------------------------------------------------- /Assets/Icon_57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/Assets/Icon_57.png -------------------------------------------------------------------------------- /Assets/Icon_72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/Assets/Icon_72.png -------------------------------------------------------------------------------- /Classes/OpenCVTestAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/Classes/OpenCVTestAppDelegate.h -------------------------------------------------------------------------------- /Classes/OpenCVTestAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/Classes/OpenCVTestAppDelegate.m -------------------------------------------------------------------------------- /Classes/OpenCVTestViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/Classes/OpenCVTestViewController.h -------------------------------------------------------------------------------- /Classes/OpenCVTestViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/Classes/OpenCVTestViewController.m -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/Info.plist -------------------------------------------------------------------------------- /MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/MIT-LICENSE.txt -------------------------------------------------------------------------------- /OpenCV-2.1.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/OpenCV-2.1.0.patch -------------------------------------------------------------------------------- /OpenCV-2.2.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/OpenCV-2.2.0.patch -------------------------------------------------------------------------------- /OpenCVTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/OpenCVTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /OpenCVTest_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/OpenCVTest_Prefix.pch -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/Resources/Default.png -------------------------------------------------------------------------------- /Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/Resources/Default@2x.png -------------------------------------------------------------------------------- /Resources/Icon_114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/Resources/Icon_114.png -------------------------------------------------------------------------------- /Resources/Icon_57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/Resources/Icon_57.png -------------------------------------------------------------------------------- /Resources/Icon_72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/Resources/Icon_72.png -------------------------------------------------------------------------------- /Resources/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/Resources/MainWindow.xib -------------------------------------------------------------------------------- /Resources/Tink.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/Resources/Tink.aiff -------------------------------------------------------------------------------- /Resources/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/Resources/cat.png -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/main.m -------------------------------------------------------------------------------- /opencv_cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_cmake.sh -------------------------------------------------------------------------------- /opencv_device/include/opencv/cv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv/cv.h -------------------------------------------------------------------------------- /opencv_device/include/opencv/cv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv/cv.hpp -------------------------------------------------------------------------------- /opencv_device/include/opencv/cvaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv/cvaux.h -------------------------------------------------------------------------------- /opencv_device/include/opencv/cvaux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv/cvaux.hpp -------------------------------------------------------------------------------- /opencv_device/include/opencv/cvwimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv/cvwimage.h -------------------------------------------------------------------------------- /opencv_device/include/opencv/cxcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv/cxcore.h -------------------------------------------------------------------------------- /opencv_device/include/opencv/cxcore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv/cxcore.hpp -------------------------------------------------------------------------------- /opencv_device/include/opencv/cxeigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv/cxeigen.hpp -------------------------------------------------------------------------------- /opencv_device/include/opencv/cxmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv/cxmisc.h -------------------------------------------------------------------------------- /opencv_device/include/opencv/highgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv/highgui.h -------------------------------------------------------------------------------- /opencv_device/include/opencv/ml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv/ml.h -------------------------------------------------------------------------------- /opencv_device/include/opencv2/contrib/contrib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/contrib/contrib.hpp -------------------------------------------------------------------------------- /opencv_device/include/opencv2/core/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/core/core.hpp -------------------------------------------------------------------------------- /opencv_device/include/opencv2/core/core_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/core/core_c.h -------------------------------------------------------------------------------- /opencv_device/include/opencv2/core/eigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/core/eigen.hpp -------------------------------------------------------------------------------- /opencv_device/include/opencv2/core/internal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/core/internal.hpp -------------------------------------------------------------------------------- /opencv_device/include/opencv2/core/mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/core/mat.hpp -------------------------------------------------------------------------------- /opencv_device/include/opencv2/core/operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/core/operations.hpp -------------------------------------------------------------------------------- /opencv_device/include/opencv2/core/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/core/types_c.h -------------------------------------------------------------------------------- /opencv_device/include/opencv2/core/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/core/version.hpp -------------------------------------------------------------------------------- /opencv_device/include/opencv2/core/wimage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/core/wimage.hpp -------------------------------------------------------------------------------- /opencv_device/include/opencv2/features2d/features2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/features2d/features2d.hpp -------------------------------------------------------------------------------- /opencv_device/include/opencv2/flann/all_indices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/flann/all_indices.h -------------------------------------------------------------------------------- /opencv_device/include/opencv2/flann/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/flann/allocator.h -------------------------------------------------------------------------------- /opencv_device/include/opencv2/flann/autotuned_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/flann/autotuned_index.h -------------------------------------------------------------------------------- /opencv_device/include/opencv2/flann/composite_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/flann/composite_index.h -------------------------------------------------------------------------------- /opencv_device/include/opencv2/flann/dist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/flann/dist.h -------------------------------------------------------------------------------- /opencv_device/include/opencv2/flann/flann.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/flann/flann.hpp -------------------------------------------------------------------------------- /opencv_device/include/opencv2/flann/flann_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/flann/flann_base.hpp -------------------------------------------------------------------------------- /opencv_device/include/opencv2/flann/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/flann/general.h -------------------------------------------------------------------------------- /opencv_device/include/opencv2/flann/ground_truth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/flann/ground_truth.h -------------------------------------------------------------------------------- /opencv_device/include/opencv2/flann/hdf5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/flann/hdf5.h -------------------------------------------------------------------------------- /opencv_device/include/opencv2/flann/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/flann/heap.h -------------------------------------------------------------------------------- /opencv_device/include/opencv2/flann/index_testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/flann/index_testing.h -------------------------------------------------------------------------------- /opencv_device/include/opencv2/flann/kdtree_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/flann/kdtree_index.h -------------------------------------------------------------------------------- /opencv_device/include/opencv2/flann/kmeans_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/flann/kmeans_index.h -------------------------------------------------------------------------------- /opencv_device/include/opencv2/flann/linear_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/flann/linear_index.h -------------------------------------------------------------------------------- /opencv_device/include/opencv2/flann/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/flann/logger.h -------------------------------------------------------------------------------- /opencv_device/include/opencv2/flann/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/flann/matrix.h -------------------------------------------------------------------------------- /opencv_device/include/opencv2/flann/nn_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/flann/nn_index.h -------------------------------------------------------------------------------- /opencv_device/include/opencv2/flann/object_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/flann/object_factory.h -------------------------------------------------------------------------------- /opencv_device/include/opencv2/flann/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/flann/random.h -------------------------------------------------------------------------------- /opencv_device/include/opencv2/flann/result_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/flann/result_set.h -------------------------------------------------------------------------------- /opencv_device/include/opencv2/flann/sampling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/flann/sampling.h -------------------------------------------------------------------------------- /opencv_device/include/opencv2/flann/saving.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/flann/saving.h -------------------------------------------------------------------------------- /opencv_device/include/opencv2/flann/simplex_downhill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/flann/simplex_downhill.h -------------------------------------------------------------------------------- /opencv_device/include/opencv2/flann/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/flann/timer.h -------------------------------------------------------------------------------- /opencv_device/include/opencv2/gpu/devmem2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/gpu/devmem2d.hpp -------------------------------------------------------------------------------- /opencv_device/include/opencv2/gpu/gpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/gpu/gpu.hpp -------------------------------------------------------------------------------- /opencv_device/include/opencv2/gpu/matrix_operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/gpu/matrix_operations.hpp -------------------------------------------------------------------------------- /opencv_device/include/opencv2/gpu/stream_accessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/gpu/stream_accessor.hpp -------------------------------------------------------------------------------- /opencv_device/include/opencv2/imgproc/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/imgproc/imgproc.hpp -------------------------------------------------------------------------------- /opencv_device/include/opencv2/imgproc/imgproc_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/imgproc/imgproc_c.h -------------------------------------------------------------------------------- /opencv_device/include/opencv2/imgproc/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/imgproc/types_c.h -------------------------------------------------------------------------------- /opencv_device/include/opencv2/legacy/blobtrack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/legacy/blobtrack.hpp -------------------------------------------------------------------------------- /opencv_device/include/opencv2/legacy/compat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/legacy/compat.hpp -------------------------------------------------------------------------------- /opencv_device/include/opencv2/legacy/legacy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/legacy/legacy.hpp -------------------------------------------------------------------------------- /opencv_device/include/opencv2/legacy/streams.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/legacy/streams.hpp -------------------------------------------------------------------------------- /opencv_device/include/opencv2/ml/ml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/ml/ml.hpp -------------------------------------------------------------------------------- /opencv_device/include/opencv2/objdetect/objdetect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/objdetect/objdetect.hpp -------------------------------------------------------------------------------- /opencv_device/include/opencv2/opencv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/opencv.hpp -------------------------------------------------------------------------------- /opencv_device/include/opencv2/video/background_segm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/video/background_segm.hpp -------------------------------------------------------------------------------- /opencv_device/include/opencv2/video/tracking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/include/opencv2/video/tracking.hpp -------------------------------------------------------------------------------- /opencv_device/lib/libopencv_core.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/lib/libopencv_core.a -------------------------------------------------------------------------------- /opencv_device/lib/libopencv_imgproc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/lib/libopencv_imgproc.a -------------------------------------------------------------------------------- /opencv_device/lib/libopencv_objdetect.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/lib/libopencv_objdetect.a -------------------------------------------------------------------------------- /opencv_device/share/opencv/haarcascades/haarcascade_frontalface_alt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/share/opencv/haarcascades/haarcascade_frontalface_alt.xml -------------------------------------------------------------------------------- /opencv_device/share/opencv/haarcascades/haarcascade_frontalface_alt2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/share/opencv/haarcascades/haarcascade_frontalface_alt2.xml -------------------------------------------------------------------------------- /opencv_device/share/opencv/haarcascades/haarcascade_frontalface_alt_tree.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/share/opencv/haarcascades/haarcascade_frontalface_alt_tree.xml -------------------------------------------------------------------------------- /opencv_device/share/opencv/haarcascades/haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/share/opencv/haarcascades/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /opencv_device/share/opencv/haarcascades/haarcascade_fullbody.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/share/opencv/haarcascades/haarcascade_fullbody.xml -------------------------------------------------------------------------------- /opencv_device/share/opencv/haarcascades/haarcascade_lowerbody.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/share/opencv/haarcascades/haarcascade_lowerbody.xml -------------------------------------------------------------------------------- /opencv_device/share/opencv/haarcascades/haarcascade_profileface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/share/opencv/haarcascades/haarcascade_profileface.xml -------------------------------------------------------------------------------- /opencv_device/share/opencv/haarcascades/haarcascade_upperbody.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_device/share/opencv/haarcascades/haarcascade_upperbody.xml -------------------------------------------------------------------------------- /opencv_simulator/include/opencv/cv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv/cv.h -------------------------------------------------------------------------------- /opencv_simulator/include/opencv/cv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv/cv.hpp -------------------------------------------------------------------------------- /opencv_simulator/include/opencv/cvaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv/cvaux.h -------------------------------------------------------------------------------- /opencv_simulator/include/opencv/cvaux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv/cvaux.hpp -------------------------------------------------------------------------------- /opencv_simulator/include/opencv/cvwimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv/cvwimage.h -------------------------------------------------------------------------------- /opencv_simulator/include/opencv/cxcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv/cxcore.h -------------------------------------------------------------------------------- /opencv_simulator/include/opencv/cxcore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv/cxcore.hpp -------------------------------------------------------------------------------- /opencv_simulator/include/opencv/cxeigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv/cxeigen.hpp -------------------------------------------------------------------------------- /opencv_simulator/include/opencv/cxmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv/cxmisc.h -------------------------------------------------------------------------------- /opencv_simulator/include/opencv/highgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv/highgui.h -------------------------------------------------------------------------------- /opencv_simulator/include/opencv/ml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv/ml.h -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/contrib/contrib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/contrib/contrib.hpp -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/core/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/core/core.hpp -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/core/core_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/core/core_c.h -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/core/eigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/core/eigen.hpp -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/core/internal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/core/internal.hpp -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/core/mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/core/mat.hpp -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/core/operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/core/operations.hpp -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/core/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/core/types_c.h -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/core/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/core/version.hpp -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/core/wimage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/core/wimage.hpp -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/features2d/features2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/features2d/features2d.hpp -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/flann/all_indices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/flann/all_indices.h -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/flann/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/flann/allocator.h -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/flann/autotuned_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/flann/autotuned_index.h -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/flann/composite_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/flann/composite_index.h -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/flann/dist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/flann/dist.h -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/flann/flann.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/flann/flann.hpp -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/flann/flann_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/flann/flann_base.hpp -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/flann/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/flann/general.h -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/flann/ground_truth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/flann/ground_truth.h -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/flann/hdf5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/flann/hdf5.h -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/flann/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/flann/heap.h -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/flann/index_testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/flann/index_testing.h -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/flann/kdtree_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/flann/kdtree_index.h -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/flann/kmeans_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/flann/kmeans_index.h -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/flann/linear_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/flann/linear_index.h -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/flann/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/flann/logger.h -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/flann/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/flann/matrix.h -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/flann/nn_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/flann/nn_index.h -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/flann/object_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/flann/object_factory.h -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/flann/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/flann/random.h -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/flann/result_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/flann/result_set.h -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/flann/sampling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/flann/sampling.h -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/flann/saving.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/flann/saving.h -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/flann/simplex_downhill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/flann/simplex_downhill.h -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/flann/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/flann/timer.h -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/gpu/devmem2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/gpu/devmem2d.hpp -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/gpu/gpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/gpu/gpu.hpp -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/gpu/matrix_operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/gpu/matrix_operations.hpp -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/gpu/stream_accessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/gpu/stream_accessor.hpp -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/imgproc/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/imgproc/imgproc.hpp -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/imgproc/imgproc_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/imgproc/imgproc_c.h -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/imgproc/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/imgproc/types_c.h -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/legacy/blobtrack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/legacy/blobtrack.hpp -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/legacy/compat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/legacy/compat.hpp -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/legacy/legacy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/legacy/legacy.hpp -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/legacy/streams.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/legacy/streams.hpp -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/ml/ml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/ml/ml.hpp -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/objdetect/objdetect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/objdetect/objdetect.hpp -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/opencv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/opencv.hpp -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/video/background_segm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/video/background_segm.hpp -------------------------------------------------------------------------------- /opencv_simulator/include/opencv2/video/tracking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/include/opencv2/video/tracking.hpp -------------------------------------------------------------------------------- /opencv_simulator/lib/libopencv_core.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/lib/libopencv_core.a -------------------------------------------------------------------------------- /opencv_simulator/lib/libopencv_imgproc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/lib/libopencv_imgproc.a -------------------------------------------------------------------------------- /opencv_simulator/lib/libopencv_objdetect.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niw/iphone_opencv_test/HEAD/opencv_simulator/lib/libopencv_objdetect.a --------------------------------------------------------------------------------