Adding non-linear image warping ops to tf.contrib.image
authorA. Unique TensorFlower <gardener@tensorflow.org>
Wed, 14 Mar 2018 21:47:40 +0000 (14:47 -0700)
committerTensorFlower Gardener <gardener@tensorflow.org>
Wed, 14 Mar 2018 21:51:50 +0000 (14:51 -0700)
commit5ac329bd86e400d47155e0c890669f4ee688771d
tree4670d471082272ef0cf8474ae86a5d903f8084d5
parentac8ce1fe760efff6585d790b784ec67255198879
Adding non-linear image warping ops to tf.contrib.image

New ops are:
tf.contrib.image.sparse_image_warp, tf.contrib.image.dense_image_warp, and tf.contrib.image.interpolate_spline.

PiperOrigin-RevId: 189089672
18 files changed:
tensorflow/contrib/image/BUILD
tensorflow/contrib/image/__init__.py
tensorflow/contrib/image/python/kernel_tests/dense_image_warp_test.py [new file with mode: 0644]
tensorflow/contrib/image/python/kernel_tests/interpolate_spline_test.py [new file with mode: 0644]
tensorflow/contrib/image/python/kernel_tests/sparse_image_warp_test.py [new file with mode: 0644]
tensorflow/contrib/image/python/kernel_tests/test_data/Yellow_Smiley_Face.png [new file with mode: 0644]
tensorflow/contrib/image/python/kernel_tests/test_data/Yellow_Smiley_Face_Warp-interp-1-clamp-0.png [new file with mode: 0644]
tensorflow/contrib/image/python/kernel_tests/test_data/Yellow_Smiley_Face_Warp-interp-1-clamp-1.png [new file with mode: 0644]
tensorflow/contrib/image/python/kernel_tests/test_data/Yellow_Smiley_Face_Warp-interp-1-clamp-4.png [new file with mode: 0644]
tensorflow/contrib/image/python/kernel_tests/test_data/Yellow_Smiley_Face_Warp-interp-2-clamp-0.png [new file with mode: 0644]
tensorflow/contrib/image/python/kernel_tests/test_data/Yellow_Smiley_Face_Warp-interp-2-clamp-1.png [new file with mode: 0644]
tensorflow/contrib/image/python/kernel_tests/test_data/Yellow_Smiley_Face_Warp-interp-2-clamp-4.png [new file with mode: 0644]
tensorflow/contrib/image/python/kernel_tests/test_data/Yellow_Smiley_Face_Warp-interp-3-clamp-0.png [new file with mode: 0644]
tensorflow/contrib/image/python/kernel_tests/test_data/Yellow_Smiley_Face_Warp-interp-3-clamp-1.png [new file with mode: 0644]
tensorflow/contrib/image/python/kernel_tests/test_data/Yellow_Smiley_Face_Warp-interp-3-clamp-4.png [new file with mode: 0644]
tensorflow/contrib/image/python/ops/dense_image_warp.py [new file with mode: 0644]
tensorflow/contrib/image/python/ops/interpolate_spline.py [new file with mode: 0644]
tensorflow/contrib/image/python/ops/sparse_image_warp.py [new file with mode: 0644]