コード例 #1
0
ファイル: viewmatplotlib.py プロジェクト: OlivierML/menpo
 def save_figure_widget(self):
     r"""
     Method for saving the figure of the current ``figure_id`` to file using
     :func:`menpo.visualize.widgets.base.save_matplotlib_figure` widget.
     """
     from menpo.visualize.widgets import save_matplotlib_figure
     save_matplotlib_figure(self)
コード例 #2
0
ファイル: viewmatplotlib.py プロジェクト: lijian8/menpo
 def save_figure_widget(self):
     r"""
     Method for saving the figure of the current ``figure_id`` to file using
     :func:`menpo.visualize.widgets.base.save_matplotlib_figure` widget.
     """
     from menpo.visualize.widgets import save_matplotlib_figure
     save_matplotlib_figure(self)
コード例 #3
0
    def save_figure_widget(self, popup=True):
        r"""
        Method for saving the figure of the current ``figure_id`` to file using
        :func:`menpo.visualize.widgets.base.save_matplotlib_figure` widget.

        Parameters
        ----------
        popup : `bool`, optional
            If ``True``, the widget will appear as a popup window.
        """
        from menpo.visualize.widgets import save_matplotlib_figure
        save_matplotlib_figure(self, popup=popup)