1 2 3 4
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <!-- 引入 ECharts 文件 --> <script src="js/echarts.js"></script> </head> <body> <! 为ECharts准备一个具备大小(宽 阅读全文
posted @ 2022-03-26 19:17 helloyun3 阅读(757) 评论(0) 推荐(0)
摘要: import turtle turtle.title('PythonBingDwenDwen') turtle.speed(200) # 速度 # 左手 turtle.penup() turtle.goto(177, 112) turtle.pencolor("lightgray") turtle. 阅读全文
posted @ 2022-03-26 19:06 helloyun3 阅读(1039) 评论(0) 推荐(0)
摘要: 一、在浏览器中将Params复制到pycharm的py文件中 二、选中需要添加引号的部分,Ctrl+H 调出替换工具栏 三、填写正则表达式 (.*?): (.*) '$1':'$2', 右侧注意点击使用正则表达式,保留大小写,和在选定内容中进行查找。 注意先把选择部分的缩进取消快捷键是:shift 阅读全文
posted @ 2021-09-21 08:18 helloyun3 阅读(4090) 评论(0) 推荐(1)
摘要: ·············环境结合··············· 我的环境:window10 64位 Python 3.7 32-bit selenium 3.141.0 Google Chrome 92.0.4515.107 (正式版本) (32 位) ·····&# 阅读全文
posted @ 2021-07-24 17:25 helloyun3 阅读(4698) 评论(1) 推荐(0)
摘要: 首先是安装R再安装Rstudio 链接放在这里: R语言软件以及Rstudio软件下载:链接:https://pan.baidu.com/s/11TH4mJjoi3QXGfamB697rw 密码:o17g 想去官网下最新版本的R链接:https://cran.r-project.org/mirror 阅读全文
posted @ 2021-05-19 13:19 helloyun3 阅读(528) 评论(0) 推荐(0)
摘要: 使用简单代码实现摄像头进行在线人脸识别 import cv2 import sys import logging as log import datetime as dt from time import sleep cascPath = "D:\\Python27\\Lib\\site-packa 阅读全文
posted @ 2021-05-19 00:17 helloyun3 阅读(786) 评论(0) 推荐(0)
摘要: 使用简单几行代码入门人脸识别 import cv2 import numpy as np import sys,os,glob,numpy # from skimage import io #指定图片的人脸识别然后存储 img = cv2.imread("img/test.jpg") color = 阅读全文
posted @ 2021-05-19 00:16 helloyun3 阅读(141) 评论(0) 推荐(0)