Mt-Perazim

Results 26 comments of Mt-Perazim

what is your dll-path in your project? do you see the dll in the builded project in the solution explrorer of visual studio? did you enable developer mode and research...

Those settings are ok. What version of unity are you using? What XR Plugin-in Managment are you using? (Windows Mixed Reality or OpenXR)

You have to work with Windows Mixed Reality. Remove OpenXR. As for the path error, I can't tell you exactly what your problem is. Maybe your path is too long?...

if you followed the instruction for this plugin, there nothing else you have to do. It should work. Did you setup the manifest file the right way?

does someone know why GetDepthMapBuffer returns null? @petergu684 @HoloAdventure can you please take a quick look at this issue?

I found the solution. **Short**: The wrong depth sensors where initialized and the c++-code had no error handling for that. **Long**: The problem was that `DepthSensorMode` was serialized and visible...

@petergu684 @HoloAdventure So there is another problem with reshaping the point cloud data. I added the information to the first post!

I fixed my reshape problem by realizing that `var depthMap = researchMode.GetDepthMapBuffer();` is not the right method for that and that the python code is expecting a byte array, which...

I have reopened this issue for future visitors to see.

@agroenenberg Hey, your method should be fine, mine looked the same: ``` byte[] SingleToBytes(Single[] data) { byte[] singleInBytes = new byte[data.Length * 4]; System.Buffer.BlockCopy(data, 0, singleInBytes, 0, singleInBytes.Length); return singleInBytes;...