Items with no label
3338 Discussões

how to call the function CreateDepthMappedToColor correcttly?

娄娄
Principiante
1.998 Visualizações

I want to create an instance of class of PXCProjection , then use the instance to call the function CreateDepthMappedToColor to make color image and depth image aligned. But it's always wrong........ help!!!! First, Thanks for your time and assistance.

0 Kudos
1 Solução
MartyG
Colaborador honorário III
656 Visualizações

A script in the RealSense documentation for C++ suggests phrases the PXCProjection line like this:

PXCProjection *projection=device->CreateProjection();

One of my pet hates about coding documentation of any kind is when they give a heading that sets out formatting for an instruction, and then the actual code in a script that calls that instruction is nothing like the heading.

Ver solução na publicação original

4 Respostas
MartyG
Colaborador honorário III
657 Visualizações

A script in the RealSense documentation for C++ suggests phrases the PXCProjection line like this:

PXCProjection *projection=device->CreateProjection();

One of my pet hates about coding documentation of any kind is when they give a heading that sets out formatting for an instruction, and then the actual code in a script that calls that instruction is nothing like the heading.

娄娄
Principiante
656 Visualizações

Thanks !! As you said, I set up a series of instances according to the official document, this time there is no grammatical mistakes. But when I debug, it shows the following error

The cap (an instance of PXCCapture) is nullptr..... I'm almost endocrine disorders

MartyG
Colaborador honorário III
656 Visualizações

A quick and dirty way to get past it may be to just sweep it under the carpet by unticking the 'Break when this exception type is thrown' box and see whether ignoring it has a negative impact on the program's running.

Alternatively, you could try this to officially mark the p variable as nullptr:

int* p = nullptr;

jb455
Contribuidor valorado II
656 Visualizações

I think you may need to call QueryCaptureManager and the next 4 lines after enabling the streams and initialising the sensemanager, as calling Init wakes up the camera so before that there's no device etc available. I may be wrong!

Responder