上一页 1 ··· 60 61 62 63 64 65 66 67 68 ··· 345 下一页
摘要: import cv2# Load an color image in grayscaleimg = cv2.imread('psu.... 阅读全文
posted @ 2022-08-19 22:57 luoganttcc 阅读(7) 评论(0) 推荐(0)
摘要: opencv 修改图片尺寸 import cv2# Load an color image in grayscaleimg = cv2.imread('psu.jpeg',3)#cv2.imshow('image',img)res=cv... 阅读全文
posted @ 2022-08-19 22:57 luoganttcc 阅读(5) 评论(0) 推荐(0)
摘要: opencv 修改图片尺寸 import cv2# Load an color image in grayscaleimg = cv2.imread('psu.jpeg',3)#cv2.imshow('image',img)res=cv... 阅读全文
posted @ 2022-08-19 22:57 luoganttcc 阅读(9) 评论(0) 推荐(0)
摘要: opencv 卷积神经网络 import numpy as npimport cv2from scipy import ndimagek33=np.array([[-1,-1,-1], [-1,8,-1], ... 阅读全文
posted @ 2022-08-19 22:57 luoganttcc 阅读(5) 评论(0) 推荐(0)
摘要: opencv 卷积神经网络 import numpy as npimport cv2from scipy import ndimagek33=np.array([[-1,-1,-1], [-1,8,-1], ... 阅读全文
posted @ 2022-08-19 22:57 luoganttcc 阅读(11) 评论(0) 推荐(0)
摘要: import numpy as npimport cv2from scipy import ndimagek33=np.array(... 阅读全文
posted @ 2022-08-19 22:57 luoganttcc 阅读(7) 评论(0) 推荐(0)
摘要: import heapq#-*- coding: UTF-8 -*-import numpy as npdef MakeHeap(a... 阅读全文
posted @ 2022-08-19 22:57 luoganttcc 阅读(10) 评论(0) 推荐(0)
摘要: python 栈实现 #!/usr/bin/env python3# -*- coding: utf-8 -*-"""Created on Tue Jun 26 22:32:27 2018@author: luogan"""class ... 阅读全文
posted @ 2022-08-19 22:57 luoganttcc 阅读(3) 评论(0) 推荐(0)
摘要: python 栈实现 #!/usr/bin/env python3# -*- coding: utf-8 -*-"""Created on Tue Jun 26 22:32:27 2018@author: luogan"""class ... 阅读全文
posted @ 2022-08-19 22:57 luoganttcc 阅读(10) 评论(0) 推荐(0)
摘要: Python 实现冒泡 nums = [3,1,2]n=len(nums)for i in range(n-1): for j in range(n-i-1): if nums[j]>nums[j+1]: ... 阅读全文
posted @ 2022-08-19 22:57 luoganttcc 阅读(4) 评论(0) 推荐(0)
上一页 1 ··· 60 61 62 63 64 65 66 67 68 ··· 345 下一页