在mask_rcnn常用的函数

1  tf.cast():    https://blog.csdn.net/dss875914213/article/details/86558407

2 tf.gather :               https://blog.csdn.net/guotong1988/article/details/53172882 

3 tf.boolean_mask:            https://blog.csdn.net/m0_37393514/article/details/81674489

4  tf.where():                https://blog.csdn.net/ustbbsy/article/details/79564828

5 tf.gather_nd()       多维上进行索引 https://blog.csdn.net/Cyiano/article/details/76087747

a = tf.Variable([[1,2,3,4,5], [6,7,8,9,10], [11,12,13,14,15]])
index_a = tf.Variable([[0,2], [0,4], [2,2]])

print(sess.run(tf.gather_nd(a, index_a)))

# [ 3 5 13]

6 tf.image.crop_and_resize的使用  ROI Pooling层:https://blog.csdn.net/m0_38024332/article/details/81779544

 

最新文章

  1. 3357: [Usaco2004]等差数列
  2. [OpenCV] 4、图像叠加 addWeighted
  3. 指定winfrom程序配置文件
  4. Expression<Func<T,TResult>>和Func<T,TResult>
  5. 在其他的电脑上配置绿色Jre+tomcat运行环境
  6. SharePoint 2013版本功能对比介绍
  7. 重载public Primes ():this(2,100)
  8. 传感器 Sensor 加速度【示例】
  9. 网络资源(6) - EJB视频
  10. sudo命令出错 must set be suid
  11. sql 经典面试题
  12. 入门Webpack
  13. [Codeforces 922E]Birds
  14. 如何删除github上的某个文件夹
  15. 网络二十四题 之 P2756 飞行员配对方案问题
  16. 【sock_stream和sock_dgram】、 【AF_INET和AF_UNIX】
  17. 【SDOI2014】向量集
  18. Oracle 中 nvl、nvl2、nullif、coalesce、decode 函数的用法详解
  19. 隔离级别简介 (mysql)
  20. node压缩文件夹

热门文章

  1. Redis混合存储-冷热数据识别与交换
  2. C语言备忘录——static
  3. 操作数据库的SqlHelper类
  4. 洛谷 P1934 封印
  5. 17.swoole学习笔记--异步mysql操作
  6. 第一部分 JavaScript语言核心(四)
  7. 微信公众号开发之内网映射外网natapp安装(一)
  8. 当DIV内出现滚动条,fixed实效怎么办?
  9. BZOJ:2186: [Sdoi2008]沙拉公主的困惑
  10. 完美的代价(swap成回文串、贪心)