diff options
author | Merov Linden <merov@lindenlab.com> | 2014-01-21 13:05:54 -0800 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2014-01-21 13:05:54 -0800 |
commit | 6c630b73a825befb6eeef66d7ed0063b1b891df7 (patch) | |
tree | e3ba95bc7a6668a5db9ae3f9193c9c2345745bd8 /indra/integration_tests | |
parent | d14392f55f9c47ba121d5470a3deb153a16b1cfb (diff) |
ACME-1240 : Implement convolve filter for 3x3 kernels. Implements sharpen, blur and edge detection as examples and tests.
Diffstat (limited to 'indra/integration_tests')
-rw-r--r-- | indra/integration_tests/llimage_libtest/blur.xml | 7 | ||||
-rw-r--r-- | indra/integration_tests/llimage_libtest/edges.xml | 24 | ||||
-rw-r--r-- | indra/integration_tests/llimage_libtest/sharpen.xml | 7 |
3 files changed, 38 insertions, 0 deletions
diff --git a/indra/integration_tests/llimage_libtest/blur.xml b/indra/integration_tests/llimage_libtest/blur.xml new file mode 100644 index 0000000000..addd056855 --- /dev/null +++ b/indra/integration_tests/llimage_libtest/blur.xml @@ -0,0 +1,7 @@ +<llsd> + <array> + <array> + <string>blur</string> + </array> + </array> +</llsd> diff --git a/indra/integration_tests/llimage_libtest/edges.xml b/indra/integration_tests/llimage_libtest/edges.xml new file mode 100644 index 0000000000..a66b81d01e --- /dev/null +++ b/indra/integration_tests/llimage_libtest/edges.xml @@ -0,0 +1,24 @@ +<llsd> + <array> + <array> + <string>gradient</string> + </array> + <array> + <string>blur</string> + </array> + <array> + <string>linearize</string> + <real>0.0</real> + <real>1.0</real> + <real>1.0</real> + <real>1.0</real> + </array> + <array> + <string>contrast</string> + <real>2.0</real> + <real>1.0</real> + <real>1.0</real> + <real>1.0</real> + </array> + </array> +</llsd> diff --git a/indra/integration_tests/llimage_libtest/sharpen.xml b/indra/integration_tests/llimage_libtest/sharpen.xml new file mode 100644 index 0000000000..6d3f9ae1a2 --- /dev/null +++ b/indra/integration_tests/llimage_libtest/sharpen.xml @@ -0,0 +1,7 @@ +<llsd> + <array> + <array> + <string>sharpen</string> + </array> + </array> +</llsd> |