ScriptIntrinsicConvolve3x3
public
final
class
ScriptIntrinsicConvolve3x3
extends ScriptIntrinsic
| java.lang.Object | ||||
| ↳ | android.renderscript.BaseObj | |||
| ↳ | android.renderscript.Script | |||
| ↳ | android.renderscript.ScriptIntrinsic | |||
| ↳ | android.renderscript.ScriptIntrinsicConvolve3x3 | |||
Intrinsic for applying a 3x3 convolve to an allocation.
Summary
Public methods | |
|---|---|
static
ScriptIntrinsicConvolve3x3
|
create(RenderScript rs, Element e)
Supported elements types are |
void
|
forEach(Allocation aout)
Apply the filter to the input and save to the specified allocation. |
void
|
forEach(Allocation aout, Script.LaunchOptions opt)
Apply the filter to the input and save to the specified allocation. |
Script.FieldID
|
getFieldID_Input()
Get a FieldID for the input field of this intrinsic. |
Script.KernelID
|
getKernelID()
Get a KernelID for this intrinsic kernel. |
void
|
setCoefficients(float[] v)
Set the coefficients for the convolve. |
void
|
setInput(Allocation ain)
Set the input of the 3x3 convolve. |
Inherited methods | |
|---|---|
android.renderscript.Script
| |
android.renderscript.BaseObj
| |
java.lang.Object
| |
Public methods
create
ScriptIntrinsicConvolve3x3 create (RenderScript rs, Element e)
Supported elements types are U8(RenderScript), U8_2(RenderScript), U8_3(RenderScript), U8_4(RenderScript),
F32(RenderScript), F32_2(RenderScript), F32_3(RenderScript), and F32_4(RenderScript).
The default coefficients are:
[ 0, 0, 0 ]
[ 0, 1, 0 ]
[ 0, 0, 0 ]
| Parameters | |
|---|---|
rs |
RenderScript:
The RenderScript context |
e |
Element:
Element type for intputs and outputs |
| Returns | |
|---|---|
ScriptIntrinsicConvolve3x3 |
ScriptIntrinsicConvolve3x3 |
forEach
void forEach (Allocation aout)
Apply the filter to the input and save to the specified allocation.
| Parameters | |
|---|---|
aout |
Allocation:
Output allocation. Must match creation element
type.
|
forEach
void forEach (Allocation aout, Script.LaunchOptions opt)
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
Script.FieldID getFieldID_Input ()
Get a FieldID for the input field of this intrinsic.
| Returns | |
|---|---|
Script.FieldID |
Script.FieldID The FieldID object. |
getKernelID
Script.KernelID getKernelID ()
Get a KernelID for this intrinsic kernel.
| Returns | |
|---|---|
Script.KernelID |
Script.KernelID The KernelID object. |
setCoefficients
void setCoefficients (float[] v)
Set the coefficients for the convolve.
The convolve layout is:
[ 0, 1, 2 ]
[ 3, 4, 5 ]
[ 6, 7, 8 ]
| Parameters | |
|---|---|
v |
float:
The array of coefficients to set
|
setInput
void setInput (Allocation ain)
Set the input of the 3x3 convolve. Must match the element type supplied during create.
| Parameters | |
|---|---|
ain |
Allocation:
The input allocation.
|
Interfaces
Classes
- Allocation
- AllocationAdapter
- BaseObj
- Byte2
- Byte3
- Byte4
- Double2
- Double3
- Double4
- Element
- Element.Builder
- FieldPacker
- Float2
- Float3
- Float4
- Int2
- Int3
- Int4
- Long2
- Long3
- Long4
- Matrix2f
- Matrix3f
- Matrix4f
- RenderScript
- RenderScript.RSErrorHandler
- RenderScript.RSMessageHandler
- Sampler
- Sampler.Builder
- Script
- Script.Builder
- Script.FieldBase
- Script.FieldID
- Script.InvokeID
- Script.KernelID
- Script.LaunchOptions
- ScriptC
- ScriptGroup
- ScriptGroup.Binding
- ScriptGroup.Builder
- ScriptGroup.Builder2
- ScriptGroup.Closure
- ScriptGroup.Future
- ScriptGroup.Input
- ScriptIntrinsic
- ScriptIntrinsic3DLUT
- ScriptIntrinsicBLAS
- ScriptIntrinsicBlend
- ScriptIntrinsicBlur
- ScriptIntrinsicColorMatrix
- ScriptIntrinsicConvolve3x3
- ScriptIntrinsicConvolve5x5
- ScriptIntrinsicHistogram
- ScriptIntrinsicLUT
- ScriptIntrinsicResize
- ScriptIntrinsicYuvToRGB
- Short2
- Short3
- Short4
- Type
- Type.Builder
Enums
Exceptions


