r3filter

r3mnfilt

r3filter

Class

real/dtype/r3filter.h

Library

r3dtype

Description:

Filter Class

See Also

oops/r3root.h

Super Class

r3Root

R3CLID_ROOT

JavaScript

r3Filter

Class Identifier

R3CLID_FILTER - 542

Methods

Attributes

Image, Width, Height, Coefficients,

Registration

int R3RegisterFilterClass(R3APP *app);

Image

Attribute

Image

Identifier

R3FILTA_Image

JavaScript type

Object

C type

R3OBJ*

Description

'R3FILTA_Image' not documented

Syntax


jsobj.SetImage(value);
value = jsobj.GetImage();


R3OBJ* value = ...;
R3SetAttrs(r3obj, R3FILTA_Image, value, R3TAG_END);
R3OBJ* value;
R3GetAttrs(r3obj, R3FILTA_Image, &value, R3TAG_END);

Width

Attribute

Width

Identifier

R3FILTA_Width

JavaScript type

Integer

C type

int

Description

'R3FILTA_Width' not documented

Syntax


jsobj.SetWidth(value);
value = jsobj.GetWidth();


int value = ...;
R3SetAttrs(r3obj, R3FILTA_Width, value, R3TAG_END);
int value;
R3GetAttrs(r3obj, R3FILTA_Width, &value, R3TAG_END);

Height

Attribute

Height

Identifier

R3FILTA_Height

JavaScript type

Integer

C type

int

Description

'R3FILTA_Height' not documented

Syntax


jsobj.SetHeight(value);
value = jsobj.GetHeight();


int value = ...;
R3SetAttrs(r3obj, R3FILTA_Height, value, R3TAG_END);
int value;
R3GetAttrs(r3obj, R3FILTA_Height, &value, R3TAG_END);

Coefficients

Attribute

Coefficients

Identifier

R3FILTA_Coefficients

JavaScript type

Number

C type

R3FLOAT*

Description

'R3FILTA_Coefficients' not documented

Syntax


jsobj.SetCoefficients(value);
value = jsobj.GetCoefficients();


R3FLOAT* value = ...;
R3SetAttrs(r3obj, R3FILTA_Coefficients, value, R3TAG_END);
R3FLOAT* value;
R3GetAttrs(r3obj, R3FILTA_Coefficients, &value, R3TAG_END);


r3appobj *