Latex论文写作 Posted on 2019-02-15 | Edited on 2019-02-21 | Comments: 推荐Latex书写工具 画图工具:https://www.draw.io/ 画表格工具:https://tablesgenerator.com/ 在线写文档工具:https://www.overleaf.com 将数学公式转换为Latex 使用MathType 编辑数学公式 选项-剪切和复制 ... Read more »
Tensorflow部分层初始化参数以及finetune Posted on 2019-01-10 | Edited on 2019-01-17 | In 深度学习 | Comments: 本文在 tensorflow+slim 中实现基于原始卷积网络扩展增加新的层,然后finetune新的网络层参数。 1,锁定部分变量(网络层),只finetune另一部分变量(网络层)首先重置默认图,防止出现意外错误 1tf.reset_default_graph() # 重置默认图。 定义网络操 ... Read more »
修改Tensorflow张量指定元素值 Posted on 2019-01-10 | Comments: 引用: https://blog.csdn.net/Strive_For_Future/article/details/82426015 https://blog.csdn.net/HowardWood/article/details/79587487 Read more »
Tensorboard监控slim网络中间层输出 Posted on 2019-01-08 | In 深度学习 | Comments: 使用tensorboard查看中间层输出结果一般需要在源程序中添加以下几条命令 1: 12summary_op = tf.summary.merge_all()summary_writer = tf.summary.FileWriter('./mid_result', tf.get_default_ ... Read more »
BayerRaw与RGB的转换 Posted on 2018-11-18 | Edited on 2018-12-09 | In 图像处理 | Comments: 代码:code本文采取sony拍摄的arw格式图像测试,测试图像在论文中下载: bayer图像格式由于人眼对GREEN颜色的感知更为强烈,所以一般raw 格式的图像每个2*2矩阵中,都有两个G分量,一个R以及一个B分量,G分量的排列方式可以有所不同,如下图: 对于转换为RGB格式,一般采取插值的方法 ... Read more »