Intel® Integrated Performance Primitives
Deliberate problems developing high-performance vision, signal, security, and storage applications.
Announcements
The Intel sign-in experience has changed to support enhanced security controls. If you sign in, click here for more information.
6670 Discussions

some errors for my 1st implementation for UIC

fanguts
Beginner
199 Views
Hi Ying, Thank you for your reply. I start to do implementation JPEG encoder of UIC to my program.

linker: uic_core.lib uic_io.lib uic_jpeg.lib
copyrelated dll and lib files to my program folder.

In my program, I include:

#include
#include

I alsodeclared in my program:
JPEGEncoder jpegenc;

after build, I got error: error C2065: 'JPEGEncoder' : undeclared identifier

I saw JPEGEncoder class is defined in uic_jpeg_enc.h (UICAPI). Do you think what's problemcost that? Do I need to link to more Libs? thank you again and have a nice weekend

0 Kudos
1 Reply
fanguts
Beginner
199 Views
Quoting - fanguts
Hi Ying, Thank you for your reply. I start to do implementation JPEG encoder of UIC to my program.

linker: uic_core.lib uic_io.lib uic_jpeg.lib
copyrelated dll and lib files to my program folder.

In my program, I include:

#include
#include

I alsodeclared in my program:
JPEGEncoder jpegenc;

after build, I got error: error C2065: 'JPEGEncoder' : undeclared identifier

I saw JPEGEncoder class is defined in uic_jpeg_enc.h (UICAPI). Do you think what's problemcost that? Do I need to link to more Libs? thank you again and have a nice weekend


ok, I fingured out and fixed this problem after using namespace UIC;
Reply