Skip to content

lyimin/OpenCVDemo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

OpenCVDemo

Use OpenCV on iOS 最近在学习OpenCV的imgproc模块(图片处理)。顺便写了几个Demo。用法很简单

OpenCV的安装

  • 使用CocoaPods的话pod 'OpenCV'就可以了
  • 到官网下载Frameworks,把frameworks直接拖到项目中就可以了

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]

About

Use OpenCV on iOS

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages