def draw(self, contours=False, lines=False, corners=False):

        if contours:
            Drawing.draw_contours(self._frame)

        if lines:
            Drawing.detect_lines(self._frame)

        if corners:
            Drawing.detect_corners(self._frame)

        Drawing.match_and_render(self._frame, self._img_marker, self._model,
                                 const.METHOD_ORB)