r3detedr
plugins/postproc/detedge/r3detedr.h
r3detedg
Edge detection rendering class.
r3Postprocessor
R3CLID_POSTPROCESSOR
r3Edgedetectionrender
R3CLID_EDGEDETECTIONRENDER - 1501
Threshold, InChannel, OutChannel, Geometric, NormalThreshold, TangentCorrection, RelativeDistance,
int R3RegisterEdgeDetectionRenderClass(R3APP *app);
Threshold
Threshold
R3EDETA_Threshold
Number
R3FLOAT
edge threshold
jsobj.SetThreshold(value);
R3FLOAT value = ...;
R3SetAttrs(r3obj, R3EDETA_Threshold, value, R3TAG_END);
InChannel
InChannel
R3EDETA_InChannel
String
char*
name of examined channel
jsobj.SetInChannel(value);
char* value = ...;
R3SetAttrs(r3obj, R3EDETA_InChannel, value, R3TAG_END);
OutChannel
OutChannel
R3EDETA_OutChannel
String
char*
name of output channel
jsobj.SetOutChannel(value);
char* value = ...;
R3SetAttrs(r3obj, R3EDETA_OutChannel, value, R3TAG_END);
Geometric
Geometric
R3EDETA_Geometric
Boolean
R3BOOL
if true geometric continuity is used instead of InChannel
jsobj.SetGeometric(value);
R3BOOL value = ...;
R3SetAttrs(r3obj, R3EDETA_Geometric, value, R3TAG_END);
NormalThreshold
NormalThreshold
R3EDETA_NormalThreshold
Number
R3FLOAT
jsobj.SetNormalThreshold(value);
R3FLOAT value = ...;
R3SetAttrs(r3obj, R3EDETA_NormalThreshold, value, R3TAG_END);
TangentCorrection
TangentCorrection
R3EDETA_TangentCorrection
Number
R3FLOAT
jsobj.SetTangentCorrection(value);
R3FLOAT value = ...;
R3SetAttrs(r3obj, R3EDETA_TangentCorrection, value, R3TAG_END);
RelativeDistance
RelativeDistance
R3EDETA_RelativeDistance
Boolean
R3BOOL
jsobj.SetRelativeDistance(value);
R3BOOL value = ...;
R3SetAttrs(r3obj, R3EDETA_RelativeDistance, value, R3TAG_END);