网站首页 站内搜索

搜索结果

查询Tags标签: pref,共有 3条记录
  • python中使用time.pref_counter()精确计时

    time.pref_counter()返回一个CPU级别的精确时间值,以秒为单位。 它通常用于测量某段程序的运行时间,因此取两次调用pref_counter()的差值才有意义。 import timetime_start = time.perf_counter() for i in range(100000):a = 0 time_end = time.perf_counter()time_con…

    2021/11/2 22:40:12 人评论 次浏览
  • python中使用time.pref_counter()精确计时

    time.pref_counter()返回一个CPU级别的精确时间值,以秒为单位。 它通常用于测量某段程序的运行时间,因此取两次调用pref_counter()的差值才有意义。 import timetime_start = time.perf_counter() for i in range(100000):a = 0 time_end = time.perf_counter()time_con…

    2021/11/2 22:40:12 人评论 次浏览
  • FFmpeg命令

    ffmpeg -pix_fmt nv12 -s 1920x1080 -i input.yuv -vf scale=1280x720 -c:v rawvideo -pix_fmt nv12 -y output.yuv 提取YUV分量ffmpeg -s 1280x720 -pix_fmt nv12 -i output.yuv -filter_complex "extractplanes=y+u+v[y][u][v]" -an -map [y] "y.yuv&qu…

    2021/4/11 18:56:26 人评论 次浏览
扫一扫关注最新编程教程