安详鸡

文章
7
资源
1
加入时间
3年0月8天

计算机专业词汇

Metrics这个单词总是反复查词典,总觉得翻译出来的语义不对。记录一下,reportingdashmetrics意思是上报dash的指标,此处metric可理解为一些指标数据,如ip地址,端口号,连接服务器耗时等。metric还有标准,度量的意思。如路由表下的metric表示可靠性,延迟,带宽等指标或标准bound范围,限制,跳跃的意思。The duration o...

FFmpeg Encode(编码)

首发地址,会更错本文来自官方例子doc/examples/encode_audio.c 和 doc/examples/encode_video.c。FFmpeg编码流程其中,AVFormatContext、AVPacket等重要的结构体请看:FFmpeg重要结构体(转自雷神) 。官方例子【Audio】/** * @author 秦城季 * @email xhunmon@126.com * @Blog https://qincji.gitee.io * @date 2021/01/07

matlab imfilter函数,Matlab的imfilter函数用法详解

Matlab的imfilter函数用法功能:对任意类型数组或多维图像进行滤波。用法:B = imfilter(A,H)B = imfilter(A,H,option1,option2,...)或写作g = imfilter(f, w, filtering_mode, boundary_options, size_options)其中,f为输入图像,w为滤波掩模,g为滤波后图像。filtering_...