├── .gitignore ├── COPYING ├── GrabCutIOS ├── GrabCutIOS.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── GrabCutIOS │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── GrabCutManager.h │ ├── GrabCutManager.mm │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── TouchDrawView.h │ ├── TouchDrawView.m │ ├── ViewController.h │ ├── ViewController.mm │ ├── main.m │ └── test.jpg ├── GrabCutIOSPrefix.pch ├── GrabCutIOSTests │ ├── GrabCutIOSTests.m │ └── Info.plist └── opencv2.framework │ ├── Headers │ ├── Resources │ ├── Versions │ ├── A │ │ ├── Headers │ │ │ ├── calib3d.hpp │ │ │ ├── calib3d │ │ │ │ ├── calib3d.hpp │ │ │ │ └── calib3d_c.h │ │ │ ├── core.hpp │ │ │ ├── core │ │ │ │ ├── affine.hpp │ │ │ │ ├── base.hpp │ │ │ │ ├── bufferpool.hpp │ │ │ │ ├── core.hpp │ │ │ │ ├── core_c.h │ │ │ │ ├── cuda.hpp │ │ │ │ ├── cuda.inl.hpp │ │ │ │ ├── cuda_stream_accessor.hpp │ │ │ │ ├── cuda_types.hpp │ │ │ │ ├── cvdef.h │ │ │ │ ├── cvstd.hpp │ │ │ │ ├── cvstd.inl.hpp │ │ │ │ ├── directx.hpp │ │ │ │ ├── eigen.hpp │ │ │ │ ├── ippasync.hpp │ │ │ │ ├── mat.hpp │ │ │ │ ├── mat.inl.hpp │ │ │ │ ├── matx.hpp │ │ │ │ ├── ocl.hpp │ │ │ │ ├── ocl_genbase.hpp │ │ │ │ ├── opengl.hpp │ │ │ │ ├── operations.hpp │ │ │ │ ├── optim.hpp │ │ │ │ ├── persistence.hpp │ │ │ │ ├── private.cuda.hpp │ │ │ │ ├── private.hpp │ │ │ │ ├── ptr.inl.hpp │ │ │ │ ├── sse_utils.hpp │ │ │ │ ├── traits.hpp │ │ │ │ ├── types.hpp │ │ │ │ ├── types_c.h │ │ │ │ ├── utility.hpp │ │ │ │ ├── version.hpp │ │ │ │ └── wimage.hpp │ │ │ ├── cvconfig.h │ │ │ ├── features2d.hpp │ │ │ ├── features2d │ │ │ │ └── features2d.hpp │ │ │ ├── flann.hpp │ │ │ ├── flann │ │ │ │ ├── all_indices.h │ │ │ │ ├── allocator.h │ │ │ │ ├── any.h │ │ │ │ ├── autotuned_index.h │ │ │ │ ├── composite_index.h │ │ │ │ ├── config.h │ │ │ │ ├── defines.h │ │ │ │ ├── dist.h │ │ │ │ ├── dummy.h │ │ │ │ ├── dynamic_bitset.h │ │ │ │ ├── flann.hpp │ │ │ │ ├── flann_base.hpp │ │ │ │ ├── general.h │ │ │ │ ├── ground_truth.h │ │ │ │ ├── hdf5.h │ │ │ │ ├── heap.h │ │ │ │ ├── hierarchical_clustering_index.h │ │ │ │ ├── index_testing.h │ │ │ │ ├── kdtree_index.h │ │ │ │ ├── kdtree_single_index.h │ │ │ │ ├── kmeans_index.h │ │ │ │ ├── linear_index.h │ │ │ │ ├── logger.h │ │ │ │ ├── lsh_index.h │ │ │ │ ├── lsh_table.h │ │ │ │ ├── matrix.h │ │ │ │ ├── miniflann.hpp │ │ │ │ ├── nn_index.h │ │ │ │ ├── object_factory.h │ │ │ │ ├── params.h │ │ │ │ ├── random.h │ │ │ │ ├── result_set.h │ │ │ │ ├── sampling.h │ │ │ │ ├── saving.h │ │ │ │ ├── simplex_downhill.h │ │ │ │ └── timer.h │ │ │ ├── hal.hpp │ │ │ ├── hal │ │ │ │ ├── defs.h │ │ │ │ ├── intrin.hpp │ │ │ │ ├── intrin_cpp.hpp │ │ │ │ ├── intrin_neon.hpp │ │ │ │ └── intrin_sse.hpp │ │ │ ├── highgui.hpp │ │ │ ├── highgui │ │ │ │ ├── highgui.hpp │ │ │ │ └── highgui_c.h │ │ │ ├── imgcodecs.hpp │ │ │ ├── imgcodecs │ │ │ │ ├── imgcodecs.hpp │ │ │ │ ├── imgcodecs_c.h │ │ │ │ └── ios.h │ │ │ ├── imgproc.hpp │ │ │ ├── imgproc │ │ │ │ ├── imgproc.hpp │ │ │ │ ├── imgproc_c.h │ │ │ │ └── types_c.h │ │ │ ├── ml.hpp │ │ │ ├── ml │ │ │ │ └── ml.hpp │ │ │ ├── objdetect.hpp │ │ │ ├── objdetect │ │ │ │ ├── detection_based_tracker.hpp │ │ │ │ ├── objdetect.hpp │ │ │ │ └── objdetect_c.h │ │ │ ├── opencv.hpp │ │ │ ├── opencv_modules.hpp │ │ │ ├── photo.hpp │ │ │ ├── photo │ │ │ │ ├── cuda.hpp │ │ │ │ ├── photo.hpp │ │ │ │ └── photo_c.h │ │ │ ├── shape.hpp │ │ │ ├── shape │ │ │ │ ├── emdL1.hpp │ │ │ │ ├── hist_cost.hpp │ │ │ │ ├── shape.hpp │ │ │ │ ├── shape_distance.hpp │ │ │ │ └── shape_transformer.hpp │ │ │ ├── stitching.hpp │ │ │ ├── stitching │ │ │ │ ├── detail │ │ │ │ │ ├── autocalib.hpp │ │ │ │ │ ├── blenders.hpp │ │ │ │ │ ├── camera.hpp │ │ │ │ │ ├── exposure_compensate.hpp │ │ │ │ │ ├── matchers.hpp │ │ │ │ │ ├── motion_estimators.hpp │ │ │ │ │ ├── seam_finders.hpp │ │ │ │ │ ├── timelapsers.hpp │ │ │ │ │ ├── util.hpp │ │ │ │ │ ├── util_inl.hpp │ │ │ │ │ ├── warpers.hpp │ │ │ │ │ └── warpers_inl.hpp │ │ │ │ └── warpers.hpp │ │ │ ├── video.hpp │ │ │ ├── video │ │ │ │ ├── background_segm.hpp │ │ │ │ ├── tracking.hpp │ │ │ │ ├── tracking_c.h │ │ │ │ └── video.hpp │ │ │ ├── videoio.hpp │ │ │ ├── videoio │ │ │ │ ├── cap_ios.h │ │ │ │ ├── videoio.hpp │ │ │ │ └── videoio_c.h │ │ │ ├── videostab.hpp │ │ │ ├── videostab │ │ │ │ ├── deblurring.hpp │ │ │ │ ├── fast_marching.hpp │ │ │ │ ├── fast_marching_inl.hpp │ │ │ │ ├── frame_source.hpp │ │ │ │ ├── global_motion.hpp │ │ │ │ ├── inpainting.hpp │ │ │ │ ├── log.hpp │ │ │ │ ├── motion_core.hpp │ │ │ │ ├── motion_stabilizing.hpp │ │ │ │ ├── optical_flow.hpp │ │ │ │ ├── outlier_rejection.hpp │ │ │ │ ├── ring_buffer.hpp │ │ │ │ ├── stabilizer.hpp │ │ │ │ └── wobble_suppression.hpp │ │ │ └── world.hpp │ │ ├── Resources │ │ │ └── Info.plist │ │ └── opencv2 │ └── Current │ └── opencv2 ├── LICENSE ├── NOTICE ├── README.md └── docs └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/COPYING -------------------------------------------------------------------------------- /GrabCutIOS/GrabCutIOS.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/GrabCutIOS.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GrabCutIOS/GrabCutIOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/GrabCutIOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GrabCutIOS/GrabCutIOS/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/GrabCutIOS/AppDelegate.h -------------------------------------------------------------------------------- /GrabCutIOS/GrabCutIOS/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/GrabCutIOS/AppDelegate.m -------------------------------------------------------------------------------- /GrabCutIOS/GrabCutIOS/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/GrabCutIOS/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /GrabCutIOS/GrabCutIOS/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/GrabCutIOS/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /GrabCutIOS/GrabCutIOS/GrabCutManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/GrabCutIOS/GrabCutManager.h -------------------------------------------------------------------------------- /GrabCutIOS/GrabCutIOS/GrabCutManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/GrabCutIOS/GrabCutManager.mm -------------------------------------------------------------------------------- /GrabCutIOS/GrabCutIOS/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/GrabCutIOS/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /GrabCutIOS/GrabCutIOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/GrabCutIOS/Info.plist -------------------------------------------------------------------------------- /GrabCutIOS/GrabCutIOS/TouchDrawView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/GrabCutIOS/TouchDrawView.h -------------------------------------------------------------------------------- /GrabCutIOS/GrabCutIOS/TouchDrawView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/GrabCutIOS/TouchDrawView.m -------------------------------------------------------------------------------- /GrabCutIOS/GrabCutIOS/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/GrabCutIOS/ViewController.h -------------------------------------------------------------------------------- /GrabCutIOS/GrabCutIOS/ViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/GrabCutIOS/ViewController.mm -------------------------------------------------------------------------------- /GrabCutIOS/GrabCutIOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/GrabCutIOS/main.m -------------------------------------------------------------------------------- /GrabCutIOS/GrabCutIOS/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/GrabCutIOS/test.jpg -------------------------------------------------------------------------------- /GrabCutIOS/GrabCutIOSPrefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/GrabCutIOSPrefix.pch -------------------------------------------------------------------------------- /GrabCutIOS/GrabCutIOSTests/GrabCutIOSTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/GrabCutIOSTests/GrabCutIOSTests.m -------------------------------------------------------------------------------- /GrabCutIOS/GrabCutIOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/GrabCutIOSTests/Info.plist -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/calib3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/calib3d.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/calib3d/calib3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/calib3d/calib3d.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/calib3d/calib3d_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/calib3d/calib3d_c.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/core.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/core/affine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/core/affine.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/core/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/core/base.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/core/bufferpool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/core/bufferpool.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/core/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/core/core.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/core/core_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/core/core_c.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/core/cuda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/core/cuda.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/core/cuda.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/core/cuda.inl.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/core/cuda_stream_accessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/core/cuda_stream_accessor.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/core/cuda_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/core/cuda_types.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/core/cvdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/core/cvdef.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/core/cvstd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/core/cvstd.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/core/cvstd.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/core/cvstd.inl.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/core/directx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/core/directx.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/core/eigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/core/eigen.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/core/ippasync.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/core/ippasync.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/core/mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/core/mat.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/core/mat.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/core/mat.inl.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/core/matx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/core/matx.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/core/ocl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/core/ocl.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/core/ocl_genbase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/core/ocl_genbase.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/core/opengl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/core/opengl.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/core/operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/core/operations.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/core/optim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/core/optim.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/core/persistence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/core/persistence.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/core/private.cuda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/core/private.cuda.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/core/private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/core/private.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/core/ptr.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/core/ptr.inl.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/core/sse_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/core/sse_utils.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/core/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/core/traits.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/core/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/core/types.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/core/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/core/types_c.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/core/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/core/utility.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/core/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/core/version.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/core/wimage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/core/wimage.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/cvconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/cvconfig.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/features2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/features2d.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/features2d/features2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/features2d/features2d.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/all_indices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/all_indices.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/allocator.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/any.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/autotuned_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/autotuned_index.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/composite_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/composite_index.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/config.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/defines.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/dist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/dist.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/dummy.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/dynamic_bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/dynamic_bitset.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/flann.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/flann.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/flann_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/flann_base.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/general.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/ground_truth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/ground_truth.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/hdf5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/hdf5.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/heap.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/hierarchical_clustering_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/hierarchical_clustering_index.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/index_testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/index_testing.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/kdtree_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/kdtree_index.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/kdtree_single_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/kdtree_single_index.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/kmeans_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/kmeans_index.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/linear_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/linear_index.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/logger.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/lsh_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/lsh_index.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/lsh_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/lsh_table.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/matrix.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/miniflann.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/miniflann.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/nn_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/nn_index.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/object_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/object_factory.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/params.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/random.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/result_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/result_set.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/sampling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/sampling.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/saving.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/saving.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/simplex_downhill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/simplex_downhill.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/flann/timer.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/hal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/hal.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/hal/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/hal/defs.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/hal/intrin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/hal/intrin.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/hal/intrin_cpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/hal/intrin_cpp.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/hal/intrin_neon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/hal/intrin_neon.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/hal/intrin_sse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/hal/intrin_sse.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/highgui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/highgui.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/highgui/highgui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/highgui/highgui.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/highgui/highgui_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/highgui/highgui_c.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/imgcodecs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/imgcodecs.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/imgcodecs/imgcodecs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/imgcodecs/imgcodecs.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/imgcodecs/imgcodecs_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/imgcodecs/imgcodecs_c.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/imgcodecs/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/imgcodecs/ios.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/imgproc.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/imgproc/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/imgproc/imgproc.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/imgproc/imgproc_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/imgproc/imgproc_c.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/imgproc/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/imgproc/types_c.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/ml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/ml.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/ml/ml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/ml/ml.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/objdetect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/objdetect.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/objdetect/detection_based_tracker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/objdetect/detection_based_tracker.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/objdetect/objdetect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/objdetect/objdetect.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/objdetect/objdetect_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/objdetect/objdetect_c.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/opencv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/opencv.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/opencv_modules.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/opencv_modules.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/photo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/photo.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/photo/cuda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/photo/cuda.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/photo/photo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/photo/photo.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/photo/photo_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/photo/photo_c.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/shape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/shape.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/shape/emdL1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/shape/emdL1.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/shape/hist_cost.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/shape/hist_cost.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/shape/shape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/shape/shape.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/shape/shape_distance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/shape/shape_distance.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/shape/shape_transformer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/shape/shape_transformer.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/stitching.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/stitching.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/stitching/detail/autocalib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/stitching/detail/autocalib.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/stitching/detail/blenders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/stitching/detail/blenders.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/stitching/detail/camera.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/stitching/detail/camera.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/stitching/detail/exposure_compensate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/stitching/detail/exposure_compensate.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/stitching/detail/matchers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/stitching/detail/matchers.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/stitching/detail/motion_estimators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/stitching/detail/motion_estimators.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/stitching/detail/seam_finders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/stitching/detail/seam_finders.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/stitching/detail/timelapsers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/stitching/detail/timelapsers.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/stitching/detail/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/stitching/detail/util.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/stitching/detail/util_inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/stitching/detail/util_inl.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/stitching/detail/warpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/stitching/detail/warpers.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/stitching/detail/warpers_inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/stitching/detail/warpers_inl.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/stitching/warpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/stitching/warpers.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/video.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/video/background_segm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/video/background_segm.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/video/tracking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/video/tracking.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/video/tracking_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/video/tracking_c.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/video/video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/video/video.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/videoio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/videoio.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/videoio/cap_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/videoio/cap_ios.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/videoio/videoio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/videoio/videoio.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/videoio/videoio_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/videoio/videoio_c.h -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/videostab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/videostab.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/videostab/deblurring.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/videostab/deblurring.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/videostab/fast_marching.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/videostab/fast_marching.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/videostab/fast_marching_inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/videostab/fast_marching_inl.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/videostab/frame_source.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/videostab/frame_source.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/videostab/global_motion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/videostab/global_motion.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/videostab/inpainting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/videostab/inpainting.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/videostab/log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/videostab/log.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/videostab/motion_core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/videostab/motion_core.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/videostab/motion_stabilizing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/videostab/motion_stabilizing.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/videostab/optical_flow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/videostab/optical_flow.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/videostab/outlier_rejection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/videostab/outlier_rejection.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/videostab/ring_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/videostab/ring_buffer.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/videostab/stabilizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/videostab/stabilizer.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/videostab/wobble_suppression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/videostab/wobble_suppression.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Headers/world.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Headers/world.hpp -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/A/opencv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/GrabCutIOS/opencv2.framework/Versions/A/opencv2 -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /GrabCutIOS/opencv2.framework/opencv2: -------------------------------------------------------------------------------- 1 | Versions/Current/opencv2 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/README.md -------------------------------------------------------------------------------- /docs/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/grabcutios/HEAD/docs/screenshot.png --------------------------------------------------------------------------------