- 博客(4382)
- 收藏
- 关注
转载 tensorflow各版本下载地址
https://pypi.org/project/tensorflow-gpu/1.13.0/#files把13改对你想要的版本转载于:https://www.cnblogs.com/xpylovely/p/11609250.html
2019-09-29 18:03:00 5196
转载 摘:为什么老毛桃初始化后有了两个分区?
为什么老毛桃初始化后有了两个分区?答案:制作出来的启动盘支持uefi启动就要有uefi分区。同时也是为了支持两种启动方式,传统mbr和uefi,提高兼容性。原文:http://ask.zol.com.cn/x/5938014.html转载于:https://www.cnblogs.com/xingyunblog/p/11588737.html...
2019-09-26 08:41:00 1701
转载 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 *p = NULL; int i = 0; /* Fi...
2019-09-25 18:06:00 971
转载 vim快速到行尾
快速到行尾A,或者End键(挨着Home键)快速到第一行gg快速到行首Home键,数字键的上面转载于:https://www.cnblogs.com/xpylovely/p/11572330.html
2019-09-23 14:46:00 1920
转载 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 = hea...
2019-09-19 01:25:00 154
转载 生产者与消费者
生产者信号量producer(100);消费者信号量consumer(0);生产者是盛饭的,A桌子上有100个空碗就相当于有100个信号量。获得一个信号量相当于别人从桌子拿起一个碗递给他,他盛了1碗饭。A桌子总的碗数减1(A.acquire())A--。B桌子上有1碗可以吃(B.release())B++。消费者是吃饭的,B桌子多少碗可以吃的饭就是多少个信号量,一开始B桌子上...
2019-09-18 23:56:00 172
转载 qt打印输出到控制台
创建工程的时候是QT Console Application1.项目->run->Run in terminal2.pro文件中添加CONFIG +=console threadCONFIG +=console(这种没有验证)转载于:https://www.cnblogs.com/xpylovely/p/11546127.html...
2019-09-18 22:42:00 1122
转载 平台 DllRegisterServer调用失败
https://jingyan.baidu.com/article/295430f12ee8e80c7e0050b9.html转载于:https://www.cnblogs.com/xpylovely/p/11510622.html
2019-09-12 10:39:00 354
转载 linux下编译安装SDL2和ffmpeg
首先安装sudo apt-get install libsdl2-dev./configure --prefix=/tools/SDL2make && make install$ sudo add-apt-repository ppa:mc3man/trusty-media$ sudo apt-get update$ sudo apt-get i...
2019-09-11 10:29:00 644
转载 pickle导入变量AttributeError的解决方案
问题描述:AttributeError: 'module' object has no attribute ‘attr1’ 解决方案:# 找到报错的文件a.pyfrom a import attr1 转载于:https://www.cnblogs.com/sddai/p/11496515.html...
2019-09-10 11:31:00 2582
转载 Office Tool Plus 安装Office
Office Tool Plus 是一款集office 卸载安装管理,激活等多功能于一体的神器。官网:https://otp.landian.vip/en-us/下载安装值得注意的是Retail 开头的必须选择否则会报错。。。如果非要选择Volume,那么Module 必须切换成Office Tool...
2019-09-09 23:17:00 5571
转载 取消Vue项目 url地址里的 #符号
在 router文件夹下的 index.js 里面 加上history转载于:https://www.cnblogs.com/wangshishuai/p/11474876.html
2019-09-06 15:02:00 294
转载 ffmpeg函数05__vcodec_decode_video2()
vcodec_decode_video2()的作用是解码一帧视频数据转载于:https://www.cnblogs.com/xpylovely/p/11470640.html
2019-09-06 00:22:00 167
转载 ffmpeg函数04__v_register_output_format()
注册复用器,编码器等的函数av_register_all()注册编解码器avcodec_register_all()注册复用器的函数是av_register_output_format()。注册解复用器的函数是av_register_input_format()。注册协议处理器的函数是ffurl_register_protocol()。转载于:https://www....
2019-09-05 22:39:00 190
转载 ffmpeg函数03__av_seek_frame()
当需要把视频跳转到N秒的时候可以使用下面的方法:int64_t timestamp = N * AV_TIME_BASE;av_seek_frame(fmtctx, index_of_video, timestamp, AVSEEK_FLAG_BACKWARD);av_get_channel_layout_nb_channels()和av_get_default_cha...
2019-09-05 22:29:00 233
转载 ffmpeg函数02__swr_alloc_set_opts()
SwrContext *swr_alloc(void); // 分配重采样的上下文。SwrContext *swr_alloc_set_opts(struct SwrContext *s, int64_t out_ch_layout, AVSampleFormat out_sample_fmt, int out_sample_rate, int64_t in_ch_layout...
2019-09-05 22:20:00 3272
转载 ffmpeg函数01__swr_convert()
swr_convert()针对每一帧音频的处理。把一帧帧的音频作相应的重采样int swr_convert(struct SwrContext *s, uint8_t **out, int out_count, const uint8_t **in, int in_count);参数1:音频重采样的上下文参数2:输出的指针。传递的输出的数组参数3:输出的样本数量,不是...
2019-09-05 22:19:00 392
转载 Vue + Element 表格循环渲染
<el-table-column label="查看职位" width="250"> <slot slot-scope="scope"> <el-link style="padding:0 5px" v-for="(v,index) in scope.ro...
2019-09-05 12:24:00 901
转载 在ElementUI的 MessageBox 弹框 进行api接口请求
confirmDelete(row) { let that = this; let data = { id: row }; that.$axios .post(api.destroymodule, data) .then(res => { if...
2019-09-04 16:45:00 3734
转载 Vue 报错 (Emitted value instead of an instance of Error) the "scope" attribute for scoped slots have ...
查找出template 标签上有个scope 属性 给改为slot-scope转载于:https://www.cnblogs.com/wangshishuai/p/11459203.html
2019-09-04 15:01:00 3982
转载 子组件 修改父组件的属性值
父组件调用子组件 <base_picker v-show="show2" :sendList="show2" @sendMessage="message"></base_picker>子组件 用 props 获取父组件传递的值使用 $emit 将修改的值传递给父组件 props:['sendList','lable_list']...
2019-09-04 14:45:00 429
转载 typing类型注解库
简介动态语言的灵活性使其在做一些工具,脚本时非常方便,但是同时也给大型项目的开发带来了一些麻烦。自python3.5开始,PEP484为python引入了类型注解(type hints),虽然在pep3107定义了函数注释(function annotation)的语法,但仍然故意留下了一些未定义的行为.现在已经拥有许多对于静态类型的分析的第三方工具,而pep48...
2019-09-04 14:03:00 544
转载 程序中修改字体颜色
https://blog.csdn.net/leixiaohua1020/article/details/44243155转载于:https://www.cnblogs.com/xpylovely/p/11458531.html
2019-09-04 13:06:00 156
转载 服务器做磁盘阵列参考资料
公司需要让我们给服务器做磁盘阵列,搜集一些资料以作备用。Dell服务器做磁盘阵列Dell服务器设置Raid5如何使用戴尔PERC H200 阵列卡创建磁盘阵列Dell 服务器做磁盘阵列DELL服务器RAID磁盘阵列配置图解7. DELL 服务器操作手册转载于:https://www.cnblogs.com/xingyunblog/p/11456734...
2019-09-04 07:20:00 162
转载 安装VisualStudio2015
在Windows7中安装VisualStudio2015转载请注明来源 https://www.cnblogs.com/tashi-net/p/11440201.html1.将VisualStudio2015安装光盘插入光驱。在“我的电脑”(Win7中的我的电脑叫“计算机”)中打开光盘内容。2.双击vs_enterprise,启动安装程序,出现如下界面。3.选择默...
2019-08-31 19:50:00 554
转载 qt中不能编辑
下载的qt代码不能编辑,原因是文本编码是GB2312,现在选择的是utf-8,把编码改过来就可以编辑了转载于:https://www.cnblogs.com/xpylovely/p/11435722.html
2019-08-30 16:33:00 902
转载 1、Flutter---配置
1、将以下变量添加到用户变量上 变量名:PUB_HOSTED_URL 变量值:https://pub.flutter-io.cn 变量名:FLUTTER_STORAGE_BASE_URL 变量值:https://storage.flutter-io.cn2、官方文档--系统要求操作系统: Windows 7 或更高版本 (64-bit)磁盘...
2019-08-30 11:51:00 98
转载 灰度共生矩阵(Gray-level Co-occurrence Matrix,GLCM),矩阵的特征量
又叫做灰度共现矩阵Prerequisites概念计算方式对于精度要求高且纹理细密的纹理分布,我们取像素间距为d=1d=1,以下是方向的说明:我们来看,matlab内置工具箱中的灰度共生矩阵的生成函数graycomatrix(gray-level co-occurrence matrix)对方向的说明:如上图所示,方...
2019-08-29 20:18:00 1081
转载 几何不变矩--Hu矩
【图像算法】图像特征:-------------------------------------------------------------------------------------------------------------------------------一 原理 几何矩是由Hu(Visualpatternrecognitionbymom...
2019-08-29 17:04:00 940
转载 程序员的自我修养
ar -t /usr/lib/x86_64-linux-gnu/libc.a 查看libc.a中包含的目标文件visual c++提供类似的功能lib.exear -x /usr/lib/x86_64-linux-gnu/libc.a 将libc.a解压到当前目录默认的链接脚本是在/usr/lib/x86_64-linux-gnu/ldscripts/下ld -verbo...
2019-08-28 09:51:00 131
转载 crt0.o
crt1.o, crti.o, crtbegin.o, crtend.o, crtn.o 等目标文件和daemon.o(由我们自己的C程序文件产生)链接成一个执行文件。前面这5个目标文件的作用分别是启动、初始化、构造、析构和结束,它们通常会被自动链接到应用程序中。例如,应用程序的main()函数就是通过这些文件来调用的。如果不进行标准的链接的话(编译选项-nostdlib),我们就必须指...
2019-08-26 14:33:00 629
转载 windows开启ftp服务
1.启动或关闭windows--》internet information services-->ftp服务器 选中2.此电脑右键--》管理--》服务和应用程序--》IIS管理器--》网站右键--》添加ftp站点3.右键站点--》管理ftp站点--》启动4.点击站点--》ftp身份验证--》基本身份验证--》启用--》匿名身份验证--》启用5.ftp://ip大...
2019-08-24 14:49:00 577
转载 fwrite()
fwrite(),最好写strlen()个字节,否则可能有乱码转载于:https://www.cnblogs.com/xpylovely/p/11402079.html
2019-08-23 19:03:00 177
转载 vim替换
:%s/mxmlElementGetAttr/xml_get_attr/g:{作用范围}s/{目标}/{替换}/{替换标志}例如:%s/foo/bar/g会在全局范围(%)查找foo并替换为bar,所有出现都会被替换(g)。作用范围作用范围分为当前行、全文、选区等等。当前行::s/foo/bar/g全文:...
2019-08-23 13:52:00 86
转载 fwrite()
fwrite()不用写字符串结束标志fwrite(buf, 1, strlen(buf), fp);//正确fwrite(buf, 1, strlen(buf) + 1, fp);//正确转载于:https://www.cnblogs.com/xpylovely/p/11395968.html
2019-08-22 18:02:00 400
转载 Vant轮播预览图片
<van-swipe :autoplay="10000" class="swiper"> <van-swipe-item v-for="(image, index) in images" :key="index" > <img :src="image" @click="Previ...
2019-08-22 16:50:00 1210
转载 pthread_exit
main中调用pthread_exit(),这样进程就必须等待所有的线程终止后才能退出如果你希望初始线程终止时,其他线程继续执行,需要在初始线程中调用pthread_exit(),而不是从main()函数中返回。转载于:https://www.cnblogs.com/xpylovely/p/11393102.html...
2019-08-22 11:03:00 167
转载 一篇文章看懂互联网内部运作模式
(最近过于忙碌一直没更新,应邀同学要求,特此写了互联网职业的各个环节,大家可相互学习下)在这篇文章里,主要谈下互联网的职业和关联性。身为一个互联网人有必要对此进行了解,这样的好处在于切身去了解相应环境下的事物,看明白自己身在何处,产生的价值点在哪里,如何协调和沟通,以及是否可以进一步提升等。(备注:图示产品、技术、运营不是三种具体职业,而是三种职业形态汇总...
2019-08-21 22:06:00 135
转载 金丝雀
*** stack smashing detected ***: <unknown> terminatedAborted (core dumped)tack-Smashing Protector”机制(在数组后插入一些金丝雀(Canary, 因为大家在矿井作业时,会用金丝雀来预警,如果金丝雀死了,那证明有毒气),在函数执行完成返回之前会检查一下Canary,如果canar...
2019-08-21 21:28:00 422
转载 Flexible Single Master Operations (FSMO)
Certain domain and enterprise-wide operations that are not good for multi-master updates are performed by a single domain controller in an Active Directory domain or forest. The domain controller...
2019-08-20 21:05:39 128
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人