MCPcopy Index your code
hub / github.com/DeepLabCut/DeepLabCut / __init__

Method __init__

deeplabcut/gui/widgets.py:43–53  ·  view source on GitHub ↗
(self, parent, **kwargs)

Source from the content-addressed store, hash-verified

41
42class BaseFrame(QtWidgets.QFrame):
43 def __init__(self, parent, **kwargs):
44 super().__init__(parent)
45
46 self.figure = Figure()
47 self.axes = self.figure.add_subplot(1, 1, 1)
48 self.canvas = FigureCanvas(self.figure)
49 self.orig_xlim = None
50 self.orig_ylim = None
51
52 layout = QtWidgets.QVBoxLayout(self)
53 layout.addWidget(self.canvas)
54
55 def getfigure(self):
56 """Returns the figure, axes and canvas."""

Callers 10

__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected