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 gSLICr_seg_engine_GPU.cu, line 67: max_xy_dist = 1.0f / (1.4242f * spixel_size); // sqrt(2) * spixel_size
gSLICr_seg_engine_GPU.cu
max_xy_dist = 1.0f / (1.4242f * spixel_size); // sqrt(2) * spixel_size
Replace 1.4242f with 1.4142f Since sqrt(2) = 1.41421...
1.4242f
1.4142f
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In
gSLICr_seg_engine_GPU.cu
, line 67:max_xy_dist = 1.0f / (1.4242f * spixel_size); // sqrt(2) * spixel_size
Replace
1.4242f
with1.4142f
Since sqrt(2) = 1.41421...
The text was updated successfully, but these errors were encountered: