@@ -580,7 +580,7 @@ def detect_feats_in_image(img, **kwargs):
580580 >>> img = imread(img_fpath)
581581 >>> (kpts, vecs) = detect_feats_in_image(img)
582582 >>> # xdoctest: +REQUIRES(--show)
583- >>> import plottool as pt
583+ >>> import plottool_ibeis as pt
584584 >>> pt.interact_keypoints.ishow_keypoints(img, kpts, vecs, ori=True,
585585 >>> ell_alpha=.4, color='distinct')
586586 >>> pt.set_figtitle('Detect Kpts in Image')
@@ -710,7 +710,7 @@ def extract_vecs(img_fpath, kpts, **kwargs):
710710 >>> print('errors.sum() = %r' % (errors.sum(),))
711711 >>> # VISUALIZTION
712712 >>> # xdoctest: +REQUIRES(--show)
713- >>> import plottool as pt
713+ >>> import plottool_ibeis as pt
714714 >>> # Extract the underlying grayscale patches
715715 >>> img = imread(img_fpath)
716716 >>> patch_list = extract_patches(img, kpts)
@@ -765,7 +765,7 @@ def extract_patches(img_or_fpath, kpts, **kwargs):
765765 >>> py_patch_list_ = np.array(vt.get_warped_patches(img_or_fpath, kpts, patch_size=41)[0])
766766 >>> py_patch_list = np.array(vt.convert_image_list_colorspace(py_patch_list_, 'gray'))
767767 >>> # xdoctest: +REQUIRES(--show)
768- >>> import plottool as pt
768+ >>> import plottool_ibeis as pt
769769 >>> ax = pt.draw_patches_and_sifts(cpp_patch_list, None, pnum=(1, 2, 1))
770770 >>> ax.set_title('C++ extracted')
771771 >>> ax = pt.draw_patches_and_sifts(py_patch_list, None, pnum=(1, 2, 2))
@@ -837,7 +837,7 @@ def extract_desc_from_patches(patch_list):
837837 >>> errors = (vecs_list.astype(float) - vecs_array.astype(float)).sum(axis=1)
838838 >>> print('Errors: %r' % (errors,))
839839 >>> # xdoctest: +REQUIRES(--show)
840- >>> import plottool as pt
840+ >>> import plottool_ibeis as pt
841841 >>> ax = pt.draw_patches_and_sifts(patch_list, vecs_array, pnum=(1, 2, 1))
842842 >>> ax.set_title('patch extracted')
843843 >>> ax = pt.draw_patches_and_sifts(patch_list, vecs_list, pnum=(1, 2, 2))
@@ -907,7 +907,7 @@ def test_rot_invar():
907907 """
908908 import cv2
909909 import vtool as vt
910- import plottool as pt
910+ import plottool_ibeis as pt
911911 TAU = 2 * np .pi
912912 fnum = pt .next_fnum ()
913913 NUM_PTS = 5 # 9
0 commit comments