摘要: 博客测试 二级标题 三级标题 中文 测试 test ==中文== void setupUi(QWidget *TestQtOpenglClass) { if (TestQtOpenglClass->objectName().isEmpty()) TestQtOpenglClass->setObjec 阅读全文
posted @ 2022-06-30 09:55 Keep_Silent 阅读(21) 评论(0) 推荐(0) 编辑
摘要: FFmpeg latest version and old version: FFmpeg source code download(official) FFmpeg build download(official) FFmpeg build helper/tools(github) FFmpeg 阅读全文
posted @ 2022-06-25 15:57 Keep_Silent 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 名词解释 参见文章cnblogs-什么是SAD,SAE,SATD,SSD,SSE,MAD,MAE,MSD,MSE? PSNR的计算 较为标准的MSE计算公式和PSNR计算公式如下: 引用链接:CSDN-图像的峰值信噪比(PSNR)的计算方法 这里需要注意的是,PSNR的计算公式中,应该使用的是MAX 阅读全文
posted @ 2022-05-09 16:43 Keep_Silent 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 文章目录 计算机教育中缺失的一课原博文(弃)$1 概述和SHELL涉及到的一些指令 $2 SHELL工具和脚本SHELL脚本体验SHELL脚本编写函数一些关系符SHELL工具查看命令如何使用查找文件查找代码查找SHELL历史命令文件夹导航课后练习 $3 vim编辑器编辑模式一般模式编辑模式命令模式 阅读全文
posted @ 2022-04-10 19:33 Keep_Silent 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 文章目录 更新问题方案PyTorch文档模型对应,完全导入模型不完全对应只有部分对应A属于BB属于A 更新 2022.04.12更新 导入权重的用法相当普遍,但是可以导入吗?导入有什么影响? 首先一定是可以导入的,但是导入之后是否有效果?那应该分以下情况讨论。 网络模型完全对应:这种情况可以导入,而 阅读全文
posted @ 2022-03-28 16:16 Keep_Silent 阅读(323) 评论(0) 推荐(0) 编辑
摘要: 文章目录 查看当前版本python和torch、torchvisionCUDA ToolKit 和驱动版本cudnn和CUDA的对应关系cuda ToolKit 和pytorch版本GPU与CUDA版本 查看当前版本 import torch print('torch version') print 阅读全文
posted @ 2022-03-09 15:46 Keep_Silent 阅读(108) 评论(0) 推荐(0) 编辑
摘要: L1Loss from torch import nn loss = nn.L1Loss() 首先计算对应位置差值然后求绝对值累加除以总的像素数 MSELoss from torch import nn loss = nn.MSELoss() 首先计算对应位置差值然后求平方值累加除以总的像素数 Sm 阅读全文
posted @ 2022-03-06 16:19 Keep_Silent 阅读(11) 评论(0) 推荐(0) 编辑
摘要: torchsummary的使用 使用流程安装导入使用 官方说明demo 建议查看官方demo --> github 使用流程 安装 pip install torchsummary 导入 from torchsummary import summary 使用 # 参数说明 summary(your_ 阅读全文
posted @ 2022-01-23 11:13 Keep_Silent 阅读(573) 评论(0) 推荐(0) 编辑
摘要: libtorch处理多输入/多输出问题 准备工作多输入问题调整网络模型设置libtorch输入 多输出问题参考文章 一般处理多输入/多输出问题时,pytorch中容易处理;但是在libtorch中会出现一些问题。 这篇博客为记录用。 准备工作 首先加载多模型。 因为可能需要根据不同情况调用多个模型, 阅读全文
posted @ 2022-01-16 17:19 Keep_Silent 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 在 C++ 中加载 TorchScript 模型 推荐阅读官方文档: 如何保存模型 如何在c++中加载模型 pytorch的c++ api torchScript文档 以下内容基于官方文档写一些注释~~ 将pytorch模型转换为torch脚本 pytorch模型从python到c++是通过torc 阅读全文
posted @ 2022-01-13 17:02 Keep_Silent 阅读(55) 评论(0) 推荐(0) 编辑
摘要: Debug savept.py文件用来将gpu上训练的模型转换为cpu上推理可用的pt文件 以下为部分代码: import torch from model import NET print(torch.__version__) # 1.10.1+cpu model = NET device = t 阅读全文
posted @ 2022-01-13 16:18 Keep_Silent 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 保存和加载模型 只保存模型的参数 保存 torch.save(model.state_dict(),'xxx.pth') 加载 model = net() #首先要先定义网络模型 state_dict = torch.load('xxx.pth') # 读取pth文件中的参数 model.load_ 阅读全文
posted @ 2022-01-13 15:23 Keep_Silent 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 屏蔽链接 使用广告过滤插件,添加静态规则。 https://static.zhihu.com/heifetz/column.signflow.*.js *为通配符,该部分经常变动,单纯的js静态规则会导致规则失效,频繁添加 2021.12.6记录 阅读全文
posted @ 2021-12-06 17:09 Keep_Silent 阅读(7) 评论(0) 推荐(0) 编辑
摘要: B. Bross, J. Chen, S. Liu, and Y.-K. Wang. Versatile Video Coding (Draft 10). document Rep. JVET-S2001, Teleconference, Apr. 2020 「VVC-draft.pdf」,点击链接 阅读全文
posted @ 2021-11-28 13:51 Keep_Silent 阅读(16) 评论(0) 推荐(0) 编辑
摘要: C++标准约定: 某些整数类型的名称可以缩写,而不需要指定符号类型(signed)和变量类型(int),只需要指定非斜体部分来标识类型。斜体部分是可选的。 如signed short int可以被缩写为signed short, short int, short等 具体的大小取决于编译器的实现每组变 阅读全文
posted @ 2021-11-23 11:26 Keep_Silent 阅读(69) 评论(0) 推荐(0) 编辑
摘要: 目录 问题下载小文件下载大文件可能遇到的问题 问题 一般来说我们拿到的链接是这样的 https://drive.google.com/file/d/1HT1169L2U7VUJjCAjxTx0BYyaCVsJa8o/view 但是使用本机下载较慢,所以选择使用服务器来进行下载 1HT1169L2U7 阅读全文
posted @ 2021-11-18 19:34 Keep_Silent 阅读(54) 评论(0) 推荐(0) 编辑
摘要: BD-BR和BD-PSNR的计算 解释RD曲线(率失真曲线)BD-Rate or Bjontegaard Delta-Rate结论参考&辅助阅读补充关于参数的补充说明关于工具的补充说明关于excel使用的补充说明 版权说明:本文翻译自ottverse 更新:2022.3.31新增,少量补充 解释 B 阅读全文
posted @ 2021-11-12 16:57 Keep_Silent 阅读(349) 评论(0) 推荐(0) 编辑
摘要: 原文链接:链接 雷神博客:链接 只做一些修改,是为转载。 增加头文件并入main函数修改输出文件后缀名 在调用时,填写的四个参数 simplest_yuv420_split(“foreman_qcif.yuv”, 176, 144, 300); “foreman_qcif.yuv”:yuv文件名 1 阅读全文
posted @ 2021-10-29 17:21 Keep_Silent 阅读(9) 评论(0) 推荐(0) 编辑
摘要: https://media.xiph.org/video/derf/ ultravideo youtube http://trace.eas.asu.edu/yuv/ https://www.cablelabs.com/4k http://loki.disi.unitn.it/RAISE/downl 阅读全文
posted @ 2021-10-26 21:47 Keep_Silent 阅读(151) 评论(0) 推荐(0) 编辑
摘要: YUV播放器汇总 YUView–>GitHub 开源软件,免费,支持绝大部分功能 YUV Viewer–>官网 elecard公司产品,收费 新版基本上没有免费的,自己可以百度搜索旧版使用 YUVPlayer–>github 雷神作品 在GitHub下载后需要自行编译,评论区csdn提供了编译后直接 阅读全文
posted @ 2021-10-22 17:00 Keep_Silent 阅读(97) 评论(0) 推荐(0) 编辑
摘要: 0x00000709这种情况是在检查打印机设置无误后,连接时出现的,一般是出现在2021.10.13号之后,因为Windows10提供了一个KB补丁:KB5006670 常规设置参见: bilibili:link 补丁问题参见: 链接: link. 链接: link. 链接: link. 链接: l 阅读全文
posted @ 2021-10-19 21:28 Keep_Silent 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 参考: https://blog.csdn.net/ranghanqiao5058/article/details/93996377(百度网盘) https://blog.csdn.net/yangxiao_xiang/article/details/17193439(百度网盘) 现在已将序列上传至 阅读全文
posted @ 2021-10-17 10:37 Keep_Silent 阅读(70) 评论(0) 推荐(0) 编辑
摘要: Visual Studio2017项目路径设置 一般来说,在解决方案资源管理器视图中会有类似的图,VS将其分为引用、外部依赖、头文件等,但是这个和实际文件夹无关,只是IDE做了一个虚拟的划分。 首先是在VS路径下新建一个repo,方便git同步。 在repo建立完成后,可以得到.git .gitat 阅读全文
posted @ 2021-10-16 19:47 Keep_Silent 阅读(58) 评论(0) 推荐(0) 编辑
摘要: Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NlaSvc\Parameters\Internet] "ActiveDnsProbeContent"="131.10 阅读全文
posted @ 2021-10-12 18:38 Keep_Silent 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 头文件保护符&头文件中的“”和<> 头文件保护符#pragma once常规方法(#ifndef...) 头文件包含 参考: #pragma once wiki:include guard 头文件保护符 在C++中我们写头文件时经常需要#include来包含其他头文件。头文件定义的实体经常使用其他头 阅读全文
posted @ 2021-10-12 15:30 Keep_Silent 阅读(17) 评论(0) 推荐(0) 编辑
摘要: Table 1. Test sequences Class Sequence name Frame count Frame rate Bit depth Intra Random access Low-delay A1 Tango2 294 60 10 M M - A1 FoodMarket4 30 阅读全文
posted @ 2021-09-28 21:52 Keep_Silent 阅读(76) 评论(0) 推荐(0) 编辑
摘要: 解释Python Interpreter | PyCharm 配置Python Interpreter | PyCharm 阅读全文
posted @ 2021-09-28 16:45 Keep_Silent 阅读(90) 评论(0) 推荐(0) 编辑
摘要: # File I/O InputFile : haha.yuv #输入序列名 InputBitDepth : 8 # Input bitdepth InputChromaFormat : 420 # Ratio of luminance to chrominance samples FrameRat 阅读全文
posted @ 2021-09-27 18:42 Keep_Silent 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 1. 预备工作 ①VTM软件下载: 链接https://vcgit.hhi.fraunhofer.de/jvet/VVCSoftware_VTM/-/tree/masterhttps://vcgit.hhi.fraunhofer.de/jvet/VVCSoftware_VTM/-/tree/mast 阅读全文
posted @ 2021-09-27 16:02 Keep_Silent 阅读(128) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/walkinginthewind/article/details/13000431 找工作是一个长期准备的过程,突击是没什么效果的。准备时间越长,准备就越充分,就越容易拿到好的offer。我基本上从研究生一入学就一直在准备找工作的东西,看书、研究研究笔试面试 阅读全文
posted @ 2021-09-17 17:16 Keep_Silent 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 文章链接 【暂未找到原文】 进程是具有一定独立功能的程序关于某个数据集合上的一次运行活动,进程是系统进行资源分配和调度的一个独立单位. 线程是进程的一个实体,是CPU调度和分派的基本单位,它是比进程更小的能独立运行的基本单位.线程自己基本上不拥有系统资源,只拥有一点在运行中必不可少的资源(如程序计数 阅读全文
posted @ 2021-09-08 09:27 Keep_Silent 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 目录 数组 传统for循环 while循环 范围for循环 指针遍历 string 传统for循环 范围for循环 迭代器 指针遍历 vector~~ 数组 首先定义一个数组 int arr[5] = { 1,0,0,8,6 }; 传统for循环 for (int i = 0; i < 5; i++ 阅读全文
posted @ 2021-08-19 17:01 Keep_Silent 阅读(87) 评论(0) 推荐(0) 编辑
摘要: 目录 问题分析 代码分析 非const(以double为例,同样适用于int等整型) const类型 const非整型 const整型 constexpr类型(以double举例,整型变量同) 总结 补充 问题分析 问题:C++ primer 5e中文版 练习7.58 推荐阅读:https://ww 阅读全文
posted @ 2021-08-19 14:52 Keep_Silent 阅读(76) 评论(0) 推荐(0) 编辑
摘要: C++ primer 5e中练习7.48中 假定Sales_data的构造函数不是explicit的,则下述定义将执行什么样的操作? string null_isbn("999"); Sales_data item1(null_isbn); Sales_data item2("999999"); 如 阅读全文
posted @ 2021-08-18 22:51 Keep_Silent 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 看到一篇博客,很有意思,一起学习一下:https://blog.csdn.net/aerkate/article/details/7630600 首先贴上代码: /** * Copyright(c) * All rights reserved. * Date : 2021-07-31 * Descr 阅读全文
posted @ 2021-08-06 16:50 Keep_Silent 阅读(56) 评论(0) 推荐(0) 编辑
摘要: -fexec-charset=GBK -finput-charset=UTF-8 -finput-charset=GB2312 sublime中ctrl+shift+P后输入install 找到ConvertToUTF8后安装。 安装完成后即可自动转换格式,解决乱码问题。 阅读全文
posted @ 2021-07-25 21:51 Keep_Silent 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 由于位运算直接对内存数据进行操作,不需要转成十进制,因此处理速度非常快。 按位与(Bitwise AND),运算符号为& a&b 的操作的结果:a、b中对应位同时为1,则对应结果位也为1、 例如: 10010001101000101011001111000 & 111111100000000 101 阅读全文
posted @ 2021-07-25 20:54 Keep_Silent 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 打开"设置""编辑器"点击"缩写词"点击"新建"填入名字输入模板点击"确定"以保存在新建文件中输入关键字,如husky,使用快捷键ctrl+J来生成模板 Code::Blocks英文请看 博客:https://blog.csdn.net/lx_asymmetric/article/details/7 阅读全文
posted @ 2021-07-24 21:35 Keep_Silent 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 来源:博客园, 作者:SoaringLee_fighting 链接:https://www.cnblogs.com/SoaringLee/p/10532170.html 0、前言 视频编码中的码率控制是一种重要的编码技术,旨在保证码率平稳或者图像质量平稳,在实际应用中,码率控制应用很多,这里分析一下 阅读全文
posted @ 2021-07-15 09:15 Keep_Silent 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 原文链接:https://blog.csdn.net/weixin_42678511/article/details/108159713 阅读全文
posted @ 2021-07-09 17:10 Keep_Silent 阅读(7) 评论(0) 推荐(0) 编辑