-
Notifications
You must be signed in to change notification settings - Fork 45
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
Xens data file doesn't work #44
Comments
no sir, actually it is compatible only with .txt file with skiprows=4 and sep="," |
As specified in the documentation (http://work.thaslwanter.at/skinematics/html/imus.html): If you have your own data format, you have to implement the corresponding “get_data” method. You can base it on:
It should be quite straightforward, and I could help if necessary: I would be grateful for any addition to extend the number of sensors supported! Sorry about the super-slow reply: I have been having health problems, which have slowed me down. |
I have an Xsens IMU and would like to use the package skinematics. Where can I find this data generation. With the SDK from the manufacturer, a txt.file is created but not in the desired format of your Xsens class, and therefore does not work. Sorry for my confusion. |
I am not sure if I understand your question.
and you should be able to use the new module. Note that you have to have this file in the module where skinematics is found. You can find this by opening Python, and type
|
And how did you record the data from the Xsens IMU? |
Can you post the first 10 lines of your data-file? |
Acc X: 0.04, Acc Y: -0.03, Acc Z: 7.35 |Gyr X: 0.00, Gyr Y: -0.01, Gyr Z: 0.00 |Mag X: 0.31, Mag Y: 2.29, Mag Z: 0.24 this are my first 10 lines |
This looks weird. Is this really the file produce by the XSens recording software? This looks more like data that have already been read in by you! A Python script to read in the latest version of XSens-sensors can be found here. |
This is the file created by the example python code of the SDK (provided by Xsens/Movella). The data is first read and stored in a log file and with another script this txt file can be created from this log file as shown above. I have not changed anything in the code. |
I've got binary datafiles from Xens (.mvn) but it seems the code is setup to work with a different kind of file (a .csv?). Maybe the format has changed, or maybe I need to preprocess it first somehow?
The text was updated successfully, but these errors were encountered: