转自:https://blog.csdn.net/xiaojun111111/article/details/61199130 图像分区 H.265将图像划分为“树编码单元(coding tree blocks, CTU)”,而不是像H.264那样的16×16的宏块。根据不同的编码设置,树编码块的尺 ...
分类:
其他好文 时间:
2018-12-13 21:48:12
阅读次数:
273
有部分用户表示WIN8.1/WIN10用了一段时间后会闪屏,这是因为系统自动 更新了显卡驱动的问题,建议驱动装好后把自动更新关闭了,就不会再内屏了。补丁可以由电脑管家空闲时自动打上,不用担心 WIN8.1系统:https://jingyan.baidu.com/article/9faa7231e7b ...
分类:
其他好文 时间:
2018-12-13 17:44:42
阅读次数:
181
<!DOCTYPE HTML><html><head><meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″/><title>混乱的html</title></head><body><h1>混乱的bad html</h1> ...
分类:
Web程序 时间:
2018-12-12 00:27:35
阅读次数:
166
参考: " bash: ./my_script: /bin/bash^M: bad interpreter: No such file or directory [duplicate]" 有的时候运行.sh文件会莫名其妙报错,报错信息如下: 解决办法:运行如下命令 之后再次运行sh文件即可 ...
分类:
其他好文 时间:
2018-12-11 17:26:55
阅读次数:
228
1.动态传参(重点) *, ** *, ** : 形参: 聚合 位置参数* -> 元组 关键字** -> 字典 实参: 打散 列表, 字符串, 元素 -> * 字典 -> ** 形参顺序(重点): 位置, *args, 默认值, **kwargs 无敌传参 def func(*args, **kwa ...
分类:
其他好文 时间:
2018-12-10 20:48:11
阅读次数:
230
1、Flask入门:介绍与简单使用 2、Flask框架:路由和视图 3、Flask的上下文管理:Werkzeug库的local模块 4、Flask组件之wtforms 5、Flask中信号的使用 6、Flask组件之Flask-SQLAlchemy 7、Flask组件之Flask-RESTful 8 ...
分类:
Web程序 时间:
2018-12-07 21:14:25
阅读次数:
185
Ignatius and the Princess IV "OK, you are not too bad, em... But you can never pass the next test." feng5166 says. "I will tell you an odd number N, a ...
分类:
其他好文 时间:
2018-12-07 15:58:40
阅读次数:
207
import matplotlib.pyplot as plt import numpy as np x=np.linspace(-3,3,50) y1=x*2+1 y2=x**2 plt.plot(x,y1) plt.figure(num=3,figsize=(8,5)) plt.plot(x,y... ...
分类:
其他好文 时间:
2018-12-06 20:13:02
阅读次数:
201
题目 题目描述 农民约翰有三个容量分别是A,B,C升的桶,A,B,C分别是三个从1到20的整数, 最初,A和B桶都是空的,而C桶是装满牛奶的。有时,农民把牛奶从一个桶倒到另一个桶中,直到被灌桶装满或原桶空了。当然每一次灌注都是完全的。由于节约,牛奶不会有丢失。 写一个程序去帮助农民找出当A桶是空的时 ...
分类:
其他好文 时间:
2018-12-05 21:52:58
阅读次数:
204
I/O重定向一.标准输入、标准输出、标准错误filedescriptors(FD,文件描述符或ProcessI/Ochannels):进程使用文件描述符来管理打开的文件[root@tianyun~]#ls/proc/$$/fd012340,1,and2,knownasstandardinput,standardoutput,andstandarderror二.输出重定向(覆盖,追加)正确输出:1&
分类:
其他好文 时间:
2018-12-05 21:49:51
阅读次数:
244