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
DocGeoNet/inference.py
Line 29 in 5a56ab4
The text was updated successfully, but these errors were encountered:
I am sorry for the late reply.
msk = ((wc[:, :, 0] != 0) & (wc[:, :, 1] != 0) & (wc[:, :, 2] != 0)).astype(np.uint8) xmx, xmn, ymx, ymn, zmx, zmn = 1.2485291, -1.2410645, 1.2387834, -1.2280148, 0.63452387, -0.67187124 wc[:, :, 0] = (wc[:, :, 0] - zmn) / (zmx - zmn) wc[:, :, 1] = (wc[:, :, 1] - ymn) / (ymx - ymn) wc[:, :, 2] = (wc[:, :, 2] - xmn) / (xmx - xmn) wc = cv2.bitwise_and(wc, wc, mask=msk)
Hope this helps! Good luck~
Sorry, something went wrong.
No branches or pull requests
DocGeoNet/inference.py
Line 29 in 5a56ab4
The text was updated successfully, but these errors were encountered: