So I am displaying an image using canvas in my Tkinter window. Now I have a button which calculates certain parameters and I want that to be displayed dynamically over the image. So basically after each calculation, the annotations should change to new parameters.
e.g. Consider that I am calculating column dimensions, and after each calculation, I have to display the dimensions marked on the respective sides of the column image that I have in my Tkinter window.
So is it possible to annotate the image dynamically and if not, is there any other way to perform this task?