- 博客(13)
- 资源 (1)
- 收藏
- 关注
原创 ubuntu安装GCC遇到Building GCC requires GMP 4.2+, MPFR 2.3.1+ and MPC 0.8.0+
1. 获取源码 wgethttps://mirrors.ustc.edu.cn/gnu/gcc/gcc-8.3.0/gcc-8.3.0.tar.xz -P ~ tar xvf gcc-8.3.0.tar.xz cd ~/gcc-8.3.03. 创建编译目录 mkdir build-gcc-8.3.0 cd build-gcc-8.3.04. 配置 ./configure --enable-checking=release --enable-languages=..
2021-03-15 22:26:45 725
原创 Ubuntu 干净卸载安装包
Uninstall a package via command lineThere are actually three different commands that can be used to remove a package from Ubuntu. Two of those areapt and apt-get, and the other one is dpkg. Opting to use apt for removing packages is the most recommended.
2021-03-15 22:23:29 383
原创 Run demo.py on windows with cpu successfully!
my environment is:windows10 ,python3.6 ,tensorflow1.3 ,vs2015(ps:vs2013 not support python3.6 when compile)step 1:make some changechange "np.int_t " to "np.intp_t" in line 25 of the file lib\ut...
2020-03-29 22:18:23 167
原创 anaconda 安装caffe 的编译过程
RequirementsVisual Studio 2013 or 2015 Technically only the VS C/C++ compiler is required (cl.exe) CMake 3.4 or higher (Visual Studio and Ninja generators are supported)Optional DependenciesP...
2020-03-27 14:48:24 559
原创 opencv去除小区域的连通区域
#include "opencv.hpp" #include "iostream" using namespace std; using namespace cv; int main() { Mat srcImage, grayImage, dstImage,imgHSVMask; int size = 800; //...
2020-02-13 15:05:48 2202
原创 rtsp实时流通过rtmp推送到服务端
很多朋友都会问到rtsp如何通过rtmp协议推送到服务端,正好前段时间开发了这个功能写在这里,和大家分享下。首先我想说的是:ffmpeg可以实现这个功能。ffmpeg支持rtsp协议,也支持rtmp。在这个案例中rtsp是输入,rtmp是输出,ffmpeg实现了转码的功能。下面可出一个整体思路流程图。...
2019-11-27 14:08:31 579
原创 django admin创建的时候的admin.py 中书写的案例
@admin.register(Employe)class EmployeAdmin(ImportExportActionModelAdmin): resource_class = ProxyResource list_display = ('id', 'name', 'gender', 'phone', 'birthday', 'department', 'enable', '...
2019-10-22 17:32:24 410
原创 vtk 功能处理列表
VTK的范例程序网址: http://www.vtk.org/Wiki/VTK/Examples/Cxx上面用提供了C++/TCL还有Java的大量的关于VTK的范例程序,详尽的描述了VTK到底能做哪些事情,涵盖 了VTK大部分强大的功能。VTK不仅能对序列的医学图像进行三维重建,比如说面绘制MC算法,体绘制的光线投影算法,还有诸多其他的有用的功能,涵盖普通的几何点、线、多边形以及图像数据。以...
2019-10-16 16:58:11 712
原创 NGINX 后台配置 ( rtmp-http-flv-moudle) CSRF
#user nobody;worker_processes 1;#error_log logs/error.log;#error_log logs/error.log notice;#error_log logs/error.log info;#pid logs/nginx.pid;events { worker_connections 1...
2019-10-16 15:29:02 776
原创 ubuntu 基于ffmpeg和Visual GDB 实现本地推流功能
ubuntu 上下载ffmpeg的相关组件 并且安装安装如下1 ./configure --prefix=/usr/local/ffmpeg2--enable-shared--enable-libmp3lame --enable-libvorbis --enable-gpl --enable-version3 --enable-nonfree --enable-pthreads --...
2019-08-22 17:36:12 326
原创 ubuntu下库文件的设置 (/usr/bin/ld: cannot find -lxxx 的解决办法)
Linux下库文件的设置 (/usr/bin/ld: cannot find -lxxx 的解决办法)在软件编译过程中,经常会碰到类似这样的编译错误:/usr/bin/ld: cannot find -lhdf5这表示找不到库文件 libhdf5.so,若是其它库文件,则是 cannot find -lxxx 了,其中 xxx 是库文件的名字。解决方法有:1. 安装此库文件和相关软件...
2019-08-22 17:27:25 2026
原创 python错误 IndentationError: unindent does not match any outer indentation level
IndentationError: unindent does not match any outer indentation level
2017-05-26 09:34:00 274
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人