Software Archive
Read-only legacy content
17061 Discussions

'Release' : is not a member of 'UtilRender'

Annapurna_S_
Beginner
672 Views

Hi, I am getting this error while I am trying to run the Tutorial sample project by Intel.

I called all the property sheets mentioned in the tutorial. Am I missing on some basic configuration related to include or lib paths?

Please let me know whats gone wrong if u have any clue?

0 Kudos
4 Replies
Colleen_C_Intel
Employee
672 Views

Can you mention what tutorial you're attempting to use?  Plus which camera, which OS, and what version of the SDK?

0 Kudos
jb455
Valued Contributor II
672 Views

Sometimes when I open the sample projects in Visual Studio I get various library errors but when I build the solution (F6), they go away. Have you tried building it?

0 Kudos
Klaus_V_
Beginner
673 Views

I have the same issue! How do I release it properly? I just made a dirty workaround freeing the memory with 

delete renderColor;
delete renderDepth;

psm->ReleaseFrame();

It works out well so far, but I don't know if this is good practise. I'm trying to figure that out.

0 Kudos
vaibhav_k_
Beginner
673 Views

Just use

delete renderer;

instead of

renderer->release();

it works perfectly fine.. :)

Utilrender does not have release as member

0 Kudos
Reply