相当于tensorflow 2.0中的tf.contrib.image.transform?

The equivalent of tf.contrib.image.transform in tensorflow 2.0?

tensorflow 2.0 中的 tf.contrib.image.transform 相当于什么?当我使用 tf_upgrade_v2 转换脚本时,出现错误:

ERROR: Using member tf.contrib.image.transform in deprecated module tf.contrib. tf.contrib.image.transform cannot be converted automatically. tf.contrib will not be distributed with TensorFlow 2.0, please consider an alternative in non-contrib TensorFlow, a community-maintained repository such as tensorflow/addons, or fork the required code.

没有对应的。一些操作是在 tensorflow 插件中实现的,尽管目前仅在 Linux 而不是 Windows 中可用。

这里是 link 到 tensorflow 插件: https://github.com/tensorflow/addons

这是他们的图像操作之一的 link,类似于 tf.contrib.image.transform: https://github.com/tensorflow/addons/blob/master/docs/tutorials/image_ops.ipynb

希望对您有所帮助。

因为 这似乎不是新 API 的一部分。

也许你可以看看 TensorFlow Graphics 图书馆。我暂时没有找到 transform 的任何等价物,但我认为这样的实现可以适合这个库。