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
the normal gray = R*0.3 + G*0.59 + B*0.11, but in test.py,gray_fake_B = fake_B[:, :, 0] * 0.299 + fake_B[:, :, 1] * 0.587 + fake_B[:, :, 1] * 0.114 is the fake_B[:, :, 1] * 0.114 should be fake_B[:, :, 2] * 0.114?
gray = R*0.3 + G*0.59 + B*0.11
gray_fake_B = fake_B[:, :, 0] * 0.299 + fake_B[:, :, 1] * 0.587 + fake_B[:, :, 1] * 0.114
fake_B[:, :, 1] * 0.114
fake_B[:, :, 2] * 0.114
The text was updated successfully, but these errors were encountered:
No branches or pull requests
the normal
gray = R*0.3 + G*0.59 + B*0.11
,but in test.py,
gray_fake_B = fake_B[:, :, 0] * 0.299 + fake_B[:, :, 1] * 0.587 + fake_B[:, :, 1] * 0.114
is the
fake_B[:, :, 1] * 0.114
should befake_B[:, :, 2] * 0.114
?The text was updated successfully, but these errors were encountered: