Opencv Custom Compile
ios, opencv
Solution
Just delete modules from modules folder and remove include lines from headers file.And compile. Before doing that read CMakeLists.txt for dependencies.
For example, for highgui module;
ocv_define_module(imgproc opencv_core)
Problem
I'm trying to reduce opencv2.framework size for ios. My project using only core,imgproc and highgui modules. How can I compile with only those modules? or is there an alternative for reducing size? Thanks.