This commit is contained in:
2018-04-17 12:05:48 +02:00
parent 14edc0e745
commit 58a1260003
428 changed files with 41350 additions and 477 deletions
+25
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()