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/

相关编程语言

Acapela TTS 是一个为 iPhone 和 iPad 开发的 TTS 引...
二维码(QR Code)扫描静态库,扫描效率较高。
RegexKitLite 是一个轻量级的 Objective-C 的正则表...
一款基于ASIHttpReques开源的仿迅雷多线程断点续传功...
实现动态检测网络(wifi)状况,不需要用户手动刷新...
使用iphoneSDK官方NSXMLParserDelegate做的简单xml解...