230 DCx camera
© 2010 Thorlabs
Code Sample
WORD *pList = NULL;
// Number of coordinates in the list
DWORD nCount = is_SetBadPixelCorrectionTable (hCam, IS_GET_LIST_SIZE, NULL);
// Allocate memory for the entire list
pList = new WORD[ 1 + 2*nCount ];
// Read out list
is_SetBadPixelCorrectionTable (hCam, IS_GET_BADPIXEL_LIST, pList);
// Release the list again
delete [] pList;