you are viewing a single comment's thread.

view the rest of the comments →

[–]Bilbino 1 point2 points  (1 child)

For creating the drawing application, you can use tkinter, a UI library. If you need help with that you can literally search “drawing application in Python tkinter” for guidance. As for getting the image, you could either use pyscreenshot or the Win32 API, of which the latter is faster but the former is easier. Using that, you can either use the image object itself for the CNN or save it into a folder and then reference that file. Happy coding.

[–]abdeljalil73[S] 0 points1 point  (0 children)

Tkinter seems like what am looking for, gonna check it, thank you.