I have a substantial C++ package for image capture and archive, and would like to display this using pyqtgraph. Using the Python C/API I can run very simple python functions successfully. However if I introduce at the beginning of the python code any or all of:
import numpy as np
import scipy
from pyqtgraph.Qt import QtCore, QtGui
import pyqtgraph as pg
The calling C++ code routine crashes even though none of those functions are used in the python module (which was:
def mply():
c = 12345*6789
print 'The result of 12345 x 6789 :', c
return c
To be honest I'm not even certain that this is actually a pyqtgraph problem but this community will be more familiar with these packages than most.