# Print output for @column tags ?>
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.
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 | |
|---|---|
public static ScriptIntrinsicConvolve3x3 create (RenderScript rs, Element e)
Supported elements types are Element#U8, Element#U8_2, Element#U8_3, Element#U8_4,
Element#F32, Element#F32_2, Element#F32_3, and Element#F32_4.
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 |
public 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. |
public 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 |
public Script.FieldID getFieldID_Input ()
Get a FieldID for the input field of this intrinsic.
| Returns | |
|---|---|
Script.FieldID |
Script.FieldID The FieldID object. |
public Script.KernelID getKernelID ()
Get a KernelID for this intrinsic kernel.
| Returns | |
|---|---|
Script.KernelID |
Script.KernelID The KernelID object. |
public 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 |
public 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. |