initial commit

This commit is contained in:
Tanishq Dubey 2022-11-11 22:43:10 -05:00
commit 9a15628705
2 changed files with 7 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
*.png
*.jpg
*.jpeg

4
main.py Normal file
View File

@ -0,0 +1,4 @@
from skimage.io import imread
im = imread("image.png")
print(im)