|
BayerLayout
|
|
| 0 - GB
|
|
|
| 1 - GR
|
| 2 - BG
|
| 3 - RG
|
| pBayerLayout [out,retval]
|
| Pointer to the ordinal number of the currently selected layout
|
| BayerLayout [in]
|
| The number of the layout to be selected
|
| S_OK
|
| Success
|
| E_FAIL
|
| Failure.
|
| E_INVALIDARG
|
| Invalid property value.
|
|
|
| Private Sub Form_Load()
|
| ActiveDcam1.Acquire = True
|
| ActiveDcam1.Bayer = True
|
| Combo1.AddItem ("GB")
|
| Combo1.AddItem ("GR")
|
| Combo1.AddItem ("BG")
|
| Combo1.AddItem ("RG")
|
| Combo1.ListIndex = 1
|
| End Sub
|
|
|
| Private Sub Combo1_Click()
|
| ActiveDcam1.BayerLayout = Combo1.ListIndex
|
| End Sub
|