You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AI Math Notes is an interactive drawing application that allows users to draw mathematical equations on a canvas. Once an equation is drawn, the application uses a multimodal LLM to calculate and display the result next to the equals sign. The application is built using Python with the Tkinter library for the graphical user interface and PIL for image processing. Inspired by Apple's ["Math Notes" demo](https://www.youtube.com/live/RXeOiIDNNek?si=zsfLkfVtCoCqk1ie&t=2806) from WWDC 2024.
The app works by placing the answer next to an equation that has not been solved (AKA an equals sign with nothing to the right of it). An equals sign must be the last thing you wrote before clicking calculate.
17
+
18
+
- Canvas: Draw equations using your mouse. The canvas background is black, and the drawing color is white.
19
+
- Clear Button: Clears the entire canvas.
20
+
- Undo Button (Ctrl/Cmd Z): Undoes the last drawing action
21
+
- Calculate Button (Enter/Return): Calculates the drawn equation and displays the result next to the equals sign.
22
+
23
+
### Example
24
+
- Draw an equation on the canvas, such as `5 + 3 =`
25
+
- Press Enter or click the Calculate button.
26
+
- The result (e.g., 8) will be displayed next to the equals sign in orange color.
27
+
28
+
## Future Improvements
29
+
- Auto-detect Equals Sign: Implement a computer vision model to detect the equals sign so that it doesn't have to be the last thing you drew. This will improve usability and accuracy in placing the answer.
0 commit comments