Note
You are reading the documentation for MMClassification 0.x, which will soon be deprecated at the end of 2022. We recommend you upgrade to MMClassification 1.0 to enjoy fruitful new features and better performance brought by OpenMMLab 2.0. Check the installation tutorial, migration tutorial and changelog for more details.
mmcls.apis.show_result_pyplot¶
- mmcls.apis.show_result_pyplot(model, img, result, fig_size=(15, 10), title='result', wait_time=0)[source]¶
Visualize the classification results on the image.
- Parameters
model (nn.Module) – The loaded classifier.
img (str or np.ndarray) – Image filename or loaded image.
result (list) – The classification result.
fig_size (tuple) – Figure size of the pyplot figure. Defaults to (15, 10).
title (str) – Title of the pyplot figure. Defaults to ‘result’.
wait_time (int) – How many seconds to display the image. Defaults to 0.