alliedvision / VimbaPython

Old Allied Vision Vimba Python API. The successor to this API is VmbPy
BSD 2-Clause "Simplified" License
93 stars 40 forks source link

[QUESTION] How do I change the framerate of my camera? #150

Open franferraz98 opened 1 year ago

franferraz98 commented 1 year ago

Hi!

I've been working for a while with an Alvium 1800 U-319c, and it's technical documentation says it performs at 54 fps at maximum resolution.

When using VimbaPython, I'm currently getting 2.28 fps when I do:

self.camera.get_feature_by_name("AcquisitionFrameRate").get()

I've tried to set it to a higher frame rate but I'm getting:

self.camera.AcquisitionFrameRate.set('54')
vimba.error.VimbaFeatureError: Invalid access while calling 'set()' of Feature 'AcquisitionFrameRate'. Read access: allowed. Write access: not allowed. 

I tried to change the config.xml to allow write access like this:

<?xml version="1.0" ?>
<SettingsStruct>
    <PersistType Value="2" Description="Persist all features except LUTs" />
    <MaxIterations Value="5" Description="How often implementation shall try to write values to specific feature (due to complex feature dependencies, multiple write operations are sometimes necessary)" />
    <Logging Status="On">
        <LoggingFile Value="-" Description="Name and/or path for logging file" />
        <LoggingLevel Value="4" Description="All messages will be logged (Info, Error, Warning, Debug, Trace)" />
    </Logging>
</SettingsStruct>
<CameraSettings CameraID="DEV_1AB22C00CCC3" CameraModel="1800 U-500m" FeatureCount="138">
    <FeatureGroup Count="26">
        <Feature Name="AcquisitionFrameRate" Type="Float" Access="R/W">54</Feature>
        <Feature Name="BlackLevel" Type="Float" Access="R/W">0,000000</Feature>
        <Feature Name="ContrastBrightLimit" Type="Integer" Access="R/W">4095</Feature>
        <Feature Name="ContrastDarkLimit" Type="Integer" Access="R/W">0</Feature>
        <Feature Name="ContrastEnable" Type="Boolean" Access="R/W">False</Feature>
        <Feature Name="ContrastShape" Type="Integer" Access="R/W">4</Feature>
        <Feature Name="DeviceIndicatorLuminance" Type="Integer" Access="R/W">10</Feature>
        <Feature Name="DeviceIndicatorMode" Type="Enumeration" Access="R/W">Active</Feature>
        <Feature Name="DevicePowerSavingMode" Type="Enumeration" Access="R/W">Disabled</Feature>
        <Feature Name="DeviceUserID" Type="String" Access="R/W"></Feature>
        <Feature Name="ExposureAuto" Type="Enumeration" Access="R/W">Off</Feature>
        <Feature Name="ExposureAutoMax" Type="Float" Access="R/W">764148,437500</Feature>
        <Feature Name="ExposureAutoMin" Type="Float" Access="R/W">12,957000</Feature>
        <Feature Name="ExposureTime" Type="Float" Access="R/W">436453,406250</Feature>
        <Feature Name="Gain" Type="Float" Access="R/W">7,200000</Feature>
        <Feature Name="GainAuto" Type="Enumeration" Access="R/W">Off</Feature>
        <Feature Name="GainAutoMax" Type="Float" Access="R/W">24,184702</Feature>
        <Feature Name="GainAutoMin" Type="Float" Access="R/W">0,000000</Feature>
        <Feature Name="Gamma" Type="Float" Access="R/W">1,000000</Feature>
        <Feature Name="IntensityAutoPrecedence" Type="Enumeration" Access="R/W">Minimizenoise</Feature>
        <Feature Name="IntensityControllerAlgorithm" Type="Enumeration" Access="R/W">Mean</Feature>
        <Feature Name="IntensityControllerRate" Type="Integer" Access="R/W">100</Feature>
        <Feature Name="IntensityControllerRegion" Type="Enumeration" Access="R/W">FullImage</Feature>
        <Feature Name="IntensityControllerTarget" Type="Float" Access="R/W">49,900002</Feature>
        <Feature Name="IntensityControllerTolerance" Type="Integer" Access="R/W">5</Feature>
        <Feature Name="TestPendingAck" Type="Integer" Access="R/W">0</Feature>
        <Feature Name="UserSetDefault" Type="Enumeration" Access="R/W">Default</Feature>
    </FeatureGroup>
    <SelectorGroup Count="3" SelectedFeatures="18">
        <Selector Name="CorrectionSelector" Type="Enumeration" SelectedFeatures="5">
            <SelectorCombination Entry="DefectPixelCorrection" Feature="CorrectionSetDefault" Type="Enumeration">Preset</SelectorCombination>
            <SelectorCombination Entry="FixedPatternNoiseCorrection" Feature="CorrectionSetDefault" Type="Enumeration">Preset</SelectorCombination>
        </Selector>
        <Selector Name="LineSelector" Type="Enumeration" SelectedFeatures="5">
            <SelectorCombination Entry="Line0" Feature="LineMode" Type="Enumeration">Input</SelectorCombination>
            <SelectorCombination Entry="Line1" Feature="LineMode" Type="Enumeration">Input</SelectorCombination>
            <SelectorCombination Entry="Line2" Feature="LineMode" Type="Enumeration">Input</SelectorCombination>
            <SelectorCombination Entry="Line3" Feature="LineMode" Type="Enumeration">Input</SelectorCombination>
        </Selector>
        <Selector Name="TriggerSelector" Type="Enumeration" SelectedFeatures="8">
            <SelectorCombination Entry="AcquisitionStart" Feature="LineMode" Type="Enumeration">Input</SelectorCombination>
            <SelectorCombination Entry="AcquisitionStart" Feature="TriggerSource" Type="Enumeration">Software</SelectorCombination>
            <SelectorCombination Entry="AcquisitionStart" Feature="TriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="AcquisitionEnd" Feature="LineMode" Type="Enumeration">Input</SelectorCombination>
            <SelectorCombination Entry="AcquisitionEnd" Feature="TriggerSource" Type="Enumeration">Software</SelectorCombination>
            <SelectorCombination Entry="AcquisitionEnd" Feature="TriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="AcquisitionActive" Feature="LineMode" Type="Enumeration">Input</SelectorCombination>
            <SelectorCombination Entry="AcquisitionActive" Feature="TriggerSource" Type="Enumeration">Software</SelectorCombination>
            <SelectorCombination Entry="AcquisitionActive" Feature="TriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="AcquisitionActive" Feature="TriggerDelay" Type="Float">0,000000</SelectorCombination>
            <SelectorCombination Entry="FrameStart" Feature="LineMode" Type="Enumeration">Input</SelectorCombination>
            <SelectorCombination Entry="FrameStart" Feature="TriggerSource" Type="Enumeration">Software</SelectorCombination>
            <SelectorCombination Entry="FrameStart" Feature="TriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="FrameStart" Feature="TriggerDelay" Type="Float">0,000000</SelectorCombination>
        </Selector>
    </SelectorGroup>
    <IgnoredFeatures Count="104">
        <Feature Name="AcquisitionFrameCount" Type="Integer" Access="None"></Feature>
        <Feature Name="AcquisitionFrameRate" Type="Float" Access="R/W"></Feature>
        <Feature Name="AcquisitionFrameRateEnable" Type="Boolean" Access="R/W"></Feature>
        <Feature Name="AcquisitionFrameRateMode" Type="Enumeration" Access="R/W"></Feature>
        <Feature Name="AcquisitionMode" Type="Enumeration" Access="R"></Feature>
        <Feature Name="AcquisitionStart" Type="Command" Access="W"></Feature>
        <Feature Name="AcquisitionStatus" Type="Boolean" Access="R"></Feature>
        <Selector Name="AcquisitionStatusSelector" Type="Enumeration" SelectedFeatures="1"></Selector>
        <Feature Name="AcquisitionStop" Type="Command" Access="W"></Feature>
        <Feature Name="AutoModeRegionHeight" Type="Integer" Access="R"></Feature>
        <Feature Name="AutoModeRegionOffsetX" Type="Integer" Access="R"></Feature>
        <Feature Name="AutoModeRegionOffsetY" Type="Integer" Access="R"></Feature>
        <Selector Name="AutoModeRegionSelector" Type="Enumeration" SelectedFeatures="4"></Selector>
        <Feature Name="AutoModeRegionWidth" Type="Integer" Access="R"></Feature>
        <Feature Name="BinningHorizontal" Type="Integer" Access="R"></Feature>
        <Feature Name="BinningHorizontalMode" Type="Enumeration" Access="R"></Feature>
        <Selector Name="BinningSelector" Type="Enumeration" SelectedFeatures="20"></Selector>
        <Feature Name="BinningVertical" Type="Integer" Access="R"></Feature>
        <Feature Name="BinningVerticalMode" Type="Enumeration" Access="R"></Feature>
        <Selector Name="BlackLevelSelector" Type="Enumeration" SelectedFeatures="1"></Selector>
        <Feature Name="CorrectionDataSize" Type="Integer" Access="R"></Feature>
        <Feature Name="CorrectionEntryType" Type="Integer" Access="R"></Feature>
        <Feature Name="CorrectionMode" Type="Enumeration" Access="R"></Feature>
        <Feature Name="CorrectionSet" Type="Enumeration" Access="R"></Feature>
        <Feature Name="DeviceFamilyName" Type="String" Access="R"></Feature>
        <Feature Name="DeviceFirmwareID" Type="String" Access="R"></Feature>
        <Selector Name="DeviceFirmwareIDSelector" Type="Enumeration" SelectedFeatures="1"></Selector>
        <Feature Name="DeviceFirmwareVersion" Type="String" Access="R"></Feature>
        <Selector Name="DeviceFirmwareVersionSelector" Type="Enumeration" SelectedFeatures="1"></Selector>
        <Feature Name="DeviceGenCPVersionMajor" Type="Integer" Access="R"></Feature>
        <Feature Name="DeviceGenCPVersionMinor" Type="Integer" Access="R"></Feature>
        <Feature Name="DeviceLinkCommandTimeout" Type="Float" Access="R"></Feature>
        <Feature Name="DeviceLinkSpeed" Type="Integer" Access="R"></Feature>
        <Feature Name="DeviceLinkThroughputLimit" Type="Integer" Access="R"></Feature>
        <Feature Name="DeviceLinkThroughputLimitMode" Type="Enumeration" Access="R"></Feature>
        <Feature Name="DeviceManufacturerInfo" Type="String" Access="R"></Feature>
        <Feature Name="DeviceModelName" Type="String" Access="R"></Feature>
        <Feature Name="DeviceReset" Type="Command" Access="W"></Feature>
        <Feature Name="DeviceSFNCVersionMajor" Type="Integer" Access="R"></Feature>
        <Feature Name="DeviceSFNCVersionMinor" Type="Integer" Access="R"></Feature>
        <Feature Name="DeviceSFNCVersionSubMinor" Type="Integer" Access="R"></Feature>
        <Feature Name="DeviceScanType" Type="Enumeration" Access="R"></Feature>
        <Feature Name="DeviceSerialNumber" Type="String" Access="R"></Feature>
        <Feature Name="DeviceTLVersionMajor" Type="Integer" Access="R"></Feature>
        <Feature Name="DeviceTLVersionMinor" Type="Integer" Access="R"></Feature>
        <Feature Name="DeviceTemperature" Type="Float" Access="R"></Feature>
        <Selector Name="DeviceTemperatureSelector" Type="Enumeration" SelectedFeatures="1"></Selector>
        <Feature Name="DeviceVendorName" Type="String" Access="R"></Feature>
        <Feature Name="DeviceVersion" Type="String" Access="R"></Feature>
        <Feature Name="ExposureMode" Type="Enumeration" Access="R"></Feature>
        <Feature Name="FileAccessBuffer" Type="Raw" Access="None"></Feature>
        <Feature Name="FileAccessLength" Type="Integer" Access="None"></Feature>
        <Feature Name="FileAccessOffset" Type="Integer" Access="None"></Feature>
        <Feature Name="FileOpenMode" Type="Enumeration" Access="R/W"></Feature>
        <Feature Name="FileOperationExecute" Type="Command" Access="W"></Feature>
        <Feature Name="FileOperationResult" Type="Integer" Access="R"></Feature>
        <Feature Name="FileOperationSelector" Type="Enumeration" Access="R/W"></Feature>
        <Feature Name="FileOperationStatus" Type="Enumeration" Access="R"></Feature>
        <Feature Name="FileProcessStatus" Type="Enumeration" Access="R"></Feature>
        <Feature Name="FileSelector" Type="Enumeration" Access="R/W"></Feature>
        <Feature Name="FileSize" Type="Integer" Access="R"></Feature>
        <Feature Name="FileStatus" Type="Enumeration" Access="R"></Feature>
        <Selector Name="GainSelector" Type="Enumeration" SelectedFeatures="3"></Selector>
        <Feature Name="Height" Type="Integer" Access="R"></Feature>
        <Feature Name="HeightMax" Type="Integer" Access="R"></Feature>
        <Feature Name="IntensityControllerOutliersBright" Type="Float" Access="R"></Feature>
        <Feature Name="IntensityControllerOutliersDark" Type="Float" Access="R"></Feature>
        <Selector Name="IntensityControllerSelector" Type="Enumeration" SelectedFeatures="4"></Selector>
        <Feature Name="LUTEnable" Type="Boolean" Access="R/W"></Feature>
        <Feature Name="LUTIndex" Type="Integer" Access="R/W"></Feature>
        <Feature Name="LUTSelector" Type="Enumeration" Access="R/W"></Feature>
        <Feature Name="LUTValue" Type="Integer" Access="R/W"></Feature>
        <Feature Name="LineInverter" Type="Boolean" Access="None"></Feature>
        <Feature Name="LineSource" Type="Enumeration" Access="None"></Feature>
        <Feature Name="LineStatus" Type="Boolean" Access="R"></Feature>
        <Feature Name="LineStatusAll" Type="Integer" Access="R"></Feature>
        <Feature Name="MaxDriverBuffersCount" Type="Integer" Access="R"></Feature>
        <Feature Name="OffsetX" Type="Integer" Access="R"></Feature>
        <Feature Name="OffsetY" Type="Integer" Access="R"></Feature>
        <Feature Name="PayloadSize" Type="Integer" Access="R"></Feature>
        <Feature Name="PixelFormat" Type="Enumeration" Access="R"></Feature>
        <Feature Name="PixelSize" Type="Enumeration" Access="R"></Feature>
        <Feature Name="ReverseX" Type="Boolean" Access="R"></Feature>
        <Feature Name="ReverseY" Type="Boolean" Access="R"></Feature>
        <Feature Name="SensorHeight" Type="Integer" Access="R"></Feature>
        <Feature Name="SensorShutterMode" Type="Enumeration" Access="R"></Feature>
        <Feature Name="SensorWidth" Type="Integer" Access="R"></Feature>
        <Feature Name="Sharpness" Type="Integer" Access="R"></Feature>
        <Feature Name="StreamAnnounceBufferMinimum" Type="Integer" Access="R"></Feature>
        <Feature Name="StreamAnnouncedBufferCount" Type="Integer" Access="R"></Feature>
        <Feature Name="StreamBufferHandlingMode" Type="Enumeration" Access="R"></Feature>
        <Feature Name="StreamID" Type="String" Access="R"></Feature>
        <Feature Name="StreamIsGrabbing" Type="Boolean" Access="R"></Feature>
        <Feature Name="StreamType" Type="Enumeration" Access="R"></Feature>
        <Feature Name="TimestampLatch" Type="Command" Access="W"></Feature>
        <Feature Name="TimestampLatchValue" Type="Integer" Access="R"></Feature>
        <Feature Name="TimestampReset" Type="Command" Access="W"></Feature>
        <Feature Name="TriggerMode" Type="Enumeration" Access="R"></Feature>
        <Feature Name="TriggerSoftware" Type="Command" Access="W"></Feature>
        <Feature Name="UserSetLoad" Type="Command" Access="None"></Feature>
        <Feature Name="UserSetSave" Type="Command" Access="None"></Feature>
        <Feature Name="UserSetSelector" Type="Enumeration" Access="R/W"></Feature>
        <Feature Name="Width" Type="Integer" Access="R"></Feature>
        <Feature Name="WidthMax" Type="Integer" Access="R"></Feature>
    </IgnoredFeatures>
</CameraSettings>

But it's doing nothing. Can you please tell me what to do? Thanks!

BernardoLuck commented 1 year ago

Hello,

the exposure time is set to 436453,406250us, this means that the maximum possible framerate is ~1/436453 = 2.29Frames per second. If the camera should achieve 15F0PS then the maximum exposure time needs to be 1/150 = 6666us Furthermore, increase the DeviceLinkThroughPutLimit

franferraz98 commented 1 year ago

I've been playing with the configuration and it looks like performance in general is very sensitive to how you use the lens attached to the camera. In my case, with this config file and setting the exposure, gain and white balance to auto I'm able to get around 20fps when the lens is properly set according to the light in the room, but it gets to 1fps or lower if it's too open/closed:

<?xml version="1.0" ?>
<SettingsStruct>
    <PersistType Value="2" Description="Persist all features except LUTs" />
    <MaxIterations Value="5" Description="How often implementation shall try to write values to specific feature (due to complex feature dependencies, multiple write operations are sometimes necessary)" />
    <Logging Status="On">
        <LoggingFile Value="-" Description="Name and/or path for logging file" />
        <LoggingLevel Value="4" Description="All messages will be logged (Info, Error, Warning, Debug, Trace)" />
    </Logging>
</SettingsStruct>
<CameraSettings CameraID="DEV_1AB22C023E5F" CameraModel="1800 U-319c" FeatureCount="203">
    <FeatureGroup Count="11">
        <Feature Name="DeviceIndicatorLuminance" Type="Integer" Access="R/W">10</Feature>
        <Feature Name="DeviceIndicatorMode" Type="Enumeration" Access="R/W">Active</Feature>
        <Feature Name="DeviceUserID" Type="String" Access="R/W"></Feature>
        <Feature Name="MaxDriverBuffersCount" Type="Integer" Access="R/W">64</Feature>
        <Feature Name="SensorBitDepth" Type="Enumeration" Access="R/W">Bpp12</Feature>
        <Feature Name="SequencerConfigurationMode" Type="Enumeration" Access="R/W">Off</Feature>
        <Feature Name="SequencerMode" Type="Enumeration" Access="R/W">Off</Feature>
        <Feature Name="SequencerSetStart" Type="Integer" Access="R/W">0</Feature>
        <Feature Name="SerialHubEnable" Type="Boolean" Access="R/W">False</Feature>
        <Feature Name="TestPendingAck" Type="Integer" Access="R/W">0</Feature>
        <Feature Name="UserSetDefault" Type="Enumeration" Access="R/W">Default</Feature>
    </FeatureGroup>
    <SelectorGroup Count="10" SelectedFeatures="124">
        <Selector Name="BalanceRatioSelector" Type="Enumeration" SelectedFeatures="1">
            <SelectorCombination Entry="Red" Feature="BalanceRatio" Type="Float">2.354004</SelectorCombination>
            <SelectorCombination Entry="Blue" Feature="BalanceRatio" Type="Float">2.100098</SelectorCombination>
        </Selector>
        <Selector Name="ChunkSelector" Type="Enumeration" SelectedFeatures="2">
            <SelectorCombination Entry="FrameID" Feature="ChunkEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="LineStatusAll" Feature="ChunkEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Timestamp" Feature="ChunkEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="ExposureTime" Feature="ChunkEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="BalanceRatioBlue" Feature="ChunkEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="BalanceRatioRed" Feature="ChunkEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Gain" Feature="ChunkEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Height" Feature="ChunkEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Width" Feature="ChunkEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="OffsetX" Feature="ChunkEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="OffsetY" Feature="ChunkEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="SequencerSetActive" Feature="ChunkEnable" Type="Boolean">False</SelectorCombination>
        </Selector>
        <Selector Name="ColorTransformationValueSelector" Type="Enumeration" SelectedFeatures="1">
            <SelectorCombination Entry="Gain00" Feature="ColorTransformationValue" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Gain01" Feature="ColorTransformationValue" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Gain02" Feature="ColorTransformationValue" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Gain10" Feature="ColorTransformationValue" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Gain11" Feature="ColorTransformationValue" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Gain12" Feature="ColorTransformationValue" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Gain20" Feature="ColorTransformationValue" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Gain21" Feature="ColorTransformationValue" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Gain22" Feature="ColorTransformationValue" Type="Float">1.000000</SelectorCombination>
        </Selector>
        <Selector Name="CorrectionSelector" Type="Enumeration" SelectedFeatures="5">
            <SelectorCombination Entry="DefectPixelCorrection" Feature="CorrectionMode" Type="Enumeration">On</SelectorCombination>
            <SelectorCombination Entry="DefectPixelCorrection" Feature="CorrectionSet" Type="Enumeration">Preset</SelectorCombination>
            <SelectorCombination Entry="DefectPixelCorrection" Feature="CorrectionSetDefault" Type="Enumeration">Preset</SelectorCombination>
            <SelectorCombination Entry="FixedPatternNoiseCorrection" Feature="CorrectionMode" Type="Enumeration">On</SelectorCombination>
            <SelectorCombination Entry="FixedPatternNoiseCorrection" Feature="CorrectionSet" Type="Enumeration">Preset</SelectorCombination>
            <SelectorCombination Entry="FixedPatternNoiseCorrection" Feature="CorrectionSetDefault" Type="Enumeration">Preset</SelectorCombination>
        </Selector>
        <Selector Name="CustomConvolutionValueSelector" Type="Enumeration" SelectedFeatures="1">
            <SelectorCombination Entry="Coefficient00" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Coefficient01" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Coefficient02" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Coefficient03" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Coefficient04" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Coefficient10" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Coefficient11" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Coefficient12" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Coefficient13" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Coefficient14" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Coefficient20" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Coefficient21" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Coefficient22" Feature="CustomConvolutionValue" Type="Integer">1</SelectorCombination>
            <SelectorCombination Entry="Coefficient23" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Coefficient24" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Coefficient30" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Coefficient31" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Coefficient32" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Coefficient33" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Coefficient34" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Coefficient40" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Coefficient41" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Coefficient42" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Coefficient43" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Coefficient44" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
        </Selector>
        <Selector Name="LineSelector" Type="Enumeration" SelectedFeatures="5">
            <SelectorCombination Entry="Line0" Feature="LineMode" Type="Enumeration">Input</SelectorCombination>
            <SelectorCombination Entry="Line1" Feature="LineMode" Type="Enumeration">Input</SelectorCombination>
            <SelectorCombination Entry="Line2" Feature="LineMode" Type="Enumeration">Input</SelectorCombination>
            <SelectorCombination Entry="Line3" Feature="LineMode" Type="Enumeration">Input</SelectorCombination>
        </Selector>
        <Selector Name="SequencerPathSelector" Type="Enumeration" SelectedFeatures="3">
            <SelectorCombination Entry="Path0" Feature="SequencerSetNext" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Path0" Feature="SequencerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Path0" Feature="SequencerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Path1" Feature="SequencerSetNext" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Path1" Feature="SequencerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Path1" Feature="SequencerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Path2" Feature="SequencerSetNext" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Path2" Feature="SequencerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Path2" Feature="SequencerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Path3" Feature="SequencerSetNext" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Path3" Feature="SequencerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Path3" Feature="SequencerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Path4" Feature="SequencerSetNext" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Path4" Feature="SequencerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Path4" Feature="SequencerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Path5" Feature="SequencerSetNext" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Path5" Feature="SequencerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Path5" Feature="SequencerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Path6" Feature="SequencerSetNext" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Path6" Feature="SequencerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Path6" Feature="SequencerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Path7" Feature="SequencerSetNext" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Path7" Feature="SequencerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Path7" Feature="SequencerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
        </Selector>
        <Selector Name="SequencerSetSelector" Type="Enumeration" SelectedFeatures="90">
            <SelectorCombination Entry="Set0" Feature="DeviceLinkThroughputLimitMode" Type="Enumeration">On</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="ExposureAutoMin" Type="Float">75.636002</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="ExposureAutoMax" Type="Float">9000011.000000</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="ExposureTime" Type="Float">18923.878906</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="AcquisitionFrameRate" Type="Float">20.232126</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="DeviceLinkThroughputLimit" Type="Integer">200000000</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="DevicePowerSavingMode" Type="Enumeration">Disabled</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="SensorShutterMode" Type="Enumeration">GlobalShutter</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="Width" Type="Integer">2064</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="OffsetX" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="AutoModeRegionWidth" Type="Integer">2064</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="AutoModeRegionOffsetX" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="AutoModeRegionHeight" Type="Integer">1544</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="AutoModeRegionOffsetY" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="Height" Type="Integer">1544</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="OffsetY" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="BinningHorizontalMode" Type="Enumeration">Sum</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="BinningHorizontal" Type="Integer">1</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="BinningVerticalMode" Type="Enumeration">Sum</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="BinningVertical" Type="Integer">1</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="ReverseX" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="ReverseY" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="PixelFormat" Type="Enumeration">RGB8</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="BlackLevel" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="SequencerFeatureSelector" Type="Enumeration">Width</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="Hue" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="Saturation" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="ColorTransformationEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="ColorTransformationValue" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="ContrastEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="ContrastDarkLimit" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="ContrastBrightLimit" Type="Integer">255</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="ConvolutionMode" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="Sharpness" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="AdaptiveNoiseSuppressionFactor" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="IntensityControllerOutliersDark" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="IntensityControllerOutliersBright" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="IntensityControllerTolerance" Type="Integer">5</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="IntensityControllerTarget" Type="Float">50.000000</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="IntensityControllerAlgorithm" Type="Enumeration">Mean</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="IntensityControllerRate" Type="Integer">100</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="IntensityControllerRegion" Type="Enumeration">FullImage</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="ExposureAuto" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="ExposureActiveMode" Type="Enumeration">FlashWindow</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="GainAuto" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="GainAutoMin" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="GainAutoMax" Type="Float">48.000000</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="BalanceWhiteAuto" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="BalanceWhiteAutoRate" Type="Float">100.000000</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="BalanceWhiteAutoTolerance" Type="Float">5.000000</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="IntensityAutoPrecedence" Type="Enumeration">Minimizenoise</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="AcquisitionMode" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="LineMode" Type="Enumeration">Input</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="AcquisitionFrameRateMode" Type="Enumeration">Basic</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="AcquisitionFrameRateEnable" Type="Boolean">True</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="TriggerSource" Type="Enumeration">Software</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="TriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="TriggerDelay" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="ExposureMode" Type="Enumeration">Timed</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="ChunkEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="Gain" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="BalanceRatio" Type="Float">2.354004</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="Gamma" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="TimerDuration" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="TimerDelay" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="TimerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="TimerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="CorrectionMode" Type="Enumeration">On</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="CorrectionSet" Type="Enumeration">Preset</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="CorrectionSetDefault" Type="Enumeration">Preset</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="ColorInterpolation" Type="Enumeration">HighQualityLinear5X5</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="ContrastShape" Type="Integer">4</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="SequencerSetNext" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="SequencerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="SequencerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="ChunkModeActive" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set0" Feature="SequencerPathSelector" Type="Enumeration">Path0</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="DeviceLinkThroughputLimitMode" Type="Enumeration">On</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="ExposureAutoMin" Type="Float">75.636002</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="ExposureAutoMax" Type="Float">9000011.000000</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="ExposureTime" Type="Float">18923.878906</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="AcquisitionFrameRate" Type="Float">20.232126</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="DeviceLinkThroughputLimit" Type="Integer">200000000</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="DevicePowerSavingMode" Type="Enumeration">Disabled</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="SensorShutterMode" Type="Enumeration">GlobalShutter</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="Width" Type="Integer">2064</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="OffsetX" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="AutoModeRegionWidth" Type="Integer">2064</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="AutoModeRegionOffsetX" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="AutoModeRegionHeight" Type="Integer">1544</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="AutoModeRegionOffsetY" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="Height" Type="Integer">1544</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="OffsetY" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="BinningHorizontalMode" Type="Enumeration">Sum</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="BinningHorizontal" Type="Integer">1</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="BinningVerticalMode" Type="Enumeration">Sum</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="BinningVertical" Type="Integer">1</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="ReverseX" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="ReverseY" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="PixelFormat" Type="Enumeration">RGB8</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="BlackLevel" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="SequencerFeatureSelector" Type="Enumeration">Width</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="Hue" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="Saturation" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="ColorTransformationEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="ColorTransformationValue" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="ContrastEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="ContrastDarkLimit" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="ContrastBrightLimit" Type="Integer">255</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="ConvolutionMode" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="Sharpness" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="AdaptiveNoiseSuppressionFactor" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="IntensityControllerOutliersDark" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="IntensityControllerOutliersBright" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="IntensityControllerTolerance" Type="Integer">5</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="IntensityControllerTarget" Type="Float">50.000000</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="IntensityControllerAlgorithm" Type="Enumeration">Mean</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="IntensityControllerRate" Type="Integer">100</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="IntensityControllerRegion" Type="Enumeration">FullImage</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="ExposureAuto" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="ExposureActiveMode" Type="Enumeration">FlashWindow</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="GainAuto" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="GainAutoMin" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="GainAutoMax" Type="Float">48.000000</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="BalanceWhiteAuto" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="BalanceWhiteAutoRate" Type="Float">100.000000</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="BalanceWhiteAutoTolerance" Type="Float">5.000000</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="IntensityAutoPrecedence" Type="Enumeration">Minimizenoise</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="AcquisitionMode" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="LineMode" Type="Enumeration">Input</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="AcquisitionFrameRateMode" Type="Enumeration">Basic</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="AcquisitionFrameRateEnable" Type="Boolean">True</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="TriggerSource" Type="Enumeration">Software</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="TriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="TriggerDelay" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="ExposureMode" Type="Enumeration">Timed</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="ChunkEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="Gain" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="BalanceRatio" Type="Float">2.354004</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="Gamma" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="TimerDuration" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="TimerDelay" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="TimerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="TimerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="CorrectionMode" Type="Enumeration">On</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="CorrectionSet" Type="Enumeration">Preset</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="CorrectionSetDefault" Type="Enumeration">Preset</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="ColorInterpolation" Type="Enumeration">HighQualityLinear5X5</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="ContrastShape" Type="Integer">4</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="SequencerSetNext" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="SequencerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="SequencerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="ChunkModeActive" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set1" Feature="SequencerPathSelector" Type="Enumeration">Path0</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="DeviceLinkThroughputLimitMode" Type="Enumeration">On</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="ExposureAutoMin" Type="Float">75.636002</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="ExposureAutoMax" Type="Float">9000011.000000</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="ExposureTime" Type="Float">18923.878906</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="AcquisitionFrameRate" Type="Float">30.232126</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="DeviceLinkThroughputLimit" Type="Integer">200000000</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="DevicePowerSavingMode" Type="Enumeration">Disabled</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="SensorShutterMode" Type="Enumeration">GlobalShutter</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="Width" Type="Integer">2064</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="OffsetX" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="AutoModeRegionWidth" Type="Integer">2064</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="AutoModeRegionOffsetX" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="AutoModeRegionHeight" Type="Integer">1544</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="AutoModeRegionOffsetY" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="Height" Type="Integer">1544</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="OffsetY" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="BinningHorizontalMode" Type="Enumeration">Sum</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="BinningHorizontal" Type="Integer">1</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="BinningVerticalMode" Type="Enumeration">Sum</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="BinningVertical" Type="Integer">1</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="ReverseX" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="ReverseY" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="PixelFormat" Type="Enumeration">RGB8</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="BlackLevel" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="SequencerFeatureSelector" Type="Enumeration">Width</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="Hue" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="Saturation" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="ColorTransformationEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="ColorTransformationValue" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="ContrastEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="ContrastDarkLimit" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="ContrastBrightLimit" Type="Integer">255</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="ConvolutionMode" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="Sharpness" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="AdaptiveNoiseSuppressionFactor" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="IntensityControllerOutliersDark" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="IntensityControllerOutliersBright" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="IntensityControllerTolerance" Type="Integer">5</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="IntensityControllerTarget" Type="Float">50.000000</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="IntensityControllerAlgorithm" Type="Enumeration">Mean</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="IntensityControllerRate" Type="Integer">100</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="IntensityControllerRegion" Type="Enumeration">FullImage</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="ExposureAuto" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="ExposureActiveMode" Type="Enumeration">FlashWindow</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="GainAuto" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="GainAutoMin" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="GainAutoMax" Type="Float">48.000000</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="BalanceWhiteAuto" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="BalanceWhiteAutoRate" Type="Float">100.000000</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="BalanceWhiteAutoTolerance" Type="Float">5.000000</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="IntensityAutoPrecedence" Type="Enumeration">Minimizenoise</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="AcquisitionMode" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="LineMode" Type="Enumeration">Input</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="AcquisitionFrameRateMode" Type="Enumeration">Basic</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="AcquisitionFrameRateEnable" Type="Boolean">True</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="TriggerSource" Type="Enumeration">Software</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="TriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="TriggerDelay" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="ExposureMode" Type="Enumeration">Timed</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="ChunkEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="Gain" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="BalanceRatio" Type="Float">2.354004</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="Gamma" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="TimerDuration" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="TimerDelay" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="TimerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="TimerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="CorrectionMode" Type="Enumeration">On</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="CorrectionSet" Type="Enumeration">Preset</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="CorrectionSetDefault" Type="Enumeration">Preset</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="ColorInterpolation" Type="Enumeration">HighQualityLinear5X5</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="ContrastShape" Type="Integer">4</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="SequencerSetNext" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="SequencerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="SequencerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="ChunkModeActive" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set2" Feature="SequencerPathSelector" Type="Enumeration">Path0</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="DeviceLinkThroughputLimitMode" Type="Enumeration">On</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="ExposureAutoMin" Type="Float">75.636002</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="ExposureAutoMax" Type="Float">9000011.000000</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="ExposureTime" Type="Float">18923.878906</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="AcquisitionFrameRate" Type="Float">20.232126</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="DeviceLinkThroughputLimit" Type="Integer">200000000</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="DevicePowerSavingMode" Type="Enumeration">Disabled</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="SensorShutterMode" Type="Enumeration">GlobalShutter</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="Width" Type="Integer">2064</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="OffsetX" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="AutoModeRegionWidth" Type="Integer">2064</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="AutoModeRegionOffsetX" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="AutoModeRegionHeight" Type="Integer">1544</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="AutoModeRegionOffsetY" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="Height" Type="Integer">1544</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="OffsetY" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="BinningHorizontalMode" Type="Enumeration">Sum</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="BinningHorizontal" Type="Integer">1</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="BinningVerticalMode" Type="Enumeration">Sum</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="BinningVertical" Type="Integer">1</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="ReverseX" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="ReverseY" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="PixelFormat" Type="Enumeration">RGB8</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="BlackLevel" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="SequencerFeatureSelector" Type="Enumeration">Width</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="Hue" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="Saturation" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="ColorTransformationEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="ColorTransformationValue" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="ContrastEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="ContrastDarkLimit" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="ContrastBrightLimit" Type="Integer">255</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="ConvolutionMode" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="Sharpness" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="AdaptiveNoiseSuppressionFactor" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="IntensityControllerOutliersDark" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="IntensityControllerOutliersBright" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="IntensityControllerTolerance" Type="Integer">5</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="IntensityControllerTarget" Type="Float">50.000000</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="IntensityControllerAlgorithm" Type="Enumeration">Mean</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="IntensityControllerRate" Type="Integer">100</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="IntensityControllerRegion" Type="Enumeration">FullImage</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="ExposureAuto" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="ExposureActiveMode" Type="Enumeration">FlashWindow</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="GainAuto" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="GainAutoMin" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="GainAutoMax" Type="Float">48.000000</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="BalanceWhiteAuto" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="BalanceWhiteAutoRate" Type="Float">100.000000</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="BalanceWhiteAutoTolerance" Type="Float">5.000000</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="IntensityAutoPrecedence" Type="Enumeration">Minimizenoise</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="AcquisitionMode" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="LineMode" Type="Enumeration">Input</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="AcquisitionFrameRateMode" Type="Enumeration">Basic</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="AcquisitionFrameRateEnable" Type="Boolean">True</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="TriggerSource" Type="Enumeration">Software</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="TriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="TriggerDelay" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="ExposureMode" Type="Enumeration">Timed</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="ChunkEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="Gain" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="BalanceRatio" Type="Float">2.354004</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="Gamma" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="TimerDuration" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="TimerDelay" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="TimerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="TimerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="CorrectionMode" Type="Enumeration">On</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="CorrectionSet" Type="Enumeration">Preset</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="CorrectionSetDefault" Type="Enumeration">Preset</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="ColorInterpolation" Type="Enumeration">HighQualityLinear5X5</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="ContrastShape" Type="Integer">4</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="SequencerSetNext" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="SequencerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="SequencerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="ChunkModeActive" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set3" Feature="SequencerPathSelector" Type="Enumeration">Path0</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="DeviceLinkThroughputLimitMode" Type="Enumeration">On</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="ExposureAutoMin" Type="Float">75.636002</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="ExposureAutoMax" Type="Float">9000011.000000</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="ExposureTime" Type="Float">18923.878906</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="AcquisitionFrameRate" Type="Float">20.232126</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="DeviceLinkThroughputLimit" Type="Integer">200000000</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="DevicePowerSavingMode" Type="Enumeration">Disabled</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="SensorShutterMode" Type="Enumeration">GlobalShutter</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="Width" Type="Integer">2064</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="OffsetX" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="AutoModeRegionWidth" Type="Integer">2064</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="AutoModeRegionOffsetX" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="AutoModeRegionHeight" Type="Integer">1544</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="AutoModeRegionOffsetY" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="Height" Type="Integer">1544</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="OffsetY" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="BinningHorizontalMode" Type="Enumeration">Sum</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="BinningHorizontal" Type="Integer">1</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="BinningVerticalMode" Type="Enumeration">Sum</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="BinningVertical" Type="Integer">1</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="ReverseX" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="ReverseY" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="PixelFormat" Type="Enumeration">RGB8</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="BlackLevel" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="SequencerFeatureSelector" Type="Enumeration">Width</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="Hue" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="Saturation" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="ColorTransformationEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="ColorTransformationValue" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="ContrastEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="ContrastDarkLimit" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="ContrastBrightLimit" Type="Integer">255</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="ConvolutionMode" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="Sharpness" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="AdaptiveNoiseSuppressionFactor" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="IntensityControllerOutliersDark" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="IntensityControllerOutliersBright" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="IntensityControllerTolerance" Type="Integer">5</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="IntensityControllerTarget" Type="Float">50.000000</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="IntensityControllerAlgorithm" Type="Enumeration">Mean</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="IntensityControllerRate" Type="Integer">100</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="IntensityControllerRegion" Type="Enumeration">FullImage</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="ExposureAuto" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="ExposureActiveMode" Type="Enumeration">FlashWindow</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="GainAuto" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="GainAutoMin" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="GainAutoMax" Type="Float">48.000000</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="BalanceWhiteAuto" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="BalanceWhiteAutoRate" Type="Float">100.000000</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="BalanceWhiteAutoTolerance" Type="Float">5.000000</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="IntensityAutoPrecedence" Type="Enumeration">Minimizenoise</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="AcquisitionMode" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="LineMode" Type="Enumeration">Input</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="AcquisitionFrameRateMode" Type="Enumeration">Basic</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="AcquisitionFrameRateEnable" Type="Boolean">True</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="TriggerSource" Type="Enumeration">Software</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="TriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="TriggerDelay" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="ExposureMode" Type="Enumeration">Timed</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="ChunkEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="Gain" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="BalanceRatio" Type="Float">2.354004</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="Gamma" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="TimerDuration" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="TimerDelay" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="TimerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="TimerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="CorrectionMode" Type="Enumeration">On</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="CorrectionSet" Type="Enumeration">Preset</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="CorrectionSetDefault" Type="Enumeration">Preset</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="ColorInterpolation" Type="Enumeration">HighQualityLinear5X5</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="ContrastShape" Type="Integer">4</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="SequencerSetNext" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="SequencerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="SequencerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="ChunkModeActive" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set4" Feature="SequencerPathSelector" Type="Enumeration">Path0</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="DeviceLinkThroughputLimitMode" Type="Enumeration">On</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="ExposureAutoMin" Type="Float">75.636002</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="ExposureAutoMax" Type="Float">9000011.000000</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="ExposureTime" Type="Float">18923.878906</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="AcquisitionFrameRate" Type="Float">20.232126</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="DeviceLinkThroughputLimit" Type="Integer">200000000</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="DevicePowerSavingMode" Type="Enumeration">Disabled</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="SensorShutterMode" Type="Enumeration">GlobalShutter</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="Width" Type="Integer">2064</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="OffsetX" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="AutoModeRegionWidth" Type="Integer">2064</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="AutoModeRegionOffsetX" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="AutoModeRegionHeight" Type="Integer">1544</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="AutoModeRegionOffsetY" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="Height" Type="Integer">1544</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="OffsetY" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="BinningHorizontalMode" Type="Enumeration">Sum</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="BinningHorizontal" Type="Integer">1</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="BinningVerticalMode" Type="Enumeration">Sum</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="BinningVertical" Type="Integer">1</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="ReverseX" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="ReverseY" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="PixelFormat" Type="Enumeration">RGB8</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="BlackLevel" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="SequencerFeatureSelector" Type="Enumeration">Width</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="Hue" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="Saturation" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="ColorTransformationEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="ColorTransformationValue" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="ContrastEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="ContrastDarkLimit" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="ContrastBrightLimit" Type="Integer">255</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="ConvolutionMode" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="Sharpness" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="AdaptiveNoiseSuppressionFactor" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="IntensityControllerOutliersDark" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="IntensityControllerOutliersBright" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="IntensityControllerTolerance" Type="Integer">5</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="IntensityControllerTarget" Type="Float">50.000000</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="IntensityControllerAlgorithm" Type="Enumeration">Mean</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="IntensityControllerRate" Type="Integer">100</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="IntensityControllerRegion" Type="Enumeration">FullImage</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="ExposureAuto" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="ExposureActiveMode" Type="Enumeration">FlashWindow</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="GainAuto" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="GainAutoMin" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="GainAutoMax" Type="Float">48.000000</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="BalanceWhiteAuto" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="BalanceWhiteAutoRate" Type="Float">100.000000</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="BalanceWhiteAutoTolerance" Type="Float">5.000000</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="IntensityAutoPrecedence" Type="Enumeration">Minimizenoise</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="AcquisitionMode" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="LineMode" Type="Enumeration">Input</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="AcquisitionFrameRateMode" Type="Enumeration">Basic</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="AcquisitionFrameRateEnable" Type="Boolean">True</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="TriggerSource" Type="Enumeration">Software</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="TriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="TriggerDelay" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="ExposureMode" Type="Enumeration">Timed</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="ChunkEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="Gain" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="BalanceRatio" Type="Float">2.354004</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="Gamma" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="TimerDuration" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="TimerDelay" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="TimerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="TimerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="CorrectionMode" Type="Enumeration">On</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="CorrectionSet" Type="Enumeration">Preset</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="CorrectionSetDefault" Type="Enumeration">Preset</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="ColorInterpolation" Type="Enumeration">HighQualityLinear5X5</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="ContrastShape" Type="Integer">4</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="SequencerSetNext" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="SequencerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="SequencerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="ChunkModeActive" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set5" Feature="SequencerPathSelector" Type="Enumeration">Path0</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="DeviceLinkThroughputLimitMode" Type="Enumeration">On</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="ExposureAutoMin" Type="Float">75.636002</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="ExposureAutoMax" Type="Float">9000011.000000</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="ExposureTime" Type="Float">18923.878906</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="AcquisitionFrameRate" Type="Float">20.232126</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="DeviceLinkThroughputLimit" Type="Integer">200000000</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="DevicePowerSavingMode" Type="Enumeration">Disabled</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="SensorShutterMode" Type="Enumeration">GlobalShutter</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="Width" Type="Integer">2064</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="OffsetX" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="AutoModeRegionWidth" Type="Integer">2064</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="AutoModeRegionOffsetX" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="AutoModeRegionHeight" Type="Integer">1544</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="AutoModeRegionOffsetY" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="Height" Type="Integer">1544</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="OffsetY" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="BinningHorizontalMode" Type="Enumeration">Sum</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="BinningHorizontal" Type="Integer">1</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="BinningVerticalMode" Type="Enumeration">Sum</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="BinningVertical" Type="Integer">1</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="ReverseX" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="ReverseY" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="PixelFormat" Type="Enumeration">RGB8</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="BlackLevel" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="SequencerFeatureSelector" Type="Enumeration">Width</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="Hue" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="Saturation" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="ColorTransformationEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="ColorTransformationValue" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="ContrastEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="ContrastDarkLimit" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="ContrastBrightLimit" Type="Integer">255</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="ConvolutionMode" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="Sharpness" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="AdaptiveNoiseSuppressionFactor" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="IntensityControllerOutliersDark" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="IntensityControllerOutliersBright" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="IntensityControllerTolerance" Type="Integer">5</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="IntensityControllerTarget" Type="Float">50.000000</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="IntensityControllerAlgorithm" Type="Enumeration">Mean</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="IntensityControllerRate" Type="Integer">100</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="IntensityControllerRegion" Type="Enumeration">FullImage</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="ExposureAuto" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="ExposureActiveMode" Type="Enumeration">FlashWindow</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="GainAuto" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="GainAutoMin" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="GainAutoMax" Type="Float">48.000000</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="BalanceWhiteAuto" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="BalanceWhiteAutoRate" Type="Float">100.000000</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="BalanceWhiteAutoTolerance" Type="Float">5.000000</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="IntensityAutoPrecedence" Type="Enumeration">Minimizenoise</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="AcquisitionMode" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="LineMode" Type="Enumeration">Input</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="AcquisitionFrameRateMode" Type="Enumeration">Basic</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="AcquisitionFrameRateEnable" Type="Boolean">True</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="TriggerSource" Type="Enumeration">Software</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="TriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="TriggerDelay" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="ExposureMode" Type="Enumeration">Timed</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="ChunkEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="Gain" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="BalanceRatio" Type="Float">2.354004</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="Gamma" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="TimerDuration" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="TimerDelay" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="TimerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="TimerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="CorrectionMode" Type="Enumeration">On</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="CorrectionSet" Type="Enumeration">Preset</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="CorrectionSetDefault" Type="Enumeration">Preset</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="ColorInterpolation" Type="Enumeration">HighQualityLinear5X5</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="ContrastShape" Type="Integer">4</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="SequencerSetNext" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="SequencerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="SequencerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="ChunkModeActive" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set6" Feature="SequencerPathSelector" Type="Enumeration">Path0</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="DeviceLinkThroughputLimitMode" Type="Enumeration">On</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="ExposureAutoMin" Type="Float">75.636002</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="ExposureAutoMax" Type="Float">9000011.000000</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="ExposureTime" Type="Float">18923.878906</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="AcquisitionFrameRate" Type="Float">20.232126</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="DeviceLinkThroughputLimit" Type="Integer">200000000</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="DevicePowerSavingMode" Type="Enumeration">Disabled</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="SensorShutterMode" Type="Enumeration">GlobalShutter</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="Width" Type="Integer">2064</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="OffsetX" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="AutoModeRegionWidth" Type="Integer">2064</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="AutoModeRegionOffsetX" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="AutoModeRegionHeight" Type="Integer">1544</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="AutoModeRegionOffsetY" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="Height" Type="Integer">1544</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="OffsetY" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="BinningHorizontalMode" Type="Enumeration">Sum</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="BinningHorizontal" Type="Integer">1</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="BinningVerticalMode" Type="Enumeration">Sum</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="BinningVertical" Type="Integer">1</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="ReverseX" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="ReverseY" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="PixelFormat" Type="Enumeration">RGB8</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="BlackLevel" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="SequencerFeatureSelector" Type="Enumeration">Width</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="Hue" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="Saturation" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="ColorTransformationEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="ColorTransformationValue" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="ContrastEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="ContrastDarkLimit" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="ContrastBrightLimit" Type="Integer">255</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="ConvolutionMode" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="Sharpness" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="AdaptiveNoiseSuppressionFactor" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="IntensityControllerOutliersDark" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="IntensityControllerOutliersBright" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="IntensityControllerTolerance" Type="Integer">5</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="IntensityControllerTarget" Type="Float">50.000000</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="IntensityControllerAlgorithm" Type="Enumeration">Mean</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="IntensityControllerRate" Type="Integer">100</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="IntensityControllerRegion" Type="Enumeration">FullImage</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="ExposureAuto" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="ExposureActiveMode" Type="Enumeration">FlashWindow</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="GainAuto" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="GainAutoMin" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="GainAutoMax" Type="Float">48.000000</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="BalanceWhiteAuto" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="BalanceWhiteAutoRate" Type="Float">100.000000</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="BalanceWhiteAutoTolerance" Type="Float">5.000000</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="IntensityAutoPrecedence" Type="Enumeration">Minimizenoise</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="AcquisitionMode" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="LineMode" Type="Enumeration">Input</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="AcquisitionFrameRateMode" Type="Enumeration">Basic</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="AcquisitionFrameRateEnable" Type="Boolean">True</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="TriggerSource" Type="Enumeration">Software</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="TriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="TriggerDelay" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="ExposureMode" Type="Enumeration">Timed</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="ChunkEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="Gain" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="BalanceRatio" Type="Float">2.354004</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="Gamma" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="TimerDuration" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="TimerDelay" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="TimerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="TimerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="CorrectionMode" Type="Enumeration">On</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="CorrectionSet" Type="Enumeration">Preset</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="CorrectionSetDefault" Type="Enumeration">Preset</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="ColorInterpolation" Type="Enumeration">HighQualityLinear5X5</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="ContrastShape" Type="Integer">4</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="SequencerSetNext" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="SequencerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="SequencerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="ChunkModeActive" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set7" Feature="SequencerPathSelector" Type="Enumeration">Path0</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="DeviceLinkThroughputLimitMode" Type="Enumeration">On</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="ExposureAutoMin" Type="Float">75.636002</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="ExposureAutoMax" Type="Float">9000011.000000</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="ExposureTime" Type="Float">18923.878906</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="AcquisitionFrameRate" Type="Float">20.232126</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="DeviceLinkThroughputLimit" Type="Integer">200000000</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="DevicePowerSavingMode" Type="Enumeration">Disabled</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="SensorShutterMode" Type="Enumeration">GlobalShutter</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="Width" Type="Integer">2064</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="OffsetX" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="AutoModeRegionWidth" Type="Integer">2064</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="AutoModeRegionOffsetX" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="AutoModeRegionHeight" Type="Integer">1544</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="AutoModeRegionOffsetY" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="Height" Type="Integer">1544</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="OffsetY" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="BinningHorizontalMode" Type="Enumeration">Sum</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="BinningHorizontal" Type="Integer">1</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="BinningVerticalMode" Type="Enumeration">Sum</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="BinningVertical" Type="Integer">1</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="ReverseX" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="ReverseY" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="PixelFormat" Type="Enumeration">RGB8</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="BlackLevel" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="SequencerFeatureSelector" Type="Enumeration">Width</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="Hue" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="Saturation" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="ColorTransformationEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="ColorTransformationValue" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="ContrastEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="ContrastDarkLimit" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="ContrastBrightLimit" Type="Integer">255</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="ConvolutionMode" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="Sharpness" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="AdaptiveNoiseSuppressionFactor" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="IntensityControllerOutliersDark" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="IntensityControllerOutliersBright" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="IntensityControllerTolerance" Type="Integer">5</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="IntensityControllerTarget" Type="Float">50.000000</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="IntensityControllerAlgorithm" Type="Enumeration">Mean</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="IntensityControllerRate" Type="Integer">100</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="IntensityControllerRegion" Type="Enumeration">FullImage</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="ExposureAuto" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="ExposureActiveMode" Type="Enumeration">FlashWindow</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="GainAuto" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="GainAutoMin" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="GainAutoMax" Type="Float">48.000000</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="BalanceWhiteAuto" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="BalanceWhiteAutoRate" Type="Float">100.000000</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="BalanceWhiteAutoTolerance" Type="Float">5.000000</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="IntensityAutoPrecedence" Type="Enumeration">Minimizenoise</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="AcquisitionMode" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="LineMode" Type="Enumeration">Input</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="AcquisitionFrameRateMode" Type="Enumeration">Basic</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="AcquisitionFrameRateEnable" Type="Boolean">True</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="TriggerSource" Type="Enumeration">Software</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="TriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="TriggerDelay" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="ExposureMode" Type="Enumeration">Timed</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="ChunkEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="Gain" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="BalanceRatio" Type="Float">2.354004</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="Gamma" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="TimerDuration" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="TimerDelay" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="TimerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="TimerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="CorrectionMode" Type="Enumeration">On</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="CorrectionSet" Type="Enumeration">Preset</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="CorrectionSetDefault" Type="Enumeration">Preset</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="ColorInterpolation" Type="Enumeration">HighQualityLinear5X5</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="ContrastShape" Type="Integer">4</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="SequencerSetNext" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="SequencerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="SequencerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="ChunkModeActive" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set8" Feature="SequencerPathSelector" Type="Enumeration">Path0</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="DeviceLinkThroughputLimitMode" Type="Enumeration">On</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="ExposureAutoMin" Type="Float">75.636002</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="ExposureAutoMax" Type="Float">9000011.000000</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="ExposureTime" Type="Float">18923.878906</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="AcquisitionFrameRate" Type="Float">20.232126</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="DeviceLinkThroughputLimit" Type="Integer">200000000</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="DevicePowerSavingMode" Type="Enumeration">Disabled</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="SensorShutterMode" Type="Enumeration">GlobalShutter</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="Width" Type="Integer">2064</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="OffsetX" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="AutoModeRegionWidth" Type="Integer">2064</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="AutoModeRegionOffsetX" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="AutoModeRegionHeight" Type="Integer">1544</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="AutoModeRegionOffsetY" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="Height" Type="Integer">1544</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="OffsetY" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="BinningHorizontalMode" Type="Enumeration">Sum</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="BinningHorizontal" Type="Integer">1</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="BinningVerticalMode" Type="Enumeration">Sum</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="BinningVertical" Type="Integer">1</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="ReverseX" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="ReverseY" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="PixelFormat" Type="Enumeration">RGB8</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="BlackLevel" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="SequencerFeatureSelector" Type="Enumeration">Width</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="Hue" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="Saturation" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="ColorTransformationEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="ColorTransformationValue" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="ContrastEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="ContrastDarkLimit" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="ContrastBrightLimit" Type="Integer">255</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="ConvolutionMode" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="Sharpness" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="AdaptiveNoiseSuppressionFactor" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="IntensityControllerOutliersDark" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="IntensityControllerOutliersBright" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="IntensityControllerTolerance" Type="Integer">5</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="IntensityControllerTarget" Type="Float">50.000000</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="IntensityControllerAlgorithm" Type="Enumeration">Mean</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="IntensityControllerRate" Type="Integer">100</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="IntensityControllerRegion" Type="Enumeration">FullImage</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="ExposureAuto" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="ExposureActiveMode" Type="Enumeration">FlashWindow</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="GainAuto" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="GainAutoMin" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="GainAutoMax" Type="Float">48.000000</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="BalanceWhiteAuto" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="BalanceWhiteAutoRate" Type="Float">100.000000</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="BalanceWhiteAutoTolerance" Type="Float">5.000000</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="IntensityAutoPrecedence" Type="Enumeration">Minimizenoise</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="AcquisitionMode" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="LineMode" Type="Enumeration">Input</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="AcquisitionFrameRateMode" Type="Enumeration">Basic</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="AcquisitionFrameRateEnable" Type="Boolean">True</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="TriggerSource" Type="Enumeration">Software</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="TriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="TriggerDelay" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="ExposureMode" Type="Enumeration">Timed</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="ChunkEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="Gain" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="BalanceRatio" Type="Float">2.354004</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="Gamma" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="TimerDuration" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="TimerDelay" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="TimerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="TimerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="CorrectionMode" Type="Enumeration">On</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="CorrectionSet" Type="Enumeration">Preset</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="CorrectionSetDefault" Type="Enumeration">Preset</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="ColorInterpolation" Type="Enumeration">HighQualityLinear5X5</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="ContrastShape" Type="Integer">4</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="SequencerSetNext" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="SequencerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="SequencerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="ChunkModeActive" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set9" Feature="SequencerPathSelector" Type="Enumeration">Path0</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="DeviceLinkThroughputLimitMode" Type="Enumeration">On</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="ExposureAutoMin" Type="Float">75.636002</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="ExposureAutoMax" Type="Float">9000011.000000</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="ExposureTime" Type="Float">18923.878906</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="AcquisitionFrameRate" Type="Float">20.232126</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="DeviceLinkThroughputLimit" Type="Integer">200000000</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="DevicePowerSavingMode" Type="Enumeration">Disabled</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="SensorShutterMode" Type="Enumeration">GlobalShutter</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="Width" Type="Integer">2064</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="OffsetX" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="AutoModeRegionWidth" Type="Integer">2064</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="AutoModeRegionOffsetX" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="AutoModeRegionHeight" Type="Integer">1544</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="AutoModeRegionOffsetY" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="Height" Type="Integer">1544</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="OffsetY" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="BinningHorizontalMode" Type="Enumeration">Sum</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="BinningHorizontal" Type="Integer">1</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="BinningVerticalMode" Type="Enumeration">Sum</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="BinningVertical" Type="Integer">1</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="ReverseX" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="ReverseY" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="PixelFormat" Type="Enumeration">RGB8</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="BlackLevel" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="SequencerFeatureSelector" Type="Enumeration">Width</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="Hue" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="Saturation" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="ColorTransformationEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="ColorTransformationValue" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="ContrastEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="ContrastDarkLimit" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="ContrastBrightLimit" Type="Integer">255</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="ConvolutionMode" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="Sharpness" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="AdaptiveNoiseSuppressionFactor" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="IntensityControllerOutliersDark" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="IntensityControllerOutliersBright" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="IntensityControllerTolerance" Type="Integer">5</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="IntensityControllerTarget" Type="Float">50.000000</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="IntensityControllerAlgorithm" Type="Enumeration">Mean</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="IntensityControllerRate" Type="Integer">100</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="IntensityControllerRegion" Type="Enumeration">FullImage</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="ExposureAuto" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="ExposureActiveMode" Type="Enumeration">FlashWindow</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="GainAuto" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="GainAutoMin" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="GainAutoMax" Type="Float">48.000000</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="BalanceWhiteAuto" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="BalanceWhiteAutoRate" Type="Float">100.000000</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="BalanceWhiteAutoTolerance" Type="Float">5.000000</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="IntensityAutoPrecedence" Type="Enumeration">Minimizenoise</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="AcquisitionMode" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="LineMode" Type="Enumeration">Input</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="AcquisitionFrameRateMode" Type="Enumeration">Basic</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="AcquisitionFrameRateEnable" Type="Boolean">True</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="TriggerSource" Type="Enumeration">Software</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="TriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="TriggerDelay" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="ExposureMode" Type="Enumeration">Timed</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="ChunkEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="Gain" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="BalanceRatio" Type="Float">2.354004</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="Gamma" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="TimerDuration" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="TimerDelay" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="TimerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="TimerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="CorrectionMode" Type="Enumeration">On</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="CorrectionSet" Type="Enumeration">Preset</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="CorrectionSetDefault" Type="Enumeration">Preset</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="ColorInterpolation" Type="Enumeration">HighQualityLinear5X5</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="ContrastShape" Type="Integer">4</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="SequencerSetNext" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="SequencerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="SequencerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="ChunkModeActive" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set10" Feature="SequencerPathSelector" Type="Enumeration">Path0</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="DeviceLinkThroughputLimitMode" Type="Enumeration">On</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="ExposureAutoMin" Type="Float">75.636002</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="ExposureAutoMax" Type="Float">9000011.000000</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="ExposureTime" Type="Float">18923.878906</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="AcquisitionFrameRate" Type="Float">20.232126</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="DeviceLinkThroughputLimit" Type="Integer">200000000</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="DevicePowerSavingMode" Type="Enumeration">Disabled</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="SensorShutterMode" Type="Enumeration">GlobalShutter</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="Width" Type="Integer">2064</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="OffsetX" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="AutoModeRegionWidth" Type="Integer">2064</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="AutoModeRegionOffsetX" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="AutoModeRegionHeight" Type="Integer">1544</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="AutoModeRegionOffsetY" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="Height" Type="Integer">1544</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="OffsetY" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="BinningHorizontalMode" Type="Enumeration">Sum</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="BinningHorizontal" Type="Integer">1</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="BinningVerticalMode" Type="Enumeration">Sum</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="BinningVertical" Type="Integer">1</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="ReverseX" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="ReverseY" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="PixelFormat" Type="Enumeration">RGB8</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="BlackLevel" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="SequencerFeatureSelector" Type="Enumeration">Width</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="Hue" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="Saturation" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="ColorTransformationEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="ColorTransformationValue" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="ContrastEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="ContrastDarkLimit" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="ContrastBrightLimit" Type="Integer">255</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="ConvolutionMode" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="Sharpness" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="AdaptiveNoiseSuppressionFactor" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="IntensityControllerOutliersDark" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="IntensityControllerOutliersBright" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="IntensityControllerTolerance" Type="Integer">5</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="IntensityControllerTarget" Type="Float">50.000000</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="IntensityControllerAlgorithm" Type="Enumeration">Mean</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="IntensityControllerRate" Type="Integer">100</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="IntensityControllerRegion" Type="Enumeration">FullImage</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="ExposureAuto" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="ExposureActiveMode" Type="Enumeration">FlashWindow</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="GainAuto" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="GainAutoMin" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="GainAutoMax" Type="Float">48.000000</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="BalanceWhiteAuto" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="BalanceWhiteAutoRate" Type="Float">100.000000</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="BalanceWhiteAutoTolerance" Type="Float">5.000000</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="IntensityAutoPrecedence" Type="Enumeration">Minimizenoise</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="AcquisitionMode" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="LineMode" Type="Enumeration">Input</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="AcquisitionFrameRateMode" Type="Enumeration">Basic</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="AcquisitionFrameRateEnable" Type="Boolean">True</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="TriggerSource" Type="Enumeration">Software</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="TriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="TriggerDelay" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="ExposureMode" Type="Enumeration">Timed</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="ChunkEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="Gain" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="BalanceRatio" Type="Float">2.354004</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="Gamma" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="TimerDuration" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="TimerDelay" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="TimerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="TimerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="CorrectionMode" Type="Enumeration">On</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="CorrectionSet" Type="Enumeration">Preset</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="CorrectionSetDefault" Type="Enumeration">Preset</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="ColorInterpolation" Type="Enumeration">HighQualityLinear5X5</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="ContrastShape" Type="Integer">4</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="SequencerSetNext" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="SequencerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="SequencerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="ChunkModeActive" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set11" Feature="SequencerPathSelector" Type="Enumeration">Path0</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="DeviceLinkThroughputLimitMode" Type="Enumeration">On</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="ExposureAutoMin" Type="Float">75.636002</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="ExposureAutoMax" Type="Float">9000011.000000</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="ExposureTime" Type="Float">18923.878906</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="AcquisitionFrameRate" Type="Float">20.232126</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="DeviceLinkThroughputLimit" Type="Integer">200000000</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="DevicePowerSavingMode" Type="Enumeration">Disabled</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="SensorShutterMode" Type="Enumeration">GlobalShutter</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="Width" Type="Integer">2064</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="OffsetX" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="AutoModeRegionWidth" Type="Integer">2064</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="AutoModeRegionOffsetX" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="AutoModeRegionHeight" Type="Integer">1544</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="AutoModeRegionOffsetY" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="Height" Type="Integer">1544</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="OffsetY" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="BinningHorizontalMode" Type="Enumeration">Sum</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="BinningHorizontal" Type="Integer">1</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="BinningVerticalMode" Type="Enumeration">Sum</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="BinningVertical" Type="Integer">1</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="ReverseX" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="ReverseY" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="PixelFormat" Type="Enumeration">RGB8</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="BlackLevel" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="SequencerFeatureSelector" Type="Enumeration">Width</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="Hue" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="Saturation" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="ColorTransformationEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="ColorTransformationValue" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="ContrastEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="ContrastDarkLimit" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="ContrastBrightLimit" Type="Integer">255</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="ConvolutionMode" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="Sharpness" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="AdaptiveNoiseSuppressionFactor" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="IntensityControllerOutliersDark" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="IntensityControllerOutliersBright" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="IntensityControllerTolerance" Type="Integer">5</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="IntensityControllerTarget" Type="Float">50.000000</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="IntensityControllerAlgorithm" Type="Enumeration">Mean</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="IntensityControllerRate" Type="Integer">100</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="IntensityControllerRegion" Type="Enumeration">FullImage</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="ExposureAuto" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="ExposureActiveMode" Type="Enumeration">FlashWindow</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="GainAuto" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="GainAutoMin" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="GainAutoMax" Type="Float">48.000000</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="BalanceWhiteAuto" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="BalanceWhiteAutoRate" Type="Float">100.000000</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="BalanceWhiteAutoTolerance" Type="Float">5.000000</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="IntensityAutoPrecedence" Type="Enumeration">Minimizenoise</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="AcquisitionMode" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="LineMode" Type="Enumeration">Input</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="AcquisitionFrameRateMode" Type="Enumeration">Basic</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="AcquisitionFrameRateEnable" Type="Boolean">True</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="TriggerSource" Type="Enumeration">Software</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="TriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="TriggerDelay" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="ExposureMode" Type="Enumeration">Timed</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="ChunkEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="Gain" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="BalanceRatio" Type="Float">2.354004</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="Gamma" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="TimerDuration" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="TimerDelay" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="TimerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="TimerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="CorrectionMode" Type="Enumeration">On</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="CorrectionSet" Type="Enumeration">Preset</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="CorrectionSetDefault" Type="Enumeration">Preset</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="ColorInterpolation" Type="Enumeration">HighQualityLinear5X5</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="ContrastShape" Type="Integer">4</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="SequencerSetNext" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="SequencerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="SequencerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="ChunkModeActive" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set12" Feature="SequencerPathSelector" Type="Enumeration">Path0</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="DeviceLinkThroughputLimitMode" Type="Enumeration">On</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="ExposureAutoMin" Type="Float">75.636002</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="ExposureAutoMax" Type="Float">9000011.000000</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="ExposureTime" Type="Float">18923.878906</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="AcquisitionFrameRate" Type="Float">20.232126</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="DeviceLinkThroughputLimit" Type="Integer">200000000</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="DevicePowerSavingMode" Type="Enumeration">Disabled</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="SensorShutterMode" Type="Enumeration">GlobalShutter</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="Width" Type="Integer">2064</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="OffsetX" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="AutoModeRegionWidth" Type="Integer">2064</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="AutoModeRegionOffsetX" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="AutoModeRegionHeight" Type="Integer">1544</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="AutoModeRegionOffsetY" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="Height" Type="Integer">1544</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="OffsetY" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="BinningHorizontalMode" Type="Enumeration">Sum</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="BinningHorizontal" Type="Integer">1</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="BinningVerticalMode" Type="Enumeration">Sum</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="BinningVertical" Type="Integer">1</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="ReverseX" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="ReverseY" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="PixelFormat" Type="Enumeration">RGB8</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="BlackLevel" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="SequencerFeatureSelector" Type="Enumeration">Width</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="Hue" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="Saturation" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="ColorTransformationEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="ColorTransformationValue" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="ContrastEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="ContrastDarkLimit" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="ContrastBrightLimit" Type="Integer">255</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="ConvolutionMode" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="Sharpness" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="AdaptiveNoiseSuppressionFactor" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="IntensityControllerOutliersDark" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="IntensityControllerOutliersBright" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="IntensityControllerTolerance" Type="Integer">5</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="IntensityControllerTarget" Type="Float">50.000000</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="IntensityControllerAlgorithm" Type="Enumeration">Mean</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="IntensityControllerRate" Type="Integer">100</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="IntensityControllerRegion" Type="Enumeration">FullImage</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="ExposureAuto" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="ExposureActiveMode" Type="Enumeration">FlashWindow</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="GainAuto" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="GainAutoMin" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="GainAutoMax" Type="Float">48.000000</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="BalanceWhiteAuto" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="BalanceWhiteAutoRate" Type="Float">100.000000</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="BalanceWhiteAutoTolerance" Type="Float">5.000000</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="IntensityAutoPrecedence" Type="Enumeration">Minimizenoise</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="AcquisitionMode" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="LineMode" Type="Enumeration">Input</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="AcquisitionFrameRateMode" Type="Enumeration">Basic</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="AcquisitionFrameRateEnable" Type="Boolean">True</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="TriggerSource" Type="Enumeration">Software</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="TriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="TriggerDelay" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="ExposureMode" Type="Enumeration">Timed</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="ChunkEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="Gain" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="BalanceRatio" Type="Float">2.354004</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="Gamma" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="TimerDuration" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="TimerDelay" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="TimerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="TimerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="CorrectionMode" Type="Enumeration">On</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="CorrectionSet" Type="Enumeration">Preset</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="CorrectionSetDefault" Type="Enumeration">Preset</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="ColorInterpolation" Type="Enumeration">HighQualityLinear5X5</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="ContrastShape" Type="Integer">4</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="SequencerSetNext" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="SequencerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="SequencerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="ChunkModeActive" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set13" Feature="SequencerPathSelector" Type="Enumeration">Path0</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="DeviceLinkThroughputLimitMode" Type="Enumeration">On</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="ExposureAutoMin" Type="Float">75.636002</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="ExposureAutoMax" Type="Float">9000011.000000</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="ExposureTime" Type="Float">18923.878906</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="AcquisitionFrameRate" Type="Float">20.232126</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="DeviceLinkThroughputLimit" Type="Integer">200000000</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="DevicePowerSavingMode" Type="Enumeration">Disabled</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="SensorShutterMode" Type="Enumeration">GlobalShutter</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="Width" Type="Integer">2064</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="OffsetX" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="AutoModeRegionWidth" Type="Integer">2064</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="AutoModeRegionOffsetX" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="AutoModeRegionHeight" Type="Integer">1544</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="AutoModeRegionOffsetY" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="Height" Type="Integer">1544</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="OffsetY" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="BinningHorizontalMode" Type="Enumeration">Sum</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="BinningHorizontal" Type="Integer">1</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="BinningVerticalMode" Type="Enumeration">Sum</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="BinningVertical" Type="Integer">1</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="ReverseX" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="ReverseY" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="PixelFormat" Type="Enumeration">RGB8</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="BlackLevel" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="SequencerFeatureSelector" Type="Enumeration">Width</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="Hue" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="Saturation" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="ColorTransformationEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="ColorTransformationValue" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="ContrastEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="ContrastDarkLimit" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="ContrastBrightLimit" Type="Integer">255</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="ConvolutionMode" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="Sharpness" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="AdaptiveNoiseSuppressionFactor" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="IntensityControllerOutliersDark" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="IntensityControllerOutliersBright" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="IntensityControllerTolerance" Type="Integer">5</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="IntensityControllerTarget" Type="Float">50.000000</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="IntensityControllerAlgorithm" Type="Enumeration">Mean</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="IntensityControllerRate" Type="Integer">100</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="IntensityControllerRegion" Type="Enumeration">FullImage</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="ExposureAuto" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="ExposureActiveMode" Type="Enumeration">FlashWindow</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="GainAuto" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="GainAutoMin" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="GainAutoMax" Type="Float">48.000000</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="BalanceWhiteAuto" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="BalanceWhiteAutoRate" Type="Float">100.000000</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="BalanceWhiteAutoTolerance" Type="Float">5.000000</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="IntensityAutoPrecedence" Type="Enumeration">Minimizenoise</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="AcquisitionMode" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="LineMode" Type="Enumeration">Input</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="AcquisitionFrameRateMode" Type="Enumeration">Basic</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="AcquisitionFrameRateEnable" Type="Boolean">True</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="TriggerSource" Type="Enumeration">Software</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="TriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="TriggerDelay" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="ExposureMode" Type="Enumeration">Timed</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="ChunkEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="Gain" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="BalanceRatio" Type="Float">2.354004</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="Gamma" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="TimerDuration" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="TimerDelay" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="TimerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="TimerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="CorrectionMode" Type="Enumeration">On</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="CorrectionSet" Type="Enumeration">Preset</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="CorrectionSetDefault" Type="Enumeration">Preset</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="ColorInterpolation" Type="Enumeration">HighQualityLinear5X5</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="ContrastShape" Type="Integer">4</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="SequencerSetNext" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="SequencerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="SequencerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="ChunkModeActive" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set14" Feature="SequencerPathSelector" Type="Enumeration">Path0</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="DeviceLinkThroughputLimitMode" Type="Enumeration">On</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="ExposureAutoMin" Type="Float">75.636002</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="ExposureAutoMax" Type="Float">9000011.000000</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="ExposureTime" Type="Float">18923.878906</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="AcquisitionFrameRate" Type="Float">20.232126</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="DeviceLinkThroughputLimit" Type="Integer">200000000</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="DevicePowerSavingMode" Type="Enumeration">Disabled</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="SensorShutterMode" Type="Enumeration">GlobalShutter</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="Width" Type="Integer">2064</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="OffsetX" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="AutoModeRegionWidth" Type="Integer">2064</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="AutoModeRegionOffsetX" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="AutoModeRegionHeight" Type="Integer">1544</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="AutoModeRegionOffsetY" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="Height" Type="Integer">1544</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="OffsetY" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="BinningHorizontalMode" Type="Enumeration">Sum</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="BinningHorizontal" Type="Integer">1</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="BinningVerticalMode" Type="Enumeration">Sum</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="BinningVertical" Type="Integer">1</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="ReverseX" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="ReverseY" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="PixelFormat" Type="Enumeration">RGB8</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="BlackLevel" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="SequencerFeatureSelector" Type="Enumeration">Width</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="Hue" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="Saturation" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="ColorTransformationEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="ColorTransformationValue" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="ContrastEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="ContrastDarkLimit" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="ContrastBrightLimit" Type="Integer">255</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="ConvolutionMode" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="Sharpness" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="CustomConvolutionValue" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="AdaptiveNoiseSuppressionFactor" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="IntensityControllerOutliersDark" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="IntensityControllerOutliersBright" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="IntensityControllerTolerance" Type="Integer">5</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="IntensityControllerTarget" Type="Float">50.000000</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="IntensityControllerAlgorithm" Type="Enumeration">Mean</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="IntensityControllerRate" Type="Integer">100</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="IntensityControllerRegion" Type="Enumeration">FullImage</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="ExposureAuto" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="ExposureActiveMode" Type="Enumeration">FlashWindow</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="GainAuto" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="GainAutoMin" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="GainAutoMax" Type="Float">48.000000</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="BalanceWhiteAuto" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="BalanceWhiteAutoRate" Type="Float">100.000000</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="BalanceWhiteAutoTolerance" Type="Float">5.000000</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="IntensityAutoPrecedence" Type="Enumeration">Minimizenoise</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="AcquisitionMode" Type="Enumeration">Continuous</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="LineMode" Type="Enumeration">Input</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="AcquisitionFrameRateMode" Type="Enumeration">Basic</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="AcquisitionFrameRateEnable" Type="Boolean">True</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="TriggerSource" Type="Enumeration">Software</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="TriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="TriggerDelay" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="ExposureMode" Type="Enumeration">Timed</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="ChunkEnable" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="Gain" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="BalanceRatio" Type="Float">2.354004</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="Gamma" Type="Float">1.000000</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="TimerDuration" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="TimerDelay" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="TimerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="TimerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="CorrectionMode" Type="Enumeration">On</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="CorrectionSet" Type="Enumeration">Preset</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="CorrectionSetDefault" Type="Enumeration">Preset</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="ColorInterpolation" Type="Enumeration">HighQualityLinear5X5</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="ContrastShape" Type="Integer">4</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="SequencerSetNext" Type="Integer">0</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="SequencerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="SequencerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="ChunkModeActive" Type="Boolean">False</SelectorCombination>
            <SelectorCombination Entry="Set15" Feature="SequencerPathSelector" Type="Enumeration">Path0</SelectorCombination>
        </Selector>
        <Selector Name="TimerSelector" Type="Enumeration" SelectedFeatures="6">
            <SelectorCombination Entry="Timer0" Feature="TimerDuration" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Timer0" Feature="TimerDelay" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Timer0" Feature="TimerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Timer0" Feature="TimerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="Timer1" Feature="TimerDuration" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Timer1" Feature="TimerDelay" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="Timer1" Feature="TimerTriggerSource" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="Timer1" Feature="TimerTriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
        </Selector>
        <Selector Name="TriggerSelector" Type="Enumeration" SelectedFeatures="10">
            <SelectorCombination Entry="AcquisitionStart" Feature="AcquisitionFrameRateEnable" Type="Boolean">True</SelectorCombination>
            <SelectorCombination Entry="AcquisitionStart" Feature="AcquisitionFrameRate" Type="Float">20.232126</SelectorCombination>
            <SelectorCombination Entry="AcquisitionStart" Feature="LineMode" Type="Enumeration">Input</SelectorCombination>
            <SelectorCombination Entry="AcquisitionStart" Feature="TriggerSource" Type="Enumeration">Software</SelectorCombination>
            <SelectorCombination Entry="AcquisitionStart" Feature="TriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="AcquisitionEnd" Feature="AcquisitionFrameRateEnable" Type="Boolean">True</SelectorCombination>
            <SelectorCombination Entry="AcquisitionEnd" Feature="AcquisitionFrameRate" Type="Float">20.232126</SelectorCombination>
            <SelectorCombination Entry="AcquisitionEnd" Feature="LineMode" Type="Enumeration">Input</SelectorCombination>
            <SelectorCombination Entry="AcquisitionEnd" Feature="TriggerSource" Type="Enumeration">Software</SelectorCombination>
            <SelectorCombination Entry="AcquisitionEnd" Feature="TriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="AcquisitionActive" Feature="TriggerMode" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="AcquisitionActive" Feature="AcquisitionFrameRateEnable" Type="Boolean">True</SelectorCombination>
            <SelectorCombination Entry="AcquisitionActive" Feature="AcquisitionFrameRate" Type="Float">20.232126</SelectorCombination>
            <SelectorCombination Entry="AcquisitionActive" Feature="LineMode" Type="Enumeration">Input</SelectorCombination>
            <SelectorCombination Entry="AcquisitionActive" Feature="TriggerSource" Type="Enumeration">Software</SelectorCombination>
            <SelectorCombination Entry="AcquisitionActive" Feature="TriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="AcquisitionActive" Feature="TriggerDelay" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="FrameStart" Feature="TriggerMode" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="FrameStart" Feature="AcquisitionFrameRateEnable" Type="Boolean">True</SelectorCombination>
            <SelectorCombination Entry="FrameStart" Feature="AcquisitionFrameRate" Type="Float">20.232126</SelectorCombination>
            <SelectorCombination Entry="FrameStart" Feature="LineMode" Type="Enumeration">Input</SelectorCombination>
            <SelectorCombination Entry="FrameStart" Feature="TriggerSource" Type="Enumeration">Software</SelectorCombination>
            <SelectorCombination Entry="FrameStart" Feature="TriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="FrameStart" Feature="TriggerDelay" Type="Float">0.000000</SelectorCombination>
            <SelectorCombination Entry="ExposureStart" Feature="AcquisitionFrameRateEnable" Type="Boolean">True</SelectorCombination>
            <SelectorCombination Entry="ExposureStart" Feature="AcquisitionFrameRate" Type="Float">20.232126</SelectorCombination>
            <SelectorCombination Entry="ExposureStart" Feature="LineMode" Type="Enumeration">Input</SelectorCombination>
            <SelectorCombination Entry="ExposureStart" Feature="TriggerSource" Type="Enumeration">Software</SelectorCombination>
            <SelectorCombination Entry="ExposureStart" Feature="TriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="ExposureEnd" Feature="AcquisitionFrameRateEnable" Type="Boolean">True</SelectorCombination>
            <SelectorCombination Entry="ExposureEnd" Feature="AcquisitionFrameRate" Type="Float">20.232126</SelectorCombination>
            <SelectorCombination Entry="ExposureEnd" Feature="LineMode" Type="Enumeration">Input</SelectorCombination>
            <SelectorCombination Entry="ExposureEnd" Feature="TriggerSource" Type="Enumeration">Software</SelectorCombination>
            <SelectorCombination Entry="ExposureEnd" Feature="TriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
            <SelectorCombination Entry="ExposureActive" Feature="TriggerMode" Type="Enumeration">Off</SelectorCombination>
            <SelectorCombination Entry="ExposureActive" Feature="AcquisitionFrameRateEnable" Type="Boolean">True</SelectorCombination>
            <SelectorCombination Entry="ExposureActive" Feature="AcquisitionFrameRate" Type="Float">20.232126</SelectorCombination>
            <SelectorCombination Entry="ExposureActive" Feature="LineMode" Type="Enumeration">Input</SelectorCombination>
            <SelectorCombination Entry="ExposureActive" Feature="TriggerSource" Type="Enumeration">Software</SelectorCombination>
            <SelectorCombination Entry="ExposureActive" Feature="TriggerActivation" Type="Enumeration">RisingEdge</SelectorCombination>
        </Selector>
    </SelectorGroup>
    <IgnoredFeatures Count="106">
        <Feature Name="AcquisitionFrameCount" Type="Integer" Access="None"></Feature>
        <Feature Name="AcquisitionStart" Type="Command" Access="W"></Feature>
        <Feature Name="AcquisitionStatus" Type="Boolean" Access="R"></Feature>
        <Selector Name="AcquisitionStatusSelector" Type="Enumeration" SelectedFeatures="1"></Selector>
        <Feature Name="AcquisitionStop" Type="Command" Access="W"></Feature>
        <Selector Name="AutoModeRegionSelector" Type="Enumeration" SelectedFeatures="4"></Selector>
        <Selector Name="BinningSelector" Type="Enumeration" SelectedFeatures="20"></Selector>
        <Selector Name="BlackLevelSelector" Type="Enumeration" SelectedFeatures="1"></Selector>
        <Feature Name="ChunkBalanceRatioBlue" Type="Float" Access="R"></Feature>
        <Feature Name="ChunkBalanceRatioRed" Type="Float" Access="R"></Feature>
        <Feature Name="ChunkExposureTime" Type="Float" Access="R"></Feature>
        <Feature Name="ChunkFrameID" Type="Integer" Access="R"></Feature>
        <Feature Name="ChunkGain" Type="Float" Access="R"></Feature>
        <Feature Name="ChunkHeight" Type="Integer" Access="R"></Feature>
        <Feature Name="ChunkLineStatusAll" Type="Integer" Access="R"></Feature>
        <Feature Name="ChunkOffsetX" Type="Integer" Access="R"></Feature>
        <Feature Name="ChunkOffsetY" Type="Integer" Access="R"></Feature>
        <Feature Name="ChunkSequencerSetActive" Type="Integer" Access="R"></Feature>
        <Feature Name="ChunkTimestamp" Type="Integer" Access="R"></Feature>
        <Feature Name="ChunkWidth" Type="Integer" Access="R"></Feature>
        <Feature Name="CorrectionDataSize" Type="Integer" Access="R"></Feature>
        <Feature Name="CorrectionEntryType" Type="Integer" Access="R"></Feature>
        <Feature Name="DeviceFamilyName" Type="String" Access="R"></Feature>
        <Feature Name="DeviceFirmwareID" Type="String" Access="R"></Feature>
        <Selector Name="DeviceFirmwareIDSelector" Type="Enumeration" SelectedFeatures="1"></Selector>
        <Feature Name="DeviceFirmwareVersion" Type="String" Access="R"></Feature>
        <Selector Name="DeviceFirmwareVersionSelector" Type="Enumeration" SelectedFeatures="1"></Selector>
        <Feature Name="DeviceGenCPVersionMajor" Type="Integer" Access="R"></Feature>
        <Feature Name="DeviceGenCPVersionMinor" Type="Integer" Access="R"></Feature>
        <Feature Name="DeviceLinkCommandTimeout" Type="Float" Access="R"></Feature>
        <Feature Name="DeviceLinkSpeed" Type="Integer" Access="R"></Feature>
        <Feature Name="DeviceManufacturerInfo" Type="String" Access="R"></Feature>
        <Feature Name="DeviceModelName" Type="String" Access="R"></Feature>
        <Feature Name="DeviceReset" Type="Command" Access="W"></Feature>
        <Feature Name="DeviceSFNCVersionMajor" Type="Integer" Access="R"></Feature>
        <Feature Name="DeviceSFNCVersionMinor" Type="Integer" Access="R"></Feature>
        <Feature Name="DeviceSFNCVersionSubMinor" Type="Integer" Access="R"></Feature>
        <Feature Name="DeviceScanType" Type="Enumeration" Access="R"></Feature>
        <Feature Name="DeviceSerialNumber" Type="String" Access="R"></Feature>
        <Feature Name="DeviceTLVersionMajor" Type="Integer" Access="R"></Feature>
        <Feature Name="DeviceTLVersionMinor" Type="Integer" Access="R"></Feature>
        <Feature Name="DeviceTemperature" Type="Float" Access="R"></Feature>
        <Selector Name="DeviceTemperatureSelector" Type="Enumeration" SelectedFeatures="1"></Selector>
        <Feature Name="DeviceVendorName" Type="String" Access="R"></Feature>
        <Feature Name="DeviceVersion" Type="String" Access="R"></Feature>
        <Feature Name="FileAccessBuffer" Type="Raw" Access="None"></Feature>
        <Feature Name="FileAccessLength" Type="Integer" Access="None"></Feature>
        <Feature Name="FileAccessOffset" Type="Integer" Access="None"></Feature>
        <Feature Name="FileOpenMode" Type="Enumeration" Access="R/W"></Feature>
        <Feature Name="FileOperationExecute" Type="Command" Access="W"></Feature>
        <Feature Name="FileOperationResult" Type="Integer" Access="R"></Feature>
        <Feature Name="FileOperationSelector" Type="Enumeration" Access="R/W"></Feature>
        <Feature Name="FileOperationStatus" Type="Enumeration" Access="R"></Feature>
        <Feature Name="FileProcessStatus" Type="Enumeration" Access="R"></Feature>
        <Feature Name="FileSelector" Type="Enumeration" Access="R/W"></Feature>
        <Feature Name="FileSize" Type="Integer" Access="R"></Feature>
        <Feature Name="FileStatus" Type="Enumeration" Access="R"></Feature>
        <Selector Name="GainSelector" Type="Enumeration" SelectedFeatures="3"></Selector>
        <Feature Name="HeightMax" Type="Integer" Access="R"></Feature>
        <Selector Name="IntensityControllerSelector" Type="Enumeration" SelectedFeatures="4"></Selector>
        <Feature Name="LUTEnable" Type="Boolean" Access="None"></Feature>
        <Feature Name="LUTIndex" Type="Integer" Access="None"></Feature>
        <Feature Name="LUTSelector" Type="Enumeration" Access="R/W"></Feature>
        <Feature Name="LUTValue" Type="Integer" Access="None"></Feature>
        <Feature Name="LineInverter" Type="Boolean" Access="None"></Feature>
        <Feature Name="LineSource" Type="Enumeration" Access="None"></Feature>
        <Feature Name="LineStatus" Type="Boolean" Access="R"></Feature>
        <Feature Name="LineStatusAll" Type="Integer" Access="R"></Feature>
        <Feature Name="PayloadSize" Type="Integer" Access="R"></Feature>
        <Feature Name="PixelSize" Type="Enumeration" Access="R"></Feature>
        <Feature Name="SensorHeight" Type="Integer" Access="R"></Feature>
        <Feature Name="SensorWidth" Type="Integer" Access="R"></Feature>
        <Feature Name="SequencerFeatureEnable" Type="Boolean" Access="R"></Feature>
        <Selector Name="SequencerFeatureSelector" Type="Enumeration" SelectedFeatures="1"></Selector>
        <Feature Name="SequencerSetActive" Type="Integer" Access="R"></Feature>
        <Feature Name="SequencerSetLoad" Type="Command" Access="None"></Feature>
        <Feature Name="SequencerSetSave" Type="Command" Access="None"></Feature>
        <Feature Name="SerialBaudRate" Type="Enumeration" Access="None"></Feature>
        <Feature Name="SerialParityBit" Type="Enumeration" Access="None"></Feature>
        <Feature Name="SerialRxData" Type="Raw" Access="None"></Feature>
        <Feature Name="SerialRxSize" Type="Integer" Access="None"></Feature>
        <Feature Name="SerialRxWaiting" Type="Integer" Access="None"></Feature>
        <Feature Name="SerialStopBits" Type="Integer" Access="None"></Feature>
        <Feature Name="SerialTxData" Type="Raw" Access="None"></Feature>
        <Feature Name="SerialTxLock" Type="Boolean" Access="None"></Feature>
        <Feature Name="SerialTxRemaining" Type="Integer" Access="None"></Feature>
        <Feature Name="SerialTxSize" Type="Integer" Access="None"></Feature>
        <Feature Name="SoftwareSignalPulse" Type="Command" Access="W"></Feature>
        <Selector Name="SoftwareSignalSelector" Type="Enumeration" SelectedFeatures="1"></Selector>
        <Feature Name="StreamAnnounceBufferMinimum" Type="Integer" Access="R"></Feature>
        <Feature Name="StreamAnnouncedBufferCount" Type="Integer" Access="R"></Feature>
        <Feature Name="StreamBufferHandlingMode" Type="Enumeration" Access="R"></Feature>
        <Feature Name="StreamID" Type="String" Access="R"></Feature>
        <Feature Name="StreamIsGrabbing" Type="Boolean" Access="R"></Feature>
        <Feature Name="StreamType" Type="Enumeration" Access="R"></Feature>
        <Feature Name="TimerReset" Type="Command" Access="W"></Feature>
        <Feature Name="TimerStatus" Type="Enumeration" Access="R"></Feature>
        <Feature Name="TimestampLatch" Type="Command" Access="W"></Feature>
        <Feature Name="TimestampLatchValue" Type="Integer" Access="R"></Feature>
        <Feature Name="TimestampReset" Type="Command" Access="W"></Feature>
        <Feature Name="TriggerMode" Type="Enumeration" Access="R"></Feature>
        <Feature Name="TriggerSoftware" Type="Command" Access="W"></Feature>
        <Feature Name="UserSetLoad" Type="Command" Access="W"></Feature>
        <Feature Name="UserSetSave" Type="Command" Access="None"></Feature>
        <Feature Name="UserSetSelector" Type="Enumeration" Access="R/W"></Feature>
        <Feature Name="WidthMax" Type="Integer" Access="R"></Feature>
    </IgnoredFeatures>
</CameraSettings>
Teresa-AlliedVision commented 1 year ago

Hello, please refrain from posting the whole XML file as text, it is very long and most of it has no vaualble information to troubleshoot. You can upload the file for reference, but the important features to check in your case are:

The camera doesn't actually know how the lens is set, it is just adjusting the exposure to work with the lighting conditions. You can set a maximum for the exposure time in the auto exposure settings, so that the length of the exposure time doesn't reduce FPS.