HHousen / lecture2notes

Expression not assigned PYL-W0106
Performance
Major
3 years ago4 years old
Expression "(plt.imshow(img3, 'gray'), plt.show())" is assigned to nothing
130            flags=2,
131        )
132        img3 = cv2.drawMatches(img1, kp1, img2, kp2, sift_matches, None, **draw_params)
133        plt.imshow(img3, "gray"), plt.show()134
135    return dst
136