I am trying to combine usdview and houdini engine api to marshall usd mesh into houdini, I just simply get the usd mesh and its geo data into a python list, then use boost to bring those data into c++ code. I kind of get the result I want, I marshall the usd mesh to houdini native geometry. But the problem is, the result only happens inside houdini. When I invoke the python module that generated using boost outside houdini, I would get such error:
even using InProcessSession, I would get these error:
C:/PROGRA~1/SIDEEF~1/HOUDIN~1.287/houdini/scripts/123.cmd (27): Path /img not found C:/PROGRA~1/SIDEEF~1/HOUDIN~1.287/houdini/scripts/123.cmd (28): Can't add operators for / C:/PROGRA~1/SIDEEF~1/HOUDIN~1.287/houdini/scripts/123.cmd (29): Can't find comp1 for locating C:/PROGRA~1/SIDEEF~1/HOUDIN~1.287/houdini/scripts/123.cmd (35): Path /tasks not found C:/PROGRA~1/SIDEEF~1/HOUDIN~1.287/houdini/scripts/123.cmd (36): Can't add operators for / C:/PROGRA~1/SIDEEF~1/HOUDIN~1.287/houdini/scripts/123.cmd (37): Can't find topnet1 for locating
Could any one help me with these issues? Thanks a lot.