会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
MoonXu
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
37
38
39
40
41
42
43
44
45
···
61
下一页
2019年9月29日
tensorflow各版本下载地址
摘要: https://pypi.org/project/tensorflow-gpu/1.13.0/#files 把13改对你想要的版本
阅读全文
posted @ 2019-09-29 18:03 MoonXu
阅读(7536)
评论(0)
推荐(0)
2019年9月25日
windows下遍历文件夹下的文件
摘要: #include <io.h>#include <stdio.h>#include <iostream>using namespace std;int ReadStationID(char(*id)[50]){ struct _finddata_t c_file; long hFile; char
阅读全文
posted @ 2019-09-25 18:06 MoonXu
阅读(1821)
评论(0)
推荐(0)
2019年9月23日
vim快速到行尾
摘要: 快速到行尾A,或者End键(挨着Home键) 快速到第一行gg 快速到行首Home键,数字键的上面
阅读全文
posted @ 2019-09-23 14:46 MoonXu
阅读(21887)
评论(1)
推荐(0)
2019年9月19日
pthread_cond_wait
摘要: while(1) 33 { 34 mm* p = NULL; 35 pthread_mutex_lock(&mutex); 36 while(head == NULL) 37 pthread_cond_wait(&cond, &mutex); 38 p = head->next; 39 printf
阅读全文
posted @ 2019-09-19 01:25 MoonXu
阅读(1323)
评论(0)
推荐(0)
2019年9月18日
生产者与消费者
摘要: 生产者信号量producer(100); 消费者信号量consumer(0); 生产者是盛饭的,A桌子上有100个空碗就相当于有100个信号量。获得一个信号量相当于别人从桌子拿起一个碗递给他,他盛了1碗饭。A桌子总的碗数减1(A.acquire())A--。B桌子上有1碗可以吃(B.release(
阅读全文
posted @ 2019-09-18 23:56 MoonXu
阅读(400)
评论(0)
推荐(0)
qt打印输出到控制台
摘要: 创建工程的时候是QT Console Application 1.项目->run->Run in terminal 2.pro文件中添加 CONFIG +=console thread CONFIG +=console(这种没有验证)
阅读全文
posted @ 2019-09-18 22:42 MoonXu
阅读(6626)
评论(1)
推荐(0)
2019年9月12日
平台 DllRegisterServer调用失败
摘要: https://jingyan.baidu.com/article/295430f12ee8e80c7e0050b9.html
阅读全文
posted @ 2019-09-12 10:39 MoonXu
阅读(125)
评论(0)
推荐(0)
2019年9月11日
linux下编译安装SDL2和ffmpeg
摘要: 首先安装sudo apt-get install libsdl2-dev ./configure --prefix=/tools/SDL2 make && make install
阅读全文
posted @ 2019-09-11 10:29 MoonXu
阅读(3775)
评论(0)
推荐(0)
2019年9月6日
ffmpeg函数05__vcodec_decode_video2()
摘要: vcodec_decode_video2()的作用是解码一帧视频数据
阅读全文
posted @ 2019-09-06 00:22 MoonXu
阅读(304)
评论(0)
推荐(0)
2019年9月5日
ffmpeg函数04__v_register_output_format()
摘要: 注册复用器,编码器等的函数av_register_all() 注册编解码器avcodec_register_all() 注册复用器的函数是av_register_output_format()。 注册解复用器的函数是av_register_input_format()。 注册协议处理器的函数是ffu
阅读全文
posted @ 2019-09-05 22:39 MoonXu
阅读(353)
评论(0)
推荐(0)
上一页
1
···
37
38
39
40
41
42
43
44
45
···
61
下一页
公告