importcv2importmatplotlib.pyplotaspltimage=cv2.imread(r"D:\sims\eb\sim21\EB-ML-06-10-2022-Test-Output-15\PERFORATION\Overkill\Fail\Blister 1 2022-03-12 12-59-43.859 T0 M0 G0 3 PERFORATION Mono.bmp",1)# Loading the imagehalf=cv2.resize(image,(0,0),fx=0.1,fy=0.1)bigger=cv2.resize(image,(1050,1610))stretch_near=cv2.resize(image,(780,540),interpolation=cv2.INTER_LINEAR)Titles=["Original","Half","Bigger","Interpolation Nearest"]images=[image,half,bigger,stretch_near]count=4foriinrange(count):plt.subplot(2,2,i+1)plt.title(Titles[i])plt.imshow(images[i])plt.show()