Commit
·
e895b3f
1
Parent(s):
387c4ff
Update app.py
Browse files
app.py
CHANGED
@@ -6,7 +6,7 @@ from streamlit_image_coordinates import streamlit_image_coordinates
|
|
6 |
with Image.open("kitty.jpeg") as img:
|
7 |
draw = ImageDraw.Draw(img)
|
8 |
|
9 |
-
def get_ellipse_coords(point
|
10 |
center = point
|
11 |
radius = 10
|
12 |
return (
|
|
|
6 |
with Image.open("kitty.jpeg") as img:
|
7 |
draw = ImageDraw.Draw(img)
|
8 |
|
9 |
+
def get_ellipse_coords(point):# tuple[int, int]) -> tuple[int, int, int, int]):
|
10 |
center = point
|
11 |
radius = 10
|
12 |
return (
|