remove / invalidate connected camera of 1d/2d plot

Issue #98 resolved
Former user created an issue

If a camera can be assigned to a plot handle h of type plotItem via

h["camera"] = myCamera

it would be nice to stop the camera connection via

h["camera"] = None

Comments (1)

  1. M. Gronle

    fixes issue #98: camera can be disconnected from plot by assigning None to the camera property:

    myCam = dataIO("DummyGrabber") [i,h] = liveImage(myCam) h["camera"] = None #disconnect

    → <<cset 851235e1a43d>>

  2. Log in to comment