标签: c image-processing
有没有办法在没有使用opencv的情况下将相机提供为c中的rgb数组? 我目前正在从头开始制作图像识别程序。
我想在结构中使用这样的数据:
typedef struct CameraFeed { int size; //other data like width and height... unsigned char* rgbValuesArray; }