Mention the sinuses in this picturee
Use that picture and label the things on the picturee
cd /tmp/workspace/attachments/990cd5c6-359e-4b82-9d3f-1bced84bd359/ && ls -la && python3 -c "from PIL import Image; im=Image.open('photo-1787322317390.jpg'); print(im.size)"
cd /tmp/workspace/attachments/990cd5c6-359e-4b82-9d3f-1bced84bd359/ && python3 << 'EOF' from PIL import Image, ImageDraw, ImageFont im = Image.open("photo-1787322317390.jpg").convert("RGB") draw = ImageDraw.Draw(im) W, H = im.size print(W, H) try: font = ImageFont.truetype("/usr/share/fonts/truetype/dejavu/DejaVuSans-Bold.ttf", 34) font_small = ImageFont.truetype("/usr/share/fonts/truetype/dejavu/DejaVuSans-Bold.ttf", 26) except: font = ImageFont.load_default() font_small = font def label(text, tip, text_pos, color=(255,255,0)): # arrow line draw.line([text_pos, tip], fill=color, width=4) draw.ellipse([tip[0]-6, tip[1]-6, tip[0]+6, tip[1]+6], fill=color) # text with black outline for readability x, y = text_pos for dx in (-2,-1,0,1,2): for dy in (-2,-1,0,1,2): draw.text((x+dx, y+dy), text, font=font_small, fill=(0,0,0)) draw.text((x, y), text, font=font_small, fill=color) # Frontal sinuses (two arches above orbits) label("Frontal sinus (L)", (470,540), (60,120), color=(255,255,0)) label("Frontal sinus (R)", (760,530), (860,80), color=(255,255,0)) # Orbits label("Orbit (L)", (330,650), (40,420), color=(0,255,255)) label("Orbit (R)", (850,660), (950,420), color=(0,255,255)) # Ethmoid sinuses (midline between orbits) label("Ethmoid sinuses", (600,720), (620,560), color=(255,140,0)) # Nasal septum / nasal cavity label("Nasal septum", (600,880), (30,900), color=(255,0,255)) # Maxillary sinuses label("Maxillary sinus (L)", (350,1000), (30,1180), color=(0,255,0)) label("Maxillary sinus (R)", (830,1000), (900,1180), color=(0,255,0)) # radiopaque foreign body line label("Radiopaque\nartifact/line", (830,950), (980,1000), color=(255,0,0)) # Mandible label("Mandible", (600,1220), (500,1400), color=(255,255,255)) im.save("annotated_sinuses.jpg", quality=92) print("saved") EOF
annotated sinuses
Image · JPG