open cv 拍照检测: https://www.cnblogs.com/yyagrt/p/7260586.html 配置open cv 环境 : https://blog.csdn.net/qq_41175905/article/details/80560429 1 #include <open ...
分类:
其他好文 时间:
2021-03-08 14:15:11
阅读次数:
0
官网:www.fhadmin.org springboot框架 vue.js 前后分离 1.【 点击进入】 【框架平台】springboot 框架 vue.js 前后分离 时尚风格 2.【 点击进入】 【框架平台】springboot 框架 vue.js 前后分离 windows风格 3.【 点击进 ...
分类:
编程语言 时间:
2021-03-08 13:44:53
阅读次数:
0
from PyPDF2 import PdfFileWriter, PdfFileReader # 开始页 start_page = 0 # 截止页 end_page = 5 output = PdfFileWriter() pdf_file = PdfFileReader(open("3.pdf" ...
分类:
编程语言 时间:
2021-03-08 13:30:17
阅读次数:
0
打开 在Python中,使用open函数,可以打开一个已经存在的文件,或者创建一个文件,语法如下: 变量(文件对象) = open(name,mode) name:是要打开的目标文件名的字符串(可以包含文件具体路径) mode:设置打开文件的模式(访问模式):只读、写入、追加等 打开文件模式 **注 ...
分类:
编程语言 时间:
2021-03-08 13:11:36
阅读次数:
0
废话不多说,上个例子。 [CommandMethod("copyEnt")] public void copyEnt() { Document doc = AcApp.DocumentManager.MdiActiveDocument; Database db = doc.Database; Edi ...
How to deploy EBS CSI on AWS EKS in China region? ISSUE Cannot access k8s.gcr.io repository in China region. Prerequisites Fetch the Account ID and sa ...
分类:
其他好文 时间:
2021-03-08 13:03:04
阅读次数:
0
二十、动词 动词就是表示动作或者心理行为的词语。很多人都知道表示动作的词语就是动词,但是忽略了表示心理行为的词语也是动词。比如:know 知道,think 认为,like 喜欢 这些词语并不表示动作,但是这些词语也是动词,因为它们是表示心理行为的。有时候还要注意,中文跟英语不一样,一个词语在中文里面 ...
分类:
其他好文 时间:
2021-03-06 14:54:22
阅读次数:
0
#!/bin/bash #for.sh for i in `cat ./ip.txt`; do ip=`echo $i|awk -F: '{print $1}'` num=`echo $i|awk -F: '{print $2}'` echo $ip sleep 1 echo $num sleep ...
分类:
其他好文 时间:
2021-03-06 14:46:46
阅读次数:
0
人脸识别分析 调用 腾讯AI人脸识别接口 测试应用 纯py文件测试照片 # -*- coding: utf-8 -*- import json from tencentcloud.common import credential from tencentcloud.common.exception. ...
分类:
其他好文 时间:
2021-03-05 13:28:55
阅读次数:
0
1、目前工作上有一堆的ip地址,ip是ok的,但是需要找出来不在这里面的其他ip import os a = list() with open('ip.txt','r') as f: #print(f.readlines()) for line in f.readlines(): a.append( ...
分类:
其他好文 时间:
2021-03-05 13:28:22
阅读次数:
0