opencv
柠檬编程工作室
接计算机课程作业课程论文毕业设计信息系统,以及出售各种计算机相关书籍pdf
展开
-
python学员管理系统
python学员管理系统原创 2022-01-16 16:19:42 · 209 阅读 · 0 评论 -
python公共方法之运算符*
python公共方法之运算符*原创 2022-01-12 15:17:07 · 164 阅读 · 0 评论 -
python公共方法之运算符+
python公共方法之运算符+原创 2022-01-12 15:15:55 · 128 阅读 · 0 评论 -
python集合操作增删查
python集合操作增删查原创 2022-01-12 15:10:33 · 97 阅读 · 0 评论 -
python字典key、value和item
python字典key、value和item原创 2022-01-12 15:00:32 · 1015 阅读 · 0 评论 -
三分钟搞懂python字典及其删除操作
三分钟搞懂python字典及其删除操作原创 2022-01-10 19:49:39 · 510 阅读 · 0 评论 -
python元组修改笔记
python元组修改笔记原创 2022-01-10 19:21:33 · 203 阅读 · 0 评论 -
python元组实战,两分钟搞懂
python元组实战,两分钟搞懂原创 2022-01-10 19:16:44 · 283 阅读 · 0 评论 -
python元组一看就懂笔记
python元组一看就懂笔记原创 2022-01-10 19:12:03 · 63 阅读 · 0 评论 -
python修改的常用方法
python修改的常用方法原创 2022-01-08 15:42:35 · 792 阅读 · 0 评论 -
python字符串的修改
python字符串的修改原创 2022-01-08 15:41:00 · 212 阅读 · 0 评论 -
python字符串的查找
python字符串的查找:原创 2022-01-08 15:30:05 · 4232 阅读 · 0 评论 -
python字符串切片笔记(详细)
python字符串切片笔记(详细)原创 2022-01-08 15:22:07 · 100 阅读 · 0 评论 -
python字符串的下标
python字符串的下标原创 2022-01-08 15:16:38 · 1327 阅读 · 0 评论 -
python字符串的输入
python字符串的输入原创 2022-01-08 15:13:41 · 173 阅读 · 0 评论 -
python字符串的两种输出格式
python字符串的两种输出格式原创 2022-01-08 15:11:15 · 146 阅读 · 0 评论 -
认识python的字符串
认识python的字符串原创 2022-01-08 15:08:29 · 179 阅读 · 0 评论 -
python循环之九九乘法表
python循环之九九乘法表原创 2022-01-07 14:43:34 · 144 阅读 · 0 评论 -
python的三目运算符
python的三目运算符原创 2022-01-07 14:41:11 · 66 阅读 · 0 评论 -
python综合案例---猜拳游戏
python综合案例---猜拳游戏原创 2022-01-07 14:39:16 · 2383 阅读 · 0 评论 -
python的逻辑运算符
python的逻辑运算符原创 2022-01-07 14:36:37 · 87 阅读 · 0 评论 -
python的格式化输入输出
python的格式化输出原创 2022-01-07 14:33:02 · 328 阅读 · 0 评论 -
python的数据类型
python的数据类型原创 2022-01-07 14:29:37 · 189 阅读 · 0 评论 -
python的变量(详解)
python的变量详解原创 2022-01-07 14:22:45 · 99 阅读 · 0 评论 -
python的注释(详解)
python的注释原创 2022-01-07 14:19:25 · 225 阅读 · 0 评论 -
2020-12-06
import cv2img = cv2.imread("D:\photos\lixian.JPG")imgGray = cv2.cvtColor(img,cv2.COLOR_BGR2GRAY)imgBlur = cv2.GaussianBlur(imgGray,(7,7),0)imgCanny = cv2.Canny(img,150,200)cv2.imshow("Gray Image",imgGray)cv2.imshow("Blur Image",imgBlur)cv2.imshow原创 2020-12-08 21:03:34 · 98 阅读 · 0 评论 -
2020-12-10
opencv入门实例(3)话不多说,拿去跑就完事,show my code:代码一:import cv2import numpy as npimg = cv2.imread("D:\photos\lixian.JPG") width = 250height = 350pts1 = np.float32([[111,219],[287,188],[154,482],[352,440]])pts2 = np.float32([[0,0],[width,0],[0,height],[widt原创 2020-12-10 23:13:51 · 82 阅读 · 0 评论