OpenCVDemo
Use OpenCV on iOS 最近在学习OpenCV的imgproc模块(图片处理)。顺便写了几个Demo。用法很简单
OpenCV的安装
Demo案例
- 均值模糊
[UIImage blurWithImage:_normalView.image]
- 高斯模糊
[UIImage GaussianBlurWithImage:_normalView.image]
- 双边平滑(美颜效果)
[UIImage bilateralFilterWithImage:_normalView.image]
- 实现自己的线性滤波
[UIImage filterWithImgae:_normalView.image]
- Sobel 导数
[UIImage sobelWithImage:_normalView.image]
- Laplacian算子
[UIImage laplacianWithImage:_normalView.image]
- Remapping重映射
[UIImage remappingWithImage:_normalView.image]
- 卡通
[UIImage cartoonWithImage:_normalView.image]