No.11S098-03
75
STC-GE33OX/GEC33OX
Users guide Rev. 1.03
Caution:
Width, Height and PixelFormat are effect to the image data size.
Please use GenICam command name command when change these values like below sample code.
In the case to change the Width
BOOL SetWidth( PvDevice *pDevice, PvInt64 lValue )
{
PvGenInteger* lGenInteger =
dynamic_cast
<PvGenInteger*>( pDevice->GetGenParameters()->Get(
"Width"
) );
PvResult lResult = lGenInteger->SetValue(lValue);
return
lResult.IsOK();
}