Update
This commit is contained in:
@@ -14,14 +14,14 @@ ip4 = load_image("images/img4.png", title="Square")
|
||||
|
||||
#Basic operaions creation, copying, padding, saving
|
||||
resized = resize(ip2, 300,300)
|
||||
save_image(resized,get_context().setup.expandPath("~/resized.tiff") ,"tiff")
|
||||
save_image(resized,expand_path("~/resized.tiff") ,"tiff")
|
||||
crop=sub_image(ip2,10,20,50,30)
|
||||
bin_im = binning(ip2,2)
|
||||
new_im = new_image(256, 256, "color")
|
||||
copy_image_to(bin_im, new_im, 20, 20)
|
||||
pad_im = pad_image(ip2, 1, 2, 3, 4, Color.RED)
|
||||
stack=create_stack([ip2,resized,crop, bin_im, new_im, pad_im], title = "Basic Functions")
|
||||
save_image(stack,get_context().setup.expandPath("~/stack.tiff") ,"tiff")
|
||||
save_image(stack,expand_path("~/stack.tiff") ,"tiff")
|
||||
stack.show()
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user