随笔分类 - 算法
菜鸡收集一些算法
摘要:看到其中没有yuv420p,所以我们需要自己添加枚举,但是怎么定义yuv420p网上找不到具体的方法, https://www.fourcc.org/yuv.php 这个位置有规范了yuv的fourcc code 须知 yuv420p 又分为yu12 和yv12 yu12 在安卓下双称I420 yv
阅读全文
摘要:public static class BinarySearchHelper { public static int BinarySearch(int[] items, int find) { int start = 0; int end = items.Length - 1; ...
阅读全文