码迷,mamicode.com
首页 >  
搜索关键字:figure    ( 2425个结果
使用OpenCV进行实时车道检测
作者|ABHISHEK SHARMA 编译|VK 来源|Analytics Vidhya 大约十年前,当谷歌的人还在试验一辆原型车时,我预见了自己的第一辆自动驾驶汽车。当时我立刻被这个想法迷住了。不可否认,我不得不等待一段时间,直到这些概念向社区开放,现在看来等待确实是值得的! 我最近试验了一些与计 ...
分类:其他好文   时间:2020-06-19 13:36:59    阅读次数:66
tick能见度
import numpy from matplotlib import pyplot x=numpy.linspace(-3,3,50) y=2*x+1 pyplot.figure(num=1,figsize=(5,5)) pyplot.plot(x,y,linewidth=10) ax=pyplo ...
分类:其他好文   时间:2020-06-19 11:53:20    阅读次数:38
Linux Log
/var/log : where the linux put the logs /var/log/cron on system cron tasks /var/log/cups/ something about the printer /var/log/dmesg/ system self chec ...
分类:系统相关   时间:2020-06-18 19:21:13    阅读次数:56
CentOS安装 Perl
安装很简单,执行如下指令即可: wget https://www.cpan.org/src/5.0/perl-5.28.0.tar.gz # tar -zxvf perl-5.28.0.tar.gz cd perl-5.28.0 ./Configure -des -Dprefix=/usr/loca ...
分类:其他好文   时间:2020-06-16 14:51:38    阅读次数:48
.net core Redis
.net core 使用Redis安装包:Microsoft.Extensions.Caching.Redis 注册Redis(已经引用了Autofac) public void ConfigureServices(IServiceCollection services) { // 这个是之前使用S ...
分类:Web程序   时间:2020-06-16 13:23:39    阅读次数:67
python3.8 + django3.0.7 使用pymysql报错:django.core.exceptions.ImproperlyConfigured: mysqlclient 1.3.13 or newer is required; you have 0.9.2
1.python3.8 + django3.0.7 使用pymysql报错: django.core.exceptions.ImproperlyConfigured: mysqlclient 1.3.13 or newer is required; you have 0.9.2 2.报错原因:是dj ...
分类:数据库   时间:2020-06-16 13:12:42    阅读次数:111
spring Ioc简单实践
0. Ioc https://docs.spring.io/spring-framework/docs/current/spring-framework-reference/core.html#beans-introduction 主要是实现一个控制反转,耦合性大大降低。 1. 建maven项目 建 ...
分类:编程语言   时间:2020-06-15 15:49:27    阅读次数:64
Docker进阶篇
查看docker教学视频,请点击 《狂神说java》: https://www.bilibili.com/video/BV1og4y1q7M4?p=1 记得投币三连呀~~ 容器数据卷 什么是容器数据卷 docker的理念回顾 将应用和环境打包成一个镜像! 数据?如果数据都在容器中,那么我们容器删除, ...
分类:其他好文   时间:2020-06-14 18:49:31    阅读次数:90
子图网格
import matplotlib.pyplot as pltimport numpy as npgs = plt.GridSpec(3,3)fig = plt.figure(figsize=(6,6))x1 = np.array([1,3,2,5])y1 = np.array([4,3,7,2]) ...
分类:其他好文   时间:2020-06-14 13:08:02    阅读次数:69
多面板图形
import matplotlib.pyplot as pltimport numpy as npfig = plt.figure()ax = fig.add_axes([0.1,0.1,0.8,0.8])inner_ax = fig.add_axes([0.6,0.6,0.25,0.25])x1 ...
分类:其他好文   时间:2020-06-14 12:45:50    阅读次数:70
2425条   上一页 1 ... 12 13 14 15 16 ... 243 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!