Reading multiple pictures to build multiple canvas
Is there a way to build multiple canvas? I am thinking of something like this
for i in range(33):
'COR2_'+str(i) = canvas()
path = pool['Folie'+str(i+3)+'.tif']
'COR2_'+str(i).image(path)
'COR2_'+str(i).present()
Maybe it's idiotic to think like that. However, it would make the code so much shorter ![]()
Comments
solved