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
Why is the gauss function in \second\data\preprocess.py commented out? Doesn't the paper write the gauss function mask to improve performance?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Why is the gauss function in \second\data\preprocess.py commented out?
Doesn't the paper write the gauss function mask to improve performance?
def gauss_func(x0, y0, h, w, xy):
prob = np.exp(-((xy[:,0] - x0)2/(0.5*w2)) - ((xy[:,1] - y0)2/(0.5*h2) ))
return prob
The text was updated successfully, but these errors were encountered: