As in the topic - is it possible to obtain 24Bpp bitmap from CLEye SDK? Any suggestions how to convert it in efficient way? Now i’m converting it in this way:
Bitmap bitmap32 = new Bitmap(w, h, w * 4, PixelFormat.Format32bppRgb, _map);
Image<Bgr, byte> image24 = new Image<Bgr, byte>(bitmap32);
but is is very slow method.