We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In the update() function of plot_detected_objects.py, the following is done:
update()
plot_detected_objects.py
But while the plot limits are approximately +-5 meters, the received datapoints are extremely large. Take for example the data below:
'detected_points': {'0,0': {'v': 204213353, 'x': 212143469.0, 'y': 199166970.0, 'z': 203623367.0}}}
Because of this, none of the points is plotted. I assume we need to convert the x,y,z points to meters somehow. But how?
x,y,z
The text was updated successfully, but these errors were encountered:
It seems to me that something is going wrong in the conversion done in the below function.
pymmw/source/mss/x8_mmw.py
Line 259 in 3e2841f
Do you have a reference on how you decode the values? I would like to fix this issue 😄
Sorry, something went wrong.
No branches or pull requests
In the
update()
function ofplot_detected_objects.py
, the following is done:But while the plot limits are approximately +-5 meters, the received datapoints are extremely large. Take for example the data below:
Because of this, none of the points is plotted. I assume we need to convert the
x,y,z
points to meters somehow. But how?The text was updated successfully, but these errors were encountered: