上一页 1 2 3 4 5 6 ··· 25 下一页
该文被密码保护。 阅读全文
posted @ 2022-12-02 14:28 洛笔达 阅读(0) 评论(0) 推荐(0) 编辑
摘要: glm 中乘法和求逆运算的结果 // 5 6 * 1 3 // 2 4 glm::vec2 x(5, 6); glm::mat2 m(1, 2, 3, 4); //memory locates 1 2 3 4 too printf("X: %.2f %.2f\n", x[0], x[1]); pri 阅读全文
posted @ 2022-10-27 20:07 洛笔达 阅读(200) 评论(0) 推荐(0) 编辑
摘要: define 的骚用法 可以实现模板 define 字符串连接以及变量名分段联结用法 #define A(x) test_##x A(int8) --> test_int8 test_int8(1) #define B(x) #@x B(t) --> 't' #define C(x) #x C(te 阅读全文
posted @ 2022-09-27 12:26 洛笔达 阅读(601) 评论(0) 推荐(0) 编辑
摘要: //Not used on OSX - frame is never copied. static int copy_avframe_to_pixel_buffer(AVCodecContext *avctx, const AVFrame *frame, CVPixelBufferRef cv_im 阅读全文
posted @ 2022-09-27 11:57 洛笔达 阅读(309) 评论(0) 推荐(0) 编辑
摘要: https://learn.microsoft.com/en-us/windows/win32/api/dxgi1_6/nf-dxgi1_6-idxgioutput6-getdesc1 dxgi1_6.h HRESULT GetDesc1( [out] DXGI_OUTPUT_DESC1 *pDes 阅读全文
posted @ 2022-09-22 17:29 洛笔达 阅读(254) 评论(0) 推荐(0) 编辑
摘要: Fn + F11 快速回到桌面Control + Command + Q 锁屏Command + Shift + 4 截图插件。默认保存在桌面 command m 当前窗口最小化option command + esc 打开强制结束界面 alt+command+f 替换 阅读全文
posted @ 2022-09-22 15:20 洛笔达 阅读(359) 评论(0) 推荐(0) 编辑
摘要: static const struct { uint32_t cv_fmt; bool full_range; enum AVPixelFormat pix_fmt; } cv_pix_fmts[] = { { kCVPixelFormatType_420YpCbCr8Planar, false, 阅读全文
posted @ 2022-09-22 11:50 洛笔达 阅读(97) 评论(0) 推荐(0) 编辑
摘要: 电视起源于美国,刚开始只有直播电视,录播电视是后来慢慢兴起的。人们需要想办法让片场的电视摄像机和家中的电视机同步起来。当时唯一能达成这个目标的技术就是和电力干线同步,而美国的电力干线频率是60 HZ,所以最初的电视帧率就被设定为30 HZ或30 fps。 彩色电视问世时,为了传递彩色信号,人们做了一 阅读全文
posted @ 2022-05-25 18:15 洛笔达 阅读(490) 评论(0) 推荐(0) 编辑
摘要: # 先说好吃的西红柿品种 部分内容转载自塔莎的花园 https://www.bilibili.com/video/BV1MK41157Ed ## 小番茄 - 金太阳 【矮生番茄, 新手友好】 ![](https://img2023.cnblogs.com/blog/1135673/202305/11 阅读全文
posted @ 2022-03-18 00:46 洛笔达 阅读(2047) 评论(0) 推荐(0) 编辑
摘要: $ ./configure -h Usage: configure [options] Options: [defaults in brackets after descriptions] Help options: --help print this message --quiet Suppres 阅读全文
posted @ 2022-03-05 11:38 洛笔达 阅读(869) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 25 下一页