摘要: 第一个程序 LearnOpenGL 视口 glViewport函数前两个参数控制窗口左下角的位置。第三个和第四个参数控制渲染窗口的宽度和高度(像素)。也可以将视口的维度设置为比GLFW的维度小,这样以后所有的渲染都会在一个更小的窗口中,周围就可以显示一些其他的元素。 用户改变窗口大小时候,调整: v 阅读全文
posted @ 2022-08-17 14:18 IamIron-Man 阅读(63) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/qq_29007291/article/details/122499074 阅读全文
posted @ 2022-05-01 10:54 IamIron-Man 阅读(232) 评论(0) 推荐(0)
摘要: tf.tensor不带省略号的完整输出 tf.print(output['panoptic_pred'][0], summarize=100, output_stream='file://./errorlog_abc.txt') 第一个参数是tf.tensor summarize是省略号前显示多少个 阅读全文
posted @ 2022-04-02 10:47 IamIron-Man 阅读(365) 评论(0) 推荐(0)
摘要: 特别离谱,今天启动电脑准备调代码,突然ubuntu桌面的比例变小了,然后刷新率也下来了,一看NVIDIA X SERVER果然没东西了,可能是升级了Ubuntu的事? 重新装了一下NVIDIA驱动就好了,CUDA啥的还是正常的 ubuntu-drivers devices sudo ubuntu-d 阅读全文
posted @ 2022-03-23 19:33 IamIron-Man 阅读(268) 评论(0) 推荐(0)
摘要: 利用先验框获得建议框 建议框获得预测框 预测框获得语义分割结果 变成正方形, ROI Align利用bbox对feature maps进行截取,获得局部特征层 传给分类回归模型,再和feature map相加就成了最后的预测框 语义分割: 利用最后的特征框再对feature map进行一个截取,re 阅读全文
posted @ 2022-03-19 16:14 IamIron-Man 阅读(47) 评论(0) 推荐(0)
摘要: 本科 不发一篇像样的论文不毕业! 研究生 不发一篇CCF A 不毕业!!! Targets: TOG SIGRAPH IJCV CVPR ICCV 阅读全文
posted @ 2022-03-19 15:30 IamIron-Man 阅读(36) 评论(0) 推荐(0)
摘要: 永久方法: 改环境变量 sudo gedit ~/.bashrc 添加一行 export PYTHONPATH=$PYTHONPATH:/home/liujiahang/Research/deeplab2/models 注意,要写需要导入的模块的父目录 然后应用 source ~/.bashrc 最 阅读全文
posted @ 2022-03-05 11:04 IamIron-Man 阅读(56) 评论(0) 推荐(0)
摘要: https://github.com/northeastsquare/bts 打开目录 "tensorflow/include/tensorflow/core/util/gpu_kernel_helper.h" 然后编辑,把 #include "third_party/gpus/cuda/inclu 阅读全文
posted @ 2022-03-05 10:17 IamIron-Man 阅读(1032) 评论(0) 推荐(0)
摘要: https://tensorflow.google.cn/install/gpu 安装NVIDIA驱动 https://blog.csdn.net/wf19930209/article/details/81877822 使用命令行: ubuntu-drivers devices sudo ubunt 阅读全文
posted @ 2022-02-27 09:45 IamIron-Man 阅读(116) 评论(0) 推荐(0)
摘要: 问题:RT,下一组数据集的又变成RuntimeError: The size of tensor a (30) must match the size of tensor b (36) at non-singleton dimension 0,后面tensor b的值在不断变化 解决:全景分割里面初 阅读全文
posted @ 2022-01-25 11:16 IamIron-Man 阅读(3702) 评论(0) 推荐(0)