会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
wusichen
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
下一页
2017年12月27日
AI CV 会议2018
摘要: (1) NIPS, Conference and Workshop on Neural Information Processing Systems, A类顶会 1987年由联结主义学派创建,每年一次,美国、加拿大、西班牙举办。近年主题主要为机器学习,人工智能和统计学等。 论文: https://p
阅读全文
posted @ 2017-12-27 11:46 wusichen
阅读(1288)
评论(0)
推荐(0)
编辑
2017年12月2日
ubuntu 更改默认亮度
摘要: 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
阅读(245)
评论(0)
推荐(0)
编辑
ubuntu安装latex
摘要: 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
阅读(429)
评论(0)
推荐(0)
编辑
2017年11月30日
过滤文件代码 python
摘要: 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
阅读(632)
评论(0)
推荐(0)
编辑
2017年10月20日
ubuntu安装pycharm桌面快捷方式
摘要: 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
阅读(233)
评论(0)
推荐(0)
编辑
2017年10月19日
Ubuntu 14.04 鼠标消失解决方案
摘要: Ubuntu 14.04 鼠标消失解决方案: 进入文字命令行模式,输入startx, 返回图像模式。
阅读全文
posted @ 2017-10-19 11:05 wusichen
阅读(3544)
评论(0)
推荐(0)
编辑
2017年10月18日
ffmpeg常用命令
摘要: # 视频中抽帧存图, -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
阅读(4476)
评论(2)
推荐(0)
编辑
2017年9月20日
FFMPEG 在ubuntu下的安装与使用
摘要: 转载自 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
阅读(2635)
评论(0)
推荐(0)
编辑
2017年5月27日
pragma once
摘要: #pragma once是一个常用的C/C++加注,在头文件最开始防止,能保证头文件(物理上)只被编译一次。 不是C++标准所规定,不同编译器支持不同。它的作用方式等同于常见的预处理头 #ifndef...#define...#endif 方式一: #ifndef _SOMEFILE_H_ #def
阅读全文
posted @ 2017-05-27 20:13 wusichen
阅读(263)
评论(0)
推荐(0)
编辑
2017年4月25日
chrono--高精度计时
摘要: 在C++中使用chrono标准库进行高精度计时。示例如下: 参考: http://www.cplusplus.com/reference/chrono/high_resolution_clock/now/
阅读全文
posted @ 2017-04-25 11:47 wusichen
阅读(312)
评论(0)
推荐(0)
编辑
上一页
1
2
3
4
下一页