1 | initial version |
Currently, super resolution module is disabled for iOS, because it wasn't tested on the system. You can modify CMake script of the super resolution module (opencv/modules/superres/CMakeLists.txt
) and removed the first three lines:
if(ANDROID OR IOS)
ocv_module_disable(superres)
endif()
This will allow you to build superres
module for iOS.