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.

IMGLIB and MS Visual Studio

I'm trying to use Visual Studio to debug and test some of our algorithms that run on a DM6446. I'd like to make use of the IMGLIB libraries for testing so that I can ensure comparable performance between our VS simulation and actual embedded performance.

I've downloaded IMGLIB 1.04b and tried linking in img64x.lib to my VS project. However, I got a corrupt file error about that library. Has anyone successfully built a Windows application that uses IMGLIB? Or am I trying to do the impossible?

Thanks,

Rob

  • If you are using the img64x.lib directly, I don't see how that would ever work.  This library is compiled and targeted for the C64X DSP, not your host machine.

    Thank you, by the way, for citing which library and version you were using as this greatly accelerated the ability to get on the same page and look at the appropriate files.

    I see there is source code for this library that I would guess you could peel out and incorporate into your Visual Studio environment (ie. img64x_c.src).

  • Thanks for the quick response.

    Your answer is what i assumed but I thought I'd ask anyway. A colleague who had been working on this before me was using the imglib2_host.lib, which comes with IMGLIB2 which is only available for the 64x+ series. I was able to compile and run using the function calls from that library but wouldn't be able to use that in our final build.