mirror of
https://github.com/open-mmlab/mmselfsup.git
synced 2025-06-03 14:59:38 +08:00
[Fix]: fix docstring of visualization (#417)
This commit is contained in:
parent
8de714fa76
commit
adbcd176b6
@ -26,7 +26,7 @@ class SelfSupDataSample(BaseDataElement):
|
|||||||
>>> import torch
|
>>> import torch
|
||||||
>>> import numpy as np
|
>>> import numpy as np
|
||||||
>>> from mmengine.data import InstanceData
|
>>> from mmengine.data import InstanceData
|
||||||
>>> from mmselfsup.core import SelfSupDataSample
|
>>> from mmselfsup.structures import SelfSupDataSample
|
||||||
|
|
||||||
>>> data_sample = SelfSupDataSample()
|
>>> data_sample = SelfSupDataSample()
|
||||||
>>> gt_label = LabelData()
|
>>> gt_label = LabelData()
|
||||||
|
@ -62,7 +62,7 @@ class SelfSupVisualizer(Visualizer):
|
|||||||
def __init__(self,
|
def __init__(self,
|
||||||
name: str = 'visualizer',
|
name: str = 'visualizer',
|
||||||
image: Optional[np.ndarray] = None,
|
image: Optional[np.ndarray] = None,
|
||||||
vis_backends: Optional[Dict] = None,
|
vis_backends: Optional[List[Dict]] = None,
|
||||||
save_dir: Optional[str] = None,
|
save_dir: Optional[str] = None,
|
||||||
line_width: Union[int, float] = 3,
|
line_width: Union[int, float] = 3,
|
||||||
alpha: Union[int, float] = 0.8):
|
alpha: Union[int, float] = 0.8):
|
||||||
@ -84,12 +84,12 @@ class SelfSupVisualizer(Visualizer):
|
|||||||
boxes: InstanceData,
|
boxes: InstanceData,
|
||||||
edge_colors: Union[str, tuple, List[str], List[tuple]] = 'r'
|
edge_colors: Union[str, tuple, List[str], List[tuple]] = 'r'
|
||||||
) -> np.ndarray:
|
) -> np.ndarray:
|
||||||
"""Draw instances of GT or prediction.
|
"""Draw instance with boxes.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
image (np.ndarray): The image to draw.
|
image (np.ndarray): The image to draw.
|
||||||
boxes (:obj:`InstanceData`): Data structure for
|
boxes (:obj:`InstanceData`): Data structure for
|
||||||
instance-level annotations or predictions.
|
instance-level box annotations.
|
||||||
edge_colors (Union[str, tuple, List[str], List[tuple]]): The
|
edge_colors (Union[str, tuple, List[str], List[tuple]]): The
|
||||||
colors of boxes. ``colors`` can have the same length with
|
colors of boxes. ``colors`` can have the same length with
|
||||||
lines or just single value. If ``colors`` is single value, all
|
lines or just single value. If ``colors`` is single value, all
|
||||||
@ -115,12 +115,12 @@ class SelfSupVisualizer(Visualizer):
|
|||||||
mask: InstanceData,
|
mask: InstanceData,
|
||||||
colors: Union[str, tuple, List[str],
|
colors: Union[str, tuple, List[str],
|
||||||
List[tuple]] = 'k') -> np.ndarray:
|
List[tuple]] = 'k') -> np.ndarray:
|
||||||
"""Draw binary mask of GT or prediction.
|
"""Draw instance with binary mask.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
image (np.ndarray): The image to draw.
|
image (np.ndarray): The image to draw.
|
||||||
mask (:obj:`InstanceData`): Data structure for
|
mask (:obj:`InstanceData`): Data structure for
|
||||||
pixel-level annotations or predictions.
|
pixel-level annotations.
|
||||||
colors (Union[str, tuple, List[str], List[tuple]]): The colors
|
colors (Union[str, tuple, List[str], List[tuple]]): The colors
|
||||||
which binary_masks will convert to. ``colors`` can have
|
which binary_masks will convert to. ``colors`` can have
|
||||||
the same length with binary_masks or just single value.
|
the same length with binary_masks or just single value.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user