def view_widget(self, browser_style='buttons', figure_size=(10, 8)): r""" Visualization of the PointCloud using the :map:`visualize_pointclouds` widget. Parameters ---------- browser_style : ``{buttons, slider}``, optional It defines whether the selector of the PointCloud objects will have the form of plus/minus buttons or a slider. figure_size : (`int`, `int`), optional The initial size of the rendered figure. """ from menpo.visualize import visualize_pointclouds visualize_pointclouds(self, figure_size=figure_size, browser_style=browser_style)
def view_widget(self, popup=False, browser_style='buttons', figure_size=(10, 8)): r""" Visualization of the TriMesh using the :map:`visualize_pointclouds` widget. Parameters ---------- popup : `bool`, optional If ``True``, the widget will be rendered in a popup window. browser_style : {``buttons``, ``slider``}, optional It defines whether the selector of the TriMesh objects will have the form of plus/minus buttons or a slider. figure_size : (`int`, `int`), optional The initial size of the rendered figure. """ from menpo.visualize import visualize_pointclouds visualize_pointclouds(self, popup=popup, figure_size=figure_size, browser_style=browser_style)
def view_widget(self, popup=False, browser_style='buttons', figure_size=(10, 8)): r""" Visualization of the PointGraph using the :map:`visualize_pointclouds` widget. Parameters ---------- popup : `bool`, optional If ``True``, the widget will be rendered in a popup window. browser_style : ``{buttons, slider}``, optional It defines whether the selector of the PointGraph objects will have the form of plus/minus buttons or a slider. figure_size : (`int`, `int`) `tuple`, optional The initial size of the rendered figure. """ from menpo.visualize import visualize_pointclouds visualize_pointclouds(self, popup=popup, figure_size=figure_size, browser_style=browser_style)
def view_widget(self, browser_style="buttons", figure_size=(10, 8), style="coloured"): r""" Visualization of the TriMesh using the :map:`visualize_pointclouds` widget. Parameters ---------- browser_style : {``'buttons'``, ``'slider'``}, optional It defines whether the selector of the objects will have the form of plus/minus buttons or a slider. figure_size : (`int`, `int`) `tuple`, optional The initial size of the rendered figure. style : {``'coloured'``, ``'minimal'``}, optional If ``'coloured'``, then the style of the widget will be coloured. If ``minimal``, then the style is simple using black and white colours. """ from menpo.visualize import visualize_pointclouds visualize_pointclouds(self, figure_size=figure_size, style=style, browser_style=browser_style)
def view_widget(self, browser_style='buttons', figure_size=(10, 8), style='coloured'): r""" Visualization of the PointCloud using the :map:`visualize_pointclouds` widget. Parameters ---------- browser_style : {``'buttons'``, ``'slider'``}, optional It defines whether the selector of the objects will have the form of plus/minus buttons or a slider. figure_size : (`int`, `int`), optional The initial size of the rendered figure. style : {``'coloured'``, ``'minimal'``}, optional If ``'coloured'``, then the style of the widget will be coloured. If ``minimal``, then the style is simple using black and white colours. """ from menpo.visualize import visualize_pointclouds visualize_pointclouds(self, figure_size=figure_size, style=style, browser_style=browser_style)