VOOZH about

URL: https://www.geeksforgeeks.org/python/pyqtgraph-clearing-image-view/

⇱ PyQtGraph – Clearing Image View - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

PyQtGraph – Clearing Image View

Last Updated : 25 May, 2022

In this article, we will see how we can clear the data of image view in PyQTGraph. PyQtGraph is a graphics and user interface library for Python that provides functionality commonly required in designing and science applications. Its primary goals are to provide fast, interactive graphics for displaying data (plots, video, etc.). Widget used for display and analysis of image data. Implements many features like displaying 2D and 3D image data. For 3D data, a z-axis slider is displayed allowing the user to select which frame is displayed. Displays histogram of image data with movable region defining the dark/light levels, editable gradient provides a color lookup table, frame slider may also be moved using left/right arrow keys as well as pgup, pgdn, home, and end. Clearing an image view object does not close or delete the image view object rather it just delete the previous data of it.

We can create an image view with the help of the command given below.

# creating a pyqtgraph image view object
imv = pg.ImageView()

In order to do this we use clear method with the image view object
Syntax : imv.clear()
Argument : It takes no argument
Return : It returns None  

Below is the implementation. 

Output:

👁 Image

Comment
Article Tags: