About Core Image

Core Image is an image processing and analysis technology designed to provide near real-time processing for
still and video images. It operates on image data types from the Core Graphics, Core Video, and Image I/O
frameworks, using either a GPU or CPU rendering path. Core Image hides the details of low-level graphics
processing by providing an easy-to-use application programming interface (API). You don’t need to know the
details of OpenGL or OpenGL ES to leverage the power of the GPU, nor do you need to know anything about
Grand Central Dispatch (GCD) to get the benefit of multicore processing. Core Image handles the details for
you.

Core Image 是一种处理图片的技术,可用来实时处理视频流图片。它处理的 image data 可以来自于 Core Graphics,Core

Video 以及 Image I/O 框架,使用GPU或者CPU来渲染。Core Image 隐藏了低级别API,给你提供易于使用的API。你不需要

知道OpenGL或者OpenGL ES的知识就可以驾驭GPU,甚至你都可以不知道任何的GCD的知识但却可以获取到多处理器处理图

片的便利。你只需要用就行了:)。

Core Image in relation to the operating system

Core Image 与操作系统之间的关系:

At a Glance
The Core Image framework provides:
● Access to built-in image processing filters
● Feature detection capability
● Support for automatic image enhancement
● The ability to chain multiple filters together to create custom effects

概要:

Core Image framework提供了:

* 可以使用内置的处理图片的滤镜

* 特征检测的能力(比如面部识别什么的)

* 图片效果自动增强

* 将多个滤镜合并成滤镜链组合形成新的滤镜效果

Core Image is Efficient and Easy to Use for Processing and Analyzing Images

使用Core Image来处理、分析图片是很简单的。

Core Image provides more than 90 built-in filters on iOS and over 120 on OS X. You set up filters by supplying
key-value pairs for a filter’s input parameters. The output of one filter can be the input of another, making it
possible to chain numerous filters together to create amazing effects. If you create a compound effect that
you want to use again, you can subclass CIFilter to capture the effect “recipe.”

在iOS中,Core Image 提供了超过90个的内建滤镜,OS X中有120个。你只需给滤镜提供键值对就能设置滤镜。一个滤镜的输

出可以作为另外一个滤镜的输入,因为具备这样子的特性,所以你可以将几种滤镜组合在一起使用,可以用来创造出难以置信的

效果,你可以通过继承关系将几种滤镜合并在一起:)。

There are more than a dozen categories of filters. Some are designed to achieve artistic results, such as the
stylize and halftone filter categories. Others are optimal for fixing image problems, such as color adjustment
and sharpen filters.

滤镜的种类分为很多很多种。有些是用来实现艺术效果,比如styleze以及halftone滤镜集。有些是用来优化处理图片效果的,

比如颜色调节以及锐度调节滤镜。

Core Image can analyze the quality of an image and provide a set of filters with optimal settings for adjusting
such things as hue, contrast, and tone color, and for correcting for flash artifacts such as red eye. It does all
this with one method call on your part.

Core Image 可以分析图片并提供一系列的滤镜来设置图片的锐度值、对比度值或者颜色等等。为了消除照片的红眼,你只需要

使用一个方法就可以解决这个问题。

Core Image can detect human face features in still images and track them over time in video images. Knowing
where faces are can help you determine where to place a vignette or apply other special filters.

Core Image 可以识别人脸的特性,在存在的照片中或者是视频流中都可以使用。

Core Image Can Achieve Real-Time Video Performance

Core Image 能够处理实时录像。

If your app needs to process video in real-time, there are several things you can do to optimize performance.

如果你的app需要处理实时录像,你可以用好几种方式来实现这种效果。

[翻译] About Core Image的更多相关文章

  1. [翻译] .NET Core 2.1 Preview 1 发布

    [翻译] .NET Core 2.1 Preview 1 发布 原文: Announcing .NET Core 2.1 Preview 1 今天,我们宣布发布 .NET Core 2.1 Previ ...

  2. [翻译 EF Core in Action 2.3] 理解EF Core数据库查询

    Entity Framework Core in Action Entityframework Core in action是 Jon P smith 所著的关于Entityframework Cor ...

  3. [翻译 EF Core in Action 2.2] 创建应用程序的数据库上下文

    Entity Framework Core in Action Entityframework Core in action是 Jon P smith 所著的关于Entityframework Cor ...

  4. [翻译 EF Core in Action 2.1] 设置一个图书销售网站的场景

    Entity Framework Core in Action Entityframework Core in action是 Jon P smith 所著的关于Entityframework Cor ...

  5. [翻译 EF Core in Action 2.0] 查询数据库

    Entity Framework Core in Action Entityframework Core in action是 Jon P smith 所著的关于Entityframework Cor ...

  6. [翻译 EF Core in Action 1.10] 应该在项目中使用EF Core吗?

    Entity Framework Core in Action Entityframework Core in action是 Jon P smith 所著的关于Entityframework Cor ...

  7. [翻译 EF Core in Action 1.11] 何时不应该使用EF Core

    Entity Framework Core in Action Entityframework Core in action是 Jon P smith 所著的关于Entityframework Cor ...

  8. [翻译 EF Core in Action 1.9] 掀开EF Core的引擎盖看看EF Core内部是如何工作的

    Entity Framework Core in Action Entityframework Core in action是 Jon P smith 所著的关于Entityframework Cor ...

  9. [翻译 EF Core in Action 1.8] MyFirstEfCoreApp应用程序设置

    Entity Framework Core in Action Entityframework Core in action是 Jon P smith 所著的关于Entityframework Cor ...

  10. [翻译 EF Core in Action 1.7] MyFirstEfCoreApp访问的数据库

    Entity Framework Core in Action Entityframework Core in action是 Jon P smith 所著的关于Entityframework Cor ...

随机推荐

  1. springboot-17-springboot的文件上传和下载

    单文件上传 1, 需要使用thymeleaf模板:  http://www.cnblogs.com/wenbronk/p/6565834.html src/main/resource/template ...

  2. 剑指offer65:矩阵中的路径

    题目描述: 请设计一个函数,用来判断在一个矩阵中是否存在一条包含某字符串所有字符的路径.路径可以从矩阵中的任意一个格子开始,每一步可以在矩阵中向左,向右,向上,向下移动一个格子.如果一条路径经过了矩阵 ...

  3. sublime text 2+sublimeClang

    sublimeClang 是github上面的开源项目,可用于C/C++的自动补全 github:https://github.com/quarnster/SublimeClang 配置sublime ...

  4. 页面常见布局以及实现方法--flex

    页面布局是前端工程师的基本功之一,总结分析各种布局实现方法,可以让自己快速定位哪种方法实现功能,同时可以做到现最大程度的兼容. 一.水平居中 假设:最基本机构 .parent>.child 1. ...

  5. JavaScript文档对象模型

    文档对象模型(Document Object Model, DOM)是W3C提出的用于访问和修改文档的接口. JavaScript设计的初衷是为Web提供交互功能,它通过DOM接口来访问和修改文档. ...

  6. 4.3 数据操纵语言(DML)

    本章介绍DML的基本语句. 对数据只能执行以下四种操作:创建(Create)记录.读取(Read)记录.更新(Update)记录值和删除(Delete)记录.这几个词拼写为CRUD——即可对数据执行C ...

  7. Wirshark 显示过滤器

    二层显示过滤: eth.addr==<MAC Address>:只显示具有指定mac地址 eth.src==<MAC Address>:只显示具有指定源MAC地址的数据帧 et ...

  8. git 查看暂存区

    一.简介 git ls-files 命令是用来查看暂存区中文件信息 二.常用参数 参数说明(括号里是简写) --cached(-c)显示暂存区中的文件,git ls-files命令默认的参数 --de ...

  9. Sql Server 中使用日期遍历

    一个存储过程小案例,内容如下: declare @dt datetime set @dt='2016-01-01' while (@dt<='2016-12-31') begin -- 转换字符 ...

  10. js遇到的问题

    一些开发前台时遇到的小问题: ----------------------------------------- 一眼看出页面使用html还是html5: html有三种声明方式:<!DOCTY ...