- 博客(25)
- 资源 (2)
- 收藏
- 关注
原创 Python 画图 图例添加字体
下面添加前的效果,如图,可以看到图例部分还是默认字体,希望修改为“TimesNewRoman”在plt.legend()中添加属性prop=font。只需添加font和prop属性即可实现图2。
2022-07-20 11:07:46
4605
原创 IEEE 文章模板获取地址
IEEE Article Templates - IEEE Author Center JournalsIEEE article templates let you easily and quickly format your article and help you prepare a draft for peer review.https://journals.ieeeauthorcenter.ieee.org/create-your-ieee-journal-article/authoring-too
2022-06-03 08:19:07
239
原创 根据题目和摘要筛选合适SCI期刊的四种方式
主要有四个Springer Journal Suggesterhttps://journalsuggester.springer.com/IEEE Publication Recommenderhttps://publication-recommender.ieee.org/periodicalsElsevier® JournalFinderElsevier JournalFinder helps you find journals that could be b...
2022-05-31 16:52:44
8125
原创 彩色图像增强(限制对比度直方图阈值均衡化)Python,Win10
import cv2import numpy as npimg = cv2.imread("C:\\Users\\dwx\\Desktop\\00312.jpg", 1)imgYUV = cv2.cvtColor(img, cv2.COLOR_BGR2YCrCb)channelsYUV = cv2.split(imgYUV)t = channelsYUV[0]# 限制对比度的自适应阈值均衡化clahe = cv2.createCLAHE(clipLimit=2.0, tileGridSi.
2022-04-26 20:49:05
3875
原创 Python-OpenCV极坐标变换(圆形图片转换到长方形图片)
变换效果如下图Python代码如下#coding=utf-8import numpy as npimport cv2def img_polar_transform(input_img,center,r_range,theta_rangge=(0,360),r_step=0.5,theta_step=360.0/(180*8)): minr,maxr=r_range mintheta,maxtheta=theta_rangge H=int((maxr-minr)/.
2021-11-23 10:26:06
2315
2
原创 3070显卡安装TensorFlow与pytorch
一.确认显卡驱动以及安装CUDA cudnn1.不低于我这个驱动版本即可2.安装CUDA11.2下载参考链接https://blog.youkuaiyun.com/qq_43682797/article/details/114525523?ops_request_misc=%257B%2522request%255Fid%2522%253A%2522162556846816780262530137%2522%252C%2522scm%2522%253A%252220140713.13010233
2021-07-06 18:53:07
2856
原创 阿里云+frp+实验室电脑 全Windows系统实现内网穿透
1.在阿里云服务器上下载frphttps://github.com/fatedier/frp/releases/打开frcs.ini复制一下内容进去,然后保存[common]bind_port = 7000 dashboard_port = 7500 token = 12345678 dashboard_user = admin dashboard_pwd = adminvhost_http_port = 10080 vhost_https_port = 10443打开cmd
2021-02-27 14:35:35
938
2
原创 python增加数组维度与用matplotlib画三维轨迹图
x=position[0]x=np.expand_dims(x,axis=0)y=position[1]y=np.expand_dims(y,axis=0)z=position[2]z=np.expand_dims(z,axis=0)
2020-11-30 22:26:55
983
原创 Anaconda环境配置清单
1、安装Anacoda见安装包Anaconda3-2020.02-Windows-x86_642、python涉及到的包安装进入Anaconda PowerShell Prompt界面通过pip命令进行安装,需要安装的包有:NumPy、SciPy、pandas、SciKit-learn==0.23.2、mlpy(失败)、matplotlib、geos、pyproj、basemap(失败)、pydotplus、IPython、keras、tensorflow备注:1)pip安装前,先进入执行te
2020-11-19 17:33:39
573
原创 Python包版本对应网站
地址如下:https://www.lfd.uci.edu/~gohlke/pythonlibs/#matplotlib说明:1.5.3就是matplotlib这个包的版本号而cpXX这是指适用的python版本号。比如cp27是指适用于python2.7版本,cp35适用python35。win32、win amd64则分别指32位和64位操作系统。...
2020-11-19 16:11:25
857
minist-可视化图
2022-06-03
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人