New ScreenPanel

This commit is contained in:
2018-01-19 10:56:53 +01:00
commit ae4d621609
580 changed files with 46598 additions and 0 deletions

25
script/image12.py Executable file
View File

@@ -0,0 +1,25 @@
run("pip")
orig = load_image("{data}/img/img2.png")
orig = resize(orig, 300,200)
grayscale(orig)
images=[]
for i in range (20):
images.append(orig.duplicate())
op_const(orig, "multiply", 0.9)
stack=create_stack(images)
stack.show()
r1 = reslice(stack, start_at="Left")
r2 = reslice(stack, start_at="Top")
r1.show()
r2.show()
#x=new_image(800, 600, image_type="byte")
#copy_image_to(orig, x, 100, 200)
#x.show()