Hello, I'm trying to do some image analysis with a .tif file (that I've converted into a numpy.ndarray), and I'm trying to incorporate pyqtgraph with my current PyQt GUI. It seems that the best way to get the image analysis controls I need (ROI and histogramLUT) is to call pyqtgraph.image() on my data, as such:
import pyqtgraph as pg data = tif_file.array() # assume this gives me numpy.ndarray pg.image(data) This automatically creates an ImageWindow with all the stuff I want. Great! However, I'm wondering how I can make all the items in this ImageWindow fit in my preexisting GUI. I would like the users to have the image and controls display in the same window they're operating on, rather than display in a new window. Is this possible at all? I would really appreciate it if someone could help me out. Please let me know if you need me to explain anything more clearly. Thanks, Arun Shriram -- You received this message because you are subscribed to the Google Groups "pyqtgraph" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/pyqtgraph/0ef2e976-939f-4224-9693-e69955c7c779%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
