Items with no label
3335 Discussions

how to Configure Intel realsense SDK R3 c++ project?

JOzol
Beginner
1,562 Views

Hello,

silly question, but how do you exactly configure c++ project? I imported property sheet as stated in documentation to new c++ forms application project. but still can't get it to work.

Am, i missing something?

0 Kudos
3 Replies
MartyG
Honored Contributor III
331 Views

I checked first both the R2 and R3 versions of the C++ setup information in the documentation and they were identical, so it's likely that you were looking at the correct documentation page.

https://software.intel.com/sites/landingpage/realsense/camera-sdk/v2016r3/documentation/html/index.html?doc_devguide_property_sheets.html Intel® RealSense™ SDK 2016 R3 Documentation

If the quick and easy setup process above does not work for you, there is an alternate method that is a bit more complex.

https://software.intel.com/sites/landingpage/realsense/camera-sdk/v2016r3/documentation/html/index.html?doc_devguide_project_settings.html Intel® RealSense™ SDK 2016 R3 Documentation

0 Kudos
JOzol
Beginner
331 Views
SeverityCodeDescriptionProjectFileLineSuppression StateErrorLNK2028unresolved token (0A000069) "extern "C" class Intel::RealSense::Session * __stdcall PXCSession_CreateFromPath(wchar_t const *)" (?PXCSession_CreateFromPath@@$$J14YGPAVSession@RealSense@Intel@@PB_W@Z) referenced in function "public: static class Intel::RealSense::SenseManager * __cdecl Intel::RealSense::SenseManager::CreateInstance(wchar_t const *)" (?CreateInstance@SenseManager@RealSense@Intel@@$$FSAPAV123@PB_W@Z)mrs1

Somehow managed to get it working with https://software.intel.com/sites/landingpage/realsense/camera-sdk/v2016r3/documentation/html/index.html?doc_devguide_property_sheets.html Intel® RealSense™ SDK 2016 R3 Documentation , but now i got this error. Any ideas? Also thanks in advance

0 Kudos
MartyG
Honored Contributor III
331 Views

Somebody said "Unresolved token errors almost always are because you made a call to some API but the compiler can't find the library / symbol table. You need to ensure the library is reachable by the compiler. First step: project properties. Sometimes they're because you declared a method in a class but failed to actually *define* the method."

The person who was being helped by that user replied, "You were right, I had some include and library files linked that should not have been there."

0 Kudos
Reply