Why it is so big difference in quality between MPC-CH Windows Media Player and cv2 cv2.VideoCapture('*.mp4') when playing the same file! Codec H. 264 E
How I can improve quality with cv2?
Here is the screenshot Left(cv2) Rigth(MPC-CH):
cv2.namedWindow("Final", 0)
cv2.resizeWindow("Final", 300, 200)
cap = cv2.VideoCapture('1.mp4')
while(cap.isOpened()):
qwe, frame = cap.read()
cv2.waitKey(30)
gray = cv2.cvtColor(frame, cv2.COLOR_BGR2BGRA) #COLOR_RGB2RGBA
cv2.imshow('Final',gray)
Any suggestions ?