2017年12月27日
摘要:
(1) NIPS, Conference and Workshop on Neural Information Processing Systems, A类顶会 1987年由联结主义学派创建,每年一次,美国、加拿大、西班牙举办。近年主题主要为机器学习,人工智能和统计学等。 论文: https://p
阅读全文
posted @ 2017-12-27 11:46
wusichen
阅读(1316)
推荐(0)
2017年12月2日
摘要:
chmod 777 /sys/class/backlight/intel_backlight/brightnes chmod 777 /sys/class/backlight/intel_backlight/actual_brightness sudo sublime /etc/rc.local 添
阅读全文
posted @ 2017-12-02 22:51
wusichen
阅读(250)
推荐(0)
摘要:
1 终端中输入“sudo apt-get install texlive-full”,输入root密码。 若不想安装所有文件,可以选择“sudo apt-get install texlive”。 2 安装编译器,在终端输入“sudo apt-get install texmaker”。 3 打开在
阅读全文
posted @ 2017-12-02 17:54
wusichen
阅读(446)
推荐(0)
2017年11月30日
摘要:
import os import cv2 import shutil # store all file in directory global totalFileList totalFileList = [] def eachFile(filepath): pathDir = os.listdir(filepath) totalFileList.extend([os.pa...
阅读全文
posted @ 2017-11-30 16:33
wusichen
阅读(641)
推荐(0)
2017年10月20日
摘要:
1.sudo gedit /usr/share/applications/Pycharm.desktop 2.输入 3.然后进入/usr/share/applications/将Pycharm.desktop复制到~/Desktop下 修改可执行chmod +777 ./Pycharm.deskto
阅读全文
posted @ 2017-10-20 10:54
wusichen
阅读(238)
推荐(0)
2017年10月19日
摘要:
Ubuntu 14.04 鼠标消失解决方案: 进入文字命令行模式,输入startx, 返回图像模式。
阅读全文
posted @ 2017-10-19 11:05
wusichen
阅读(3593)
推荐(0)
2017年10月18日
摘要:
# 视频中抽帧存图, -r 每秒产生的帧数(置空则全转), -q:v 2 高质量, -s 宽x高ffmpeg -i input.avi -r 1 -q:v 2 -s WxH -f image2 pic-%03d.jpeg # 获取视频的信息ffmpeg -i input.avi# 将图片序列合成视频
阅读全文
posted @ 2017-10-18 13:13
wusichen
阅读(4522)
推荐(0)
2017年9月20日
摘要:
转载自 http://www.cnblogs.com/dwdxdy/p/3240167.html (部分一:安装) ffmpeg的安装: 1.下载源文件(以ffmpeg1.2.1为例): http://ffmpeg.org/ffmpeg-1.2.1.tar.bz2 见http://ffmpeg.or
阅读全文
posted @ 2017-09-20 22:52
wusichen
阅读(2666)
推荐(0)
2017年5月27日
摘要:
#pragma once是一个常用的C/C++加注,在头文件最开始防止,能保证头文件(物理上)只被编译一次。 不是C++标准所规定,不同编译器支持不同。它的作用方式等同于常见的预处理头 #ifndef...#define...#endif 方式一: #ifndef _SOMEFILE_H_ #def
阅读全文
posted @ 2017-05-27 20:13
wusichen
阅读(269)
推荐(0)
2017年4月25日
摘要:
在C++中使用chrono标准库进行高精度计时。示例如下: 参考: http://www.cplusplus.com/reference/chrono/high_resolution_clock/now/
阅读全文
posted @ 2017-04-25 11:47
wusichen
阅读(342)
推荐(0)