Question
How do I access and control camera I/O parameters during program execution in Ether Inspect?
Answer
You can access the FIFO in the PreAcq and PostAcq scripts as Camera.Fifo
Ex: ICogGigEAccess gige = Camera.Fifo.FrameGrabber.OwnedGigEAccess;
Note: The helper functions for getting/setting features are not included in the PostAcq. The Camera reference is type ICameraConfig and the property only exists on the real object.
Therefore, you must cast it to CameraConfig first. For example: ((CameraConfig)Camera).Fifo