![]() |
SK91USB3-LX
1.2.0
|
This pages explains you how to get informations from the camera. More...
Functions | |
| const char * | SK_GETCAMTYPE (int CamID) |
| Reads camera type as string. More... | |
| const char * | SK_GETCAMFAMILY (int CamID) |
| Returns the camera family as string. More... | |
| double | SK_GETREVISION (int CamID, const char *strRev, unsigned int sizeOfBuffer) |
| Query revision number of the camera. More... | |
| int | SK_GETSN (int CamID, const char *strSN, unsigned int sizeOfBuffer) |
| Query for serial number of the camera. More... | |
| int | SK_GETUSBVERSION (int CamID, const char *strUSB, unsigned int sizeOfBuffer) |
| Returns the USB version of the camera. More... | |
| int | SK_GETPIXELSPERLINE (int CamID) |
| Returns the number of pixels per line. More... | |
| int | SK_GETBITSPERPIXEL (int CamID) |
| Returns the number of bits per pixel. More... | |
| int | SK_GETBYTESPERPIXEL (int CamID) |
| Returns the number of bytes per pixel. More... | |
| int | SK_GETBYTESPERLINE (int CamID) |
| Returns the number of bytes per line. More... | |
| int | SK_GETPIXNUM (int CamID) |
| Returns the number of physical pixels at the sensor. More... | |
| double | SK_GETPIXWIDTH (int CamID) |
| Returns the pixel width of the sensor in microns. More... | |
| double | SK_GETPIXHEIGHT (int CamID) |
| Returns the pixel height of the sensor in microns. More... | |
| double | SK_GETPIXDIST (int CamID) |
| Returns the vertical pixel distance of the sensor in microns. More... | |
| double | SK_GETSENSORLENGTH (int CamID) |
| Returns the physical sensor length in millimeters. More... | |
| double | SK_GETSENSORDYNAMIC (int CamID) |
| Returns the sensor specific dynamic range. More... | |
| int | SK_ISTYPEDIGITAL (int CamID) |
| Returns the type (digital or analog) of the camera. More... | |
| int | SK_ISTYPECOLOR (int CamID) |
| Returns kind of camera type. More... | |
| int | SK_ISTYPEANTIBLOOM (int CamID) |
| Query for anti-blooming feature of the sensor. More... | |
| int | SK_ISTYPEINTCTRL (int CamID) |
| Query for integration control feature of the sensor. More... | |
This pages explains you how to get informations from the camera.
| int SK_GETBITSPERPIXEL | ( | int | CamID | ) |
Returns the number of bits per pixel.
The return values for bits per pixel are:
| bits per pixel | resolution |
|---|---|
| 8 | 8 bit resolution gray scale |
| 12 | 12 bit resolution gray scale |
| 24 | 8 bit resolution color |
| 48 | 12 bit resolution color |
| CamID | id of camera from 0 ... n - 1, 0 = 1st camera |
| int SK_GETBYTESPERLINE | ( | int | CamID | ) |
Returns the number of bytes per line.
| CamID | id of camera from 0 ... n - 1, 0 = 1st camera |
| int SK_GETBYTESPERPIXEL | ( | int | CamID | ) |
Returns the number of bytes per pixel.
The return values for bytes per pixel are:
| bytes per pixel | resolution |
|---|---|
| 1 | 8 bit resolution gray scale |
| 2 | 12 bit resolution gray scale |
| 3 | 8 bit resolution color |
| 6 | 12 bit resolution color |
| CamID | id of camera from 0 ... n - 1, 0 = 1st camera |
| const char* SK_GETCAMFAMILY | ( | int | CamID | ) |
Returns the camera family as string.
| CamID | id of camera from 0 ... n - 1, 0 = 1st camera |
| const char* SK_GETCAMTYPE | ( | int | CamID | ) |
Reads camera type as string.
| CamID | id of camera from 0 ... n - 1, 0 = 1st camera |
| double SK_GETPIXDIST | ( | int | CamID | ) |
Returns the vertical pixel distance of the sensor in microns.
| CamID | id of camera from 0 ... n - 1, 0 = 1st camera |
| int SK_GETPIXELSPERLINE | ( | int | CamID | ) |
Returns the number of pixels per line.
| CamID | id of camera from 0 ... n - 1, 0 = 1st camera |
| double SK_GETPIXHEIGHT | ( | int | CamID | ) |
Returns the pixel height of the sensor in microns.
| CamID | id of camera from 0 ... n - 1, 0 = 1st camera |
| int SK_GETPIXNUM | ( | int | CamID | ) |
Returns the number of physical pixels at the sensor.
| CamID | id of camera from 0 ... n - 1, 0 = 1st camera |
| double SK_GETPIXWIDTH | ( | int | CamID | ) |
Returns the pixel width of the sensor in microns.
| CamID | id of camera from 0 ... n - 1, 0 = 1st camera |
| double SK_GETREVISION | ( | int | CamID, |
| const char * | strRev, | ||
| unsigned int | sizeOfBuffer | ||
| ) |
Query revision number of the camera.
| CamID | id of camera from 0 ... n - 1, 0 = 1st camera |
| strRev | pointer to a buffer to store the revision number as string |
| sizeOfBuffer | size of the user managed string buffer |
| double SK_GETSENSORDYNAMIC | ( | int | CamID | ) |
Returns the sensor specific dynamic range.
| CamID | id of camera from 0 ... n - 1, 0 = 1st camera |
| double SK_GETSENSORLENGTH | ( | int | CamID | ) |
Returns the physical sensor length in millimeters.
| CamID | id of camera from 0 ... n - 1, 0 = 1st camera |
| int SK_GETSN | ( | int | CamID, |
| const char * | strSN, | ||
| unsigned int | sizeOfBuffer | ||
| ) |
Query for serial number of the camera.
| CamID | id of camera from 0 ... n - 1, 0 = 1st camera |
| strSN | pointer to a buffer to store the serial number as string |
| sizeOfBuffer | size of the user managed string buffer |
| int SK_GETUSBVERSION | ( | int | CamID, |
| const char * | strUSB, | ||
| unsigned int | sizeOfBuffer | ||
| ) |
Returns the USB version of the camera.
| CamID | id of camera from 0 ... n - 1, 0 = 1st camera |
| strUSB | pointer to a buffer to store the USB version as string |
| sizeOfBuffer | size of the user managed string buffer |
| int SK_ISTYPEANTIBLOOM | ( | int | CamID | ) |
Query for anti-blooming feature of the sensor.
| CamID | id of camera from 0 ... n - 1, 0 = 1st camera |
| int SK_ISTYPECOLOR | ( | int | CamID | ) |
Returns kind of camera type.
| CamID | id of camera from 0 ... n - 1, 0 = 1st camera |
| int SK_ISTYPEDIGITAL | ( | int | CamID | ) |
Returns the type (digital or analog) of the camera.
| CamID | id of camera from 0 ... n - 1, 0 = 1st camera |
| int SK_ISTYPEINTCTRL | ( | int | CamID | ) |
Query for integration control feature of the sensor.
| CamID | id of camera from 0 ... n - 1, 0 = 1st camera |
1.8.11