摘要:
https://pypi.org/project/tensorflow-gpu/1.13.0/#files 把13改对你想要的版本 阅读全文
摘要:
#include <io.h>#include <stdio.h>#include <iostream>using namespace std;int ReadStationID(char(*id)[50]){ struct _finddata_t c_file; long hFile; char 阅读全文
摘要:
快速到行尾A,或者End键(挨着Home键) 快速到第一行gg 快速到行首Home键,数字键的上面 阅读全文
摘要:
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 阅读全文
摘要:
生产者信号量producer(100); 消费者信号量consumer(0); 生产者是盛饭的,A桌子上有100个空碗就相当于有100个信号量。获得一个信号量相当于别人从桌子拿起一个碗递给他,他盛了1碗饭。A桌子总的碗数减1(A.acquire())A--。B桌子上有1碗可以吃(B.release( 阅读全文
摘要:
创建工程的时候是QT Console Application 1.项目->run->Run in terminal 2.pro文件中添加 CONFIG +=console thread CONFIG +=console(这种没有验证) 阅读全文
摘要:
https://jingyan.baidu.com/article/295430f12ee8e80c7e0050b9.html 阅读全文
摘要:
首先安装sudo apt-get install libsdl2-dev ./configure --prefix=/tools/SDL2 make && make install 阅读全文
摘要:
vcodec_decode_video2()的作用是解码一帧视频数据 阅读全文
摘要:
注册复用器,编码器等的函数av_register_all() 注册编解码器avcodec_register_all() 注册复用器的函数是av_register_output_format()。 注册解复用器的函数是av_register_input_format()。 注册协议处理器的函数是ffu 阅读全文