Is it possible to convert png image using Image Magick into raw NV21 or NV12 formart ?
I do the following:
convert test_color.png -size 1024x768 -depth 8 -colorspace Rec601YCbCr yuv:image.bin
The converted image is YV12 according to the rawpixels.net
I want to convert the picture into NV21 for the reference to test my converters.
Thanks!