ScriptIntrinsicConvolve5x5
classScriptIntrinsicConvolve5x5: ScriptIntrinsic
kotlin.Any | ||||
↳ | android.renderscript.BaseObj | |||
↳ | android.renderscript.Script | |||
↳ | android.renderscript.ScriptIntrinsic | |||
↳ | android.renderscript.ScriptIntrinsicConvolve5x5 |
Intrinsic for applying a 5x5 convolve to an allocation.
Summary
Public methods | |
---|---|
static ScriptIntrinsicConvolve5x5! |
create(rs: RenderScript!, e: Element!) Supported elements types are |
Unit |
forEach(aout: Allocation!) Apply the filter to the input and save to the specified allocation. |
Unit |
forEach(aout: Allocation!, opt: Script.LaunchOptions!) Apply the filter to the input and save to the specified allocation. |
Script.FieldID! |
Get a FieldID for the input field of this intrinsic. |
Script.KernelID! |
Get a KernelID for this intrinsic kernel. |
Unit |
Set the coefficients for the convolve. |
Unit |
setInput(ain: Allocation!) Set the input of the 5x5 convolve. |
Public methods
create
static funcreate(
rs: RenderScript!,
e: Element!
): ScriptIntrinsicConvolve5x5!
Deprecated: Deprecated in Java.
Supported elements types are Element#U8
, android.renderscript.Element#U8_2
, Element#U8_3
, Element#U8_4
, Element#F32
, Element#F32_2
, android.renderscript.Element#F32_3
, and Element#F32_4
.
The default coefficients are:
[ 0, 0, 0, 0, 0 ]
[ 0, 0, 0, 0, 0 ]
[ 0, 0, 1, 0, 0 ]
[ 0, 0, 0, 0, 0 ]
[ 0, 0, 0, 0, 0 ]
Parameters | |
---|---|
rs |
RenderScript!: The RenderScript context |
e |
Element!: Element type for intputs and outputs |
Return | |
---|---|
ScriptIntrinsicConvolve5x5! |
ScriptIntrinsicConvolve5x5 |
forEach
funforEach(aout: Allocation!): Unit
Deprecated: Deprecated in Java.
Apply the filter to the input and save to the specified allocation.
Parameters | |
---|---|
aout |
Allocation!: Output allocation. Must match creation element type. |
forEach
funforEach(
aout: Allocation!,
opt: Script.LaunchOptions!
): Unit
Deprecated: Deprecated in Java.
Apply the filter to the input and save to the specified allocation.
Parameters | |
---|---|
aout |
Allocation!: Output allocation. Must match creation element type. |
opt |
Script.LaunchOptions!: LaunchOptions for clipping |
getFieldID_Input
fungetFieldID_Input(): Script.FieldID!
Deprecated: Deprecated in Java.
Get a FieldID for the input field of this intrinsic.
Return | |
---|---|
Script.FieldID! |
Script.FieldID The FieldID object. |
getKernelID
fungetKernelID(): Script.KernelID!
Deprecated: Deprecated in Java.
Get a KernelID for this intrinsic kernel.
Return | |
---|---|
Script.KernelID! |
Script.KernelID The KernelID object. |
setCoefficients
funsetCoefficients(v: FloatArray!): Unit
Deprecated: Deprecated in Java.
Set the coefficients for the convolve.
The convolve layout is:
[ 0, 1, 2, 3, 4 ]
[ 5, 6, 7, 8, 9 ]
[ 10, 11, 12, 13, 14 ]
[ 15, 16, 17, 18, 19 ]
[ 20, 21, 22, 23, 24 ]
Parameters | |
---|---|
v |
FloatArray!: The array of coefficients to set |
setInput
funsetInput(ain: Allocation!): Unit
Deprecated: Deprecated in Java.
Set the input of the 5x5 convolve. Must match the element type supplied during create.
Parameters | |
---|---|
ain |
Allocation!: The input allocation. |