public class ScriptIntrinsicBlur
extends ScriptIntrinsic
java.lang.Object | ||||
↳ | android.support.v8.renderscript.BaseObj | |||
↳ | android.support.v8.renderscript.Script | |||
↳ | android.support.v8.renderscript.ScriptIntrinsic | |||
↳ | android.support.v8.renderscript.ScriptIntrinsicBlur |
固有的高斯模糊过滤器。 将指定半径的高斯模糊应用于分配的所有元素。
Protected constructors |
|
---|---|
ScriptIntrinsicBlur(long id, RenderScript rs) |
Public methods |
|
---|---|
static ScriptIntrinsicBlur |
create(RenderScript rs, Element e) 为分配应用模糊创建一个内在属性。 |
void |
forEach(Allocation aout) 将过滤器应用于输入并保存到指定的分配。 |
Script.FieldID |
getFieldID_Input() 获取此内在的输入字段的FieldID。 |
Script.KernelID |
getKernelID() 为此内核获取KernelID。 |
void |
setInput(Allocation ain) 设置模糊的输入。 |
void |
setRadius(float radius) 设置模糊的半径。 |
Inherited methods |
|
---|---|
From class android.support.v8.renderscript.Script
|
|
From class android.support.v8.renderscript.BaseObj
|
|
From class java.lang.Object
|
ScriptIntrinsicBlur (long id, RenderScript rs)
Parameters | |
---|---|
id |
long
|
rs |
RenderScript
|
ScriptIntrinsicBlur create (RenderScript rs, Element e)
为分配应用模糊创建一个内在属性。 默认半径是5.0。 支持的元素类型是U8(RenderScript)
, U8_4(RenderScript)
。
Parameters | |
---|---|
rs |
RenderScript : The RenderScript context |
e |
Element : Element type for inputs and outputs |
Returns | |
---|---|
ScriptIntrinsicBlur |
ScriptIntrinsicBlur |
void forEach (Allocation aout)
将过滤器应用于输入并保存到指定的分配。
Parameters | |
---|---|
aout |
Allocation : Output allocation. Must match creation element type. |
Script.FieldID getFieldID_Input ()
获取此内在的输入字段的FieldID。
Returns | |
---|---|
Script.FieldID |
Script.FieldID The FieldID object. |
Script.KernelID getKernelID ()
为此内核获取KernelID。
Returns | |
---|---|
Script.KernelID |
Script.KernelID The KernelID object. |
void setInput (Allocation ain)
设置模糊的输入。 必须与创建期间提供的元素类型相匹配。
Parameters | |
---|---|
ain |
Allocation : The input allocation |
void setRadius (float radius)
设置模糊的半径。 支持的范围0 <半径<= 25
Parameters | |
---|---|
radius |
float : The radius of the blur |