1 | initial version |
if you expected the VideoWriter to do an automatic greyscale conversion -- NO, it won't happen.
you need to convert your images manually (or try to get greyscale data from the VideoCapture,e.g.Y from YUV), then set the writeColorImages
flag in the writer to false.
2 | No.2 Revision |
if you expected the VideoWriter to do an automatic greyscale conversion -- NO, it won't happen.
you need to convert your images manually (or try to get greyscale data from the VideoCapture,e.g.Y from YUV), then set the
flag in the writer to false.writeColorImagesisColor
3 | No.3 Revision |
if you expected the VideoWriter to do an automatic greyscale conversion -- NO, it won't happen.
you need to convert your images manually (or try to get greyscale data from the VideoCapture,e.g.Y VideoCapture, e.g.Y from YUV), then set the isColor
flag in the writer to false.