I'm trying to convert IMAQ images that are 8 bit gray scale. I need only the image; not the border or the image alignment. I need them to fit into memory that is row oriented, i.e., pixel (0,0) is in location m,
pixel (0,1) is in location m + 1, pixel (1,0) is in location m + 1 * image width, in general pixel location (x,y) is in location m + (y * image width) + x.