-
Notifications
You must be signed in to change notification settings - Fork 191
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
The relationship between win_step_um and contact positions. #3564
Comments
I think seeing the script for this would also be beneficial. |
In the preprocess,
Obviously, |
This enviorment is '0.101.2'. |
I've seen this before too in tiny probes. Definitely something we can add a test case for. Maybe it's just setting rigid=True when the probe length is super small... will take a look when I get a chance. |
But in any case @BEGINRX I'd suggest using rigid=True in your motion estimation for now, this would hopefully not trigger the crash (I think!! hope I am right, let me know if not), and we'll also fix this bug so that future users don't hit it either. Alternatively, if you want nonrigid registration, 2um is a tiny window step that you have set here. Maybe you want something more like 200um? With contacts spaced by 100um, motion estimation will be a challenge! |
I met a bug.
The contacts' positions are computed by
positions = [[i*100, j*100] for j in range(0, 2) for i in range(0, 4) ]
. How can I set the win_step to aviod the problem.The text was updated successfully, but these errors were encountered: