An Image Widget for display OpenCV Mat image
Project description
A PyQt5/PySide2 Image Widget for quickly displaying OpenCV Mat Image!
Modified @ 2017.07.26 16:47:36 CST
1. Dependency, Install and Uninstall
1.1 Dependency
numpy
opencv-python (or you can compile cv2 from the OpenCV Source!)
PyQt5/PySide2
1.2 Install
$ git clone https://github.com/Image-Py/imagepyqt
$ cd imagepyqt
$ ls
...
imagepyqt/
setup.py
$ python3 setup.py install
...
1.3 Uninstall
pip3 uninstall imagepyqt
2. Usage
2.1 Test the demo
$ python3 -m "imagepyqt.demos"
2.2 A simple demo
""" [1] Read Image in cv2 """
import cv2
imagename = "/home/auss/Pictures/test.png" ## TODO: change to your image path!
img = cv2.imread(imagename)
""" [2] Display the OpenCV Mat in imagepyqt """
import imagepyqt as ipq
ipq.imshow(img,"Test ImagePyQt")
ipq.runQApp()
2.3 Other demos
import os, sys
from imagepyqt.widgets import imwidget
from imagepyqt.myQt import mkQApp, runQApp, QtWidgets
from imagepyqt import qimshow
## TODO: change to your own imagepath!
imagename = "/home/auss/Pictures/test.png"
def test1():
"""A Simple demo"""
import cv2
img = cv2.imread(imagename)
qApp=mkQApp()
qimshow(img,"Test MyImageWidget[2]")
runQApp()
def test2():
"""Another Simple demo"""
import cv2
img = cv2.imread(imagename)
qApp = mkQApp()
win = imwidget.MyImageWidget()
win.setImage(img)
win.setWindowTitle("Test MyImageWidget[1]")
win.show()
runQApp()
def run():
test1()
test2()
if __name__ == "__main__":
run()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
image_pyqt-0.0.2-py3-none-any.whl
(634.4 kB
view details)
File details
Details for the file image_pyqt-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: image_pyqt-0.0.2-py3-none-any.whl
- Upload date:
- Size: 634.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ffd4f8312853c6755cd0de39331892b7ceea12ee6a2d57eece8f99385d5e24c4 |
|
MD5 | 3f8cc686928cf8ecf4df238b1843c5cf |
|
BLAKE2b-256 | a57b976d2f954bd5445cfc8613b26711dcdbe3284745097694627987bc19eac1 |