TenSorFlow-掩码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TenSorFlow-掩码相关的知识,希望对你有一定的参考价值。
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import tensorflow as tf?
x = tf.constant(2)
y = tf.constant(20)
z = tf.Variable([[6,1,2],[3,4,5],[0,0,0],[8,2,4]])
mask=z[:,0]>0
res = tf.boolean_mask(z,mask)
init_assign = tf.global_variables_initializer()
with tf.Session() as sess:
? ? sess.run(init_assign)
? ? print sess.run(res)
运行结果:
[[6 1 2]
?[3 4 5]
?[8 2 4]]
以上是关于TenSorFlow-掩码的主要内容,如果未能解决你的问题,请参考以下文章
如何为图像分割创建带有掩码的自定义图像数据集?(特别是对于 Tensorflow)
何恺明大神ICCV2017最佳论文Mask R-CNN的Keras/TensorFlow/Pytorch 代码实现
前沿 何恺明大神ICCV2017最佳论文Mask R-CNN的Keras/TensorFlow/Pytorch 代码实现