From 8d6720c930b5ba60f25116d5f8d0d1c566b30d76 Mon Sep 17 00:00:00 2001 From: "koki1.saitoh" Date: Tue, 16 Jan 2018 18:00:34 +0900 Subject: [PATCH] Fix example code in a detection tutorial --- docs/source/tutorial/detection.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/tutorial/detection.rst b/docs/source/tutorial/detection.rst index d1af213b4e..b4ee88a561 100644 --- a/docs/source/tutorial/detection.rst +++ b/docs/source/tutorial/detection.rst @@ -63,7 +63,7 @@ Here is an example with a simple toy data. # We call a variable/array of bounding boxes as `bbox` throughout the library bbox = np.array([[10, 10, 20, 40], [150, 150, 200, 200]], dtype=np.float32) - chainercv.visualizations.vis_bbox(img, bbox) + vis_bbox(img, bbox) plt.show() .. figure:: ../../image/detection_tutorial_simple_bbox.png