This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

dsp移植opencv

小弟最近在搞opencv移植dsp,但对dsp的某些外部数据导入不是太懂,具体如下
const char* cascade_name ="cars3.xml";
cascade = (CvHaarClassifierCascade*) cvLoad(cascade_name, 0, 0, 0);
我需要把cascade这个结构体编译进dsp内,请问大家有什么好方法?或者直接把xml文件加入dsp也行,谢谢

ti有个sys bios的例程人脸检测例程,他们是把cascade这个结构体的所有数据通过数组存储,但我尝试读取,总是出问题,希望得到大家帮助。