I am using pyqtgraph.ImageView to visualize data.
I need to smooth transition in my image with vispy like in this photo:
Do you know any way to get this kind of result with pyqtgraph or any way to integrate vispy canvas into pyqtgraph.ImageView?
Related
I was wondering if we could create 3D objects in PyQt5 just like we do in Processing using Java or can we create 2D squares/arcs/circles just like we do in Tkinter.
Actually I am shifting from processing to PyQt5 for my project which involves MEMS Gyro and Accelerometer. And I would like to do the same visualization in PyQt5 as well.
So far I am fine with other features of PyQt5 like Button, Entries etc but could not find anything for 3D or 2D visualization.
Any kind of reference to documentation,advice based on personal experience will be appreciated.
Thank you
Yes you can, there is a sperate class in Qt for such kind of painting stuff. This class is called QPainter. You can also use Pyqtgraph along with Opengl.
This may help.
https://doc.qt.io/qt-5/qpainter.html
Plot cube using pyqtgraph in python
I want to use matplotlib's imread/imshow feature on wxpython. What i want is not only image display but also plotting data on image. Is that possible on wxpython using WXAgg matplotlib?
I googled but couldn't find any example of it. Thanks in advance.
I wanted to use a graph on a canvas in tkinter, so I used matplotlib library (matplotlib.backends.tkagg and matplotlib.backends.backend_agg). Now, I want to select a region on the graph by creating a square using my mouse. In an empty canvas it’s possible, but unfortunately, there's no accessor for the pointer to the native renderer of tkagg graph.
Any idea about selecting a region on the graph in matplotlib/tkinter by creating a square using a mouse?
I am working on a project where I am using PYgtk to build UI which make use of matplotlib library for plotting purpose. Plot window is packed in UI using PYgtk scrolled window container widget as the actual plot will be very big in size.
I want to put an image as a background to figure or figurecanvas, but not to subplot. I want subplot to scroll but not background image.
I am trying with slider option in matplotlib. but still no success.
Can anyone help me to solve this issue?
I have a 2 part question:
what is the best method for plotting data in Python? I only need to plot data in 2d.
I have a canvas GUI that I built using Tkinter's canvas function. It draws an 8x8 grid of rectangles and also has some code to allow you to scroll the window. (I've attached a picture).
Is it possible to include a plot in the same window as this canvas object? I need to be able to display plotted data and hopefully add buttons to my GUI that will allow me to update the plot during the run of the GUI.
Thanks in advance!
Matplotlib is the de-facto way to plot data with Python. It's really wonderful. It can also be embedded in Tk.