Giter Club home page Giter Club logo

opencv-pyqt5's Introduction

opencv-pyqt5

使用opencv与pyqt5实现的图像处理程序 demo.jpg

Dependency

  • opencv-python
  • matplotlib
  • pyqt5

已实现功能

  • 图像旋转
  • 转灰度图
  • 图像平滑
  • 直方图均衡化
  • 形态学操作
  • 梯度计算
  • 阈值处理
  • 边缘检测
  • 轮廓检测
  • 哈夫变换直线检测
  • 亮度调节
  • 伽马校正

opencv-pyqt5's People

Contributors

jiagewang avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

opencv-pyqt5's Issues

Can you share more details about your code?

Thank you for sharing your code.
Now, I'm working on image treatment. Can you share more details about your code? Such as your develope doc? Or some tutorals of Opencv and Pytorch?
Best regard!

Rootpath of FilesystemTreeview seems not work

Hi, bro, nice work! I find that QFileSystemModel.setRootPath seems not to work in PyQt5, so I modified some codes according to this and it works now
origin code

        self.fileSystemModel = QFileSystemModel()
        self.fileSystemModel.setRootPath('.')
        self.setModel(self.fileSystemModel)

modified

        # 设置根目录
        self.fileSystemModel = QFileSystemModel()  # 1
        self.setModel(self.fileSystemModel)  # 2
        self.fileSystemModel.setRootPath(QDir.rootPath())  # 3
        self.setRootIndex(self.fileSystemModel.index("/Users/mac/Pictures"))  # 4

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.