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
Thank you so much for sharing code. When I run the demo code: python mrflow.py --no_init example/frame1.png example/frame2.png example/frame3.png
python mrflow.py --no_init example/frame1.png example/frame2.png example/frame3.png
It raised this error:
mrflow.py:189: RuntimeWarning: invalid value encountered in sqrt flowdiff = np.sqrt((u-uinit)**2 + (v-vinit)**2)
sqrt returns this error when we square root a negative number. (u-uinit)**2 + (v-vinit)**2 is always possitive, I don't know why it returns the error.
sqrt
(u-uinit)**2 + (v-vinit)**2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Thank you so much for sharing code.
When I run the demo code:
python mrflow.py --no_init example/frame1.png example/frame2.png example/frame3.png
It raised this error:
sqrt
returns this error when we square root a negative number.(u-uinit)**2 + (v-vinit)**2
is always possitive, I don't know why it returns the error.The text was updated successfully, but these errors were encountered: