• 大小: 38.45M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-30
  • 语言: Python
  • 标签:

资源简介

Python OpenCV 图像梯度-实例源码.zip

资源截图

代码片段和文件信息

# -*- coding: utf-8 -*-
“““
Created on Thu Jun 14 13:55:27 2018

@author: 天津拨云咨询服务有限公司 lilizong@gmail.com
“““
import cv2
import numpy as np
o = cv2.imread(‘image\\sobel4.bmp‘cv2.IMREAD_GRAYSCALE)
sobelx = cv2.Sobel(ocv2.CV_64F10ksize=3)
sobely = cv2.Sobel(ocv2.CV_64F01ksize=3)
sobelx = cv2.convertScaleAbs(sobelx)   # 转回uint8  
sobely = cv2.convertScaleAbs(sobely)  
sobelxy =  cv2.addWeighted(sobelx0.5sobely0.50)  
sobelxy11=cv2.Sobel(ocv2.CV_64F11ksize=3)
cv2.imshow(“original“o)
cv2.imshow(“x“sobelx)
cv2.imshow(“y“sobely)
cv2.imshow(“xy“sobelxy)
cv2.imshow(“xy11“sobelxy11)
cv2.waitKey()
cv2.destroyAllWindows()


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         669  2019-05-01 14:34  example\10.2sobel全部代码.py
     文件         404  2019-05-01 14:34  example\10.3.1scharrx.py
     文件         402  2019-05-01 14:34  example\10.3.2scharry.py
     文件         592  2019-05-01 14:34  example\10.3.3scharrxy.py
     文件         460  2019-05-01 14:34  example\10.3.4scharrxy11.py
     文件         712  2019-05-01 14:34  example\10.3.5scharrINSobel.py
     文件         850  2019-05-01 14:34  example\10.4sobel算子与scharr算子的比较.py
     文件         417  2019-05-01 14:34  example\10.5laplacian.py
     文件        6338  2019-05-01 14:34  example\image\A.png
     文件      263222  2019-05-01 14:34  example\image\airfield.bmp
     文件     1244214  2019-05-01 14:34  example\image\barbara.bmp
     文件      810054  2019-05-01 14:34  example\image\blackhat.bmp
     文件      263222  2019-05-01 14:34  example\image\bridge.bmp
     文件      302542  2019-05-01 14:34  example\image\canny.bmp
     文件      810054  2019-05-01 14:34  example\image\closing.bmp
     文件      810054  2019-05-01 14:34  example\image\closing2.bmp
     文件      302542  2019-05-01 14:34  example\image\contours.bmp
     文件       37982  2019-05-01 14:34  example\image\contoursBin.bmp
     文件      904446  2019-05-01 14:34  example\image\contoursColor.bmp
     文件      810054  2019-05-01 14:34  example\image\dilation.bmp
     文件      263222  2019-05-01 14:34  example\image\dollar.bmp
     文件     1440054  2019-05-01 14:34  example\image\erode.bmp
     文件       24000  2019-05-01 14:34  example\image\filter.jpg
     文件     1244214  2019-05-01 14:34  example\image\girl.bmp
     文件       23711  2019-05-01 14:34  example\image\google-search.png
     文件      810054  2019-05-01 14:34  example\image\gradient.bmp
     文件       51231  2019-05-01 14:34  example\image\hr.png
     文件      302542  2019-05-01 14:34  example\image\laplacian.bmp
     文件      263222  2019-05-01 14:34  example\image\lena.bmp
     文件       66614  2019-05-01 14:34  example\image\lena256.bmp
     文件      263222  2019-05-01 14:34  example\image\lena512.bmp
............此处省略73个文件信息

评论

共有 条评论