微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

simple-iphone-image-processing

程序名称:simple-iphone-image-processing

授权协议: BSD

操作系统: iOS

开发语言: Objective-C

simple-iphone-image-processing 介绍

这是 iPhone 上一个简单的图像处理库。支持的图像操作包括

示例代码

// convert to grey scale and shrink the image by 4 - this makes processing a
lot faster!
ImageWrapper *greyScale=Image::createImage(srcImage, srcImage.size.width/4,
srcImage.size.height/4);

// do a gaussian blur and then extract edges using the canny edge detector
// you can play around with the numbers to see how it effects the edge
extraction
// typical numbers are tlow 0.20-0.50, thigh 0.60-0.90
ImageWrapper
*edges=greyScale.image->gaussianBlur().image->cannyEdgeExtract(0.3,0.7);
// show the results
resultimage.image=edges.image->toUIImage();

simple-iphone-image-processing 官网

http://code.google.com/p/simple-iphone-image-processing/

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐