Skip to content
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

pngtosvg: Merge thresholding part in pngToBmp to sheettopng.py code to accommodate variable lighting in inputs #76

Open
sakshamarora1 opened this issue Jan 20, 2022 · 0 comments
Assignees

Comments

@sakshamarora1
Copy link
Member

Related: #3

We should do this thresholding in sheettopng during the cropping process.

# Threshold image to convert each pixel to either black or white
threshold = 200
data = []
for pix in list(img.getdata()):
if pix[0] >= threshold and pix[1] >= threshold and pix[3] >= threshold:
data.append((255, 255, 255, 0))
else:
data.append((0, 0, 0, 1))

@sakshamarora1 sakshamarora1 self-assigned this Jan 20, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant