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

22
script/tst_convolve.js Executable file
View File

@@ -0,0 +1,22 @@
run("ijutils")
//Image Loading
ip = load_image("images/img.png", title="Image")
aux = grayscale(ip, in_place = false)
create_stack([ aux,
convolve(aux, KERNEL_BLUR, false),
convolve(aux, KERNEL_SHARPEN, false),
convolve(aux, KERNEL_SHARPEN_2, false),
convolve(aux, KERNEL_LIGHT, false),
convolve(aux, KERNEL_DARK, false),
convolve(aux, KERNEL_EDGE_DETECT, false),
convolve(aux, KERNEL_EDGE_DETECT_2, false),
convolve(aux, KERNEL_DIFFERENTIAL_EDGE_DETECT, false),
convolve(aux, KERNEL_PREWITT, false),
convolve(aux, KERNEL_SOBEL, false)
], undefined, title = "General Operations").show()