Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions mmseg/visualization/local_visualizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def _draw_sem_seg(self,
sem_seg: PixelData,
classes: Optional[List],
palette: Optional[List],
with_labels: Optional[bool] = True) -> np.ndarray:
with_labels: Optional[bool] = False) -> np.ndarray:
"""Draw semantic seg of GT or prediction.

Args:
Expand Down Expand Up @@ -265,7 +265,7 @@ def add_datasample(
# TODO: Supported in mmengine's Viusalizer.
out_file: Optional[str] = None,
step: int = 0,
with_labels: Optional[bool] = True) -> None:
with_labels: Optional[bool] = False) -> None:
"""Draw datasample and save to all backends.

- If GT and prediction are plotted at the same time, they are
Expand Down