-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
App crashes after few minutes #20
Comments
Hi Eviatar, if you want to process the sensor data from the HoloLens offline, I would recommend you to use the Stream Recorder App from the official HoloLens2ForCV repo from Microsoft. The code in this repository is adapted from the recorder App and intended for online processing of the data. |
Hi Christina, thank you for your comment. I firstly tried to use the stream recorder app as you suggested but I came across different problems. One problem was that the frames from different VLC sensors are not synchronized properly,the second problem is that after about one minute of recording the HoloLens get stuck and the app works really slow (and sometimes just crashes). Thats why I tried to write the frames back to the PC and maybe to reduce the IO process from the HoloLens to my PC. I wish to hear from your experience, what fps to expect (if I want the PV and depth and maybe VLC sensors also) and how long one record can be (before a crash or someting like that)? Thank a lot, it is very helpful. |
Hi Eviatar, As for the issue of the VLC frames not being synchronized, I'm also facing this problem and have not found a solution. I did some experiments there and found that the sensors themselves are not synchronized, so already when you call As for the framerates, I only did measurements with the VLC frames. The framerate depends on how many research mode sensors you grab - if you only record 2 VLC frames for example, you can get 30 fps. But even this is not constant - for example, when you move your hands in front of the HoloLens and the on-board hand tracking is triggered, the fps might drop to as low as 1-2 fps for a couple of frames. If you grab more than two VLC streams or also grab depth, the maximal fps you can get from VLC goes down to around 15 fps (again, not constant). The PV seems to be unaffected by this at large, but I did not do any experiments / measurements there. All of this seems to be independent of what you do with the frames. So whether you stream them to PC, write them to the internal storage, or process them directly on the device, if you want to do some actual CV with the HoloLens, you are facing a lot of hurdles there :/ |
Hi,
runs for sometime but gets me access violation on release call, any idea how to fix that, below is my implementation. `BYTE* __stdcall HL2Stream::GetLongThrowDepthData(int* dataSize)
}` |
Hi,
I used this repo to save the sensors' streams to my pc using the python script.
I wanted to get those streams (PV,VLC sensors,depth AHAT) and I have noticed 2 problems.
basically, the purpose is to get the captured data from all those streams so I could post process the data. I don't need it to be shown in real time.
how could I do it?
Thank in advance,
Eviatar.
The text was updated successfully, but these errors were encountered: