ARC42VideoOffsetCC( useGUI );
boolean useGUI |
True to launch the ARC-42 video offset controller
configuration parameter window; false to run without using a windowed
interface. |
owl.CCParams.CCScriptFrame (useGUI=true) or
ARC42VideoOffsetCC Object (useGUI=false)
METHOD |
DESCRIPTION |
void setBoardId( int id ) |
Sets the board number. Range 0 to 15. |
void setOffsets( int aOffset, int bOffset ) |
Sets the video board offsets. These values can increase or
decrease the ADU values of the image. Range 0 to 4095. |
void run() |
Starts sending the command to the controller. For use with
[useGUI = false] only. |
void show() |
Call to show the graphical user interface. For use with
[useGUI = true ] only. |
void destroy() |
Closes and disposes of the graphical user interface. Call
to exit. For use with [useGUI = true] only. |
Allows ARC-42 video offset parameters to be set on the controller.
Can be run with or without a graphical user interface. The
controller must support ARC-42 video offsets for this class to
function.
To run with a graphical user interface:
ARC42VideoOffsetCC( true ).show();
or
s = ARC42VideoOffsetCC( true );
s.show();
To run without a user interface:
s = ARC42VideoOffsetCC( false );
s.setBoardId( 0 );
s.setOffsets( 200, 309 );
s.run();