I'm building Unity+Tango android app. In my OnTangoImageAvailableEventHandler
handler I receive images with format 17
, which corresponds to YCRCB_420_SP
(NV21) format. I however, need images in generic YUV_420_888 format. Thus, it's either need to be converted (how?) or requested originally from the camera during setup.
Is the latter possible? If not, any pointers on how to do the former?