Documentation of 'boofcv.core.encoding.ConvertNV21' Java class
ConvertNV21
boofcv.core.encoding

Class ConvertNV21



  • public class ConvertNV21
    extends java.lang.Object
    Used to convert NV21 image format used in Android into BoofCV standard image types. NV21 is an encoding of a YUV image [1] (more specifically YUV 4:2:0) where Y is encoded in the first block and UV are interlaced together. The UV planes are at 1/2 resolution.
    • Constructor Detail

      • ConvertNV21

        public ConvertNV21()
    • Method Detail

      • nv21ToBoof

        public static void nv21ToBoof(byte[] data,
                                      int width,
                                      int height,
                                      ImageBase output)
        Converts a NV21 encoded byte array into a BoofCV formatted image.
        Parameters:
        data - (input) NV21 byte array
        width - (input) image width
        height - (input) image height
        output - (output) BoofCV image
      • nv21ToGray

        public static <T extends ImageGray> T nv21ToGray(byte[] data,
                                                         int width,
                                                         int height,
                                                         T output,
                                                         java.lang.Class<T> outputType)
        Converts an NV21 image into a gray scale image. Image type is determined at runtime.
        Type Parameters:
        T - Output image type
        Parameters:
        data - Input: NV21 image data
        width - Input: NV21 image width
        height - Input: NV21 image height
        output - Output: Optional storage for output image. Can be null.
        outputType - Output: Type of output image
        Returns:
        Gray scale image
      • nv21ToGray

        public static GrayU8 nv21ToGray(byte[] data,
                                        int width,
                                        int height,
                                        GrayU8 output)
        Converts an NV21 image into a gray scale U8 image.
        Parameters:
        data - Input: NV21 image data
        width - Input: NV21 image width
        height - Input: NV21 image height
        output - Output: Optional storage for output image. Can be null.
        Returns:
        Gray scale image
      • nv21ToGray

        public static GrayF32 nv21ToGray(byte[] data,
                                         int width,
                                         int height,
                                         GrayF32 output)
        Converts an NV21 image into a gray scale F32 image.
        Parameters:
        data - Input: NV21 image data
        width - Input: NV21 image width
        height - Input: NV21 image height
        output - Output: Optional storage for output image. Can be null.
        Returns:
        Gray scale image
      • nv21ToMsYuv

        public static <T extends ImageGray> Planar<T> nv21ToMsYuv(byte[] data,
                                                                  int width,
                                                                  int height,
                                                                  Planar<T> output,
                                                                  java.lang.Class<T> outputType)
        Converts an NV21 image into a Planar YUV image.
        Type Parameters:
        T - Output image type
        Parameters:
        data - Input: NV21 image data
        width - Input: NV21 image width
        height - Input: NV21 image height
        output - Output: Optional storage for output image. Can be null.
        outputType - Output: Type of output image
      • nv21ToMsYuv_U8

        public static Planar<GrayU8> nv21ToMsYuv_U8(byte[] data,
                                                    int width,
                                                    int height,
                                                    Planar<GrayU8> output)
        Converts an NV21 image into a Planar YUV image with U8 bands.
        Parameters:
        data - Input: NV21 image data
        width - Input: NV21 image width
        height - Input: NV21 image height
        output - Output: Optional storage for output image. Can be null.
      • nv21ToMsRgb_U8

        public static Planar<GrayU8> nv21ToMsRgb_U8(byte[] data,
                                                    int width,
                                                    int height,
                                                    Planar<GrayU8> output)
        Converts an NV21 image into a Planar RGB image with U8 bands.
        Parameters:
        data - Input: NV21 image data
        width - Input: NV21 image width
        height - Input: NV21 image height
        output - Output: Optional storage for output image. Can be null.
      • nv21ToInterleaved

        public static InterleavedU8 nv21ToInterleaved(byte[] data,
                                                      int width,
                                                      int height,
                                                      InterleavedU8 output)
        Converts an NV21 image into a InterleavedU8 RGB image.
        Parameters:
        data - Input: NV21 image data
        width - Input: NV21 image width
        height - Input: NV21 image height
        output - Output: Optional storage for output image. Can be null.
      • nv21ToMsYuv_F32

        public static Planar<GrayF32> nv21ToMsYuv_F32(byte[] data,
                                                      int width,
                                                      int height,
                                                      Planar<GrayF32> output)
        Converts an NV21 image into a Planar YUV image with F32 bands.
        Parameters:
        data - Input: NV21 image data
        width - Input: NV21 image width
        height - Input: NV21 image height
        output - Output: Optional storage for output image. Can be null.
      • nv21ToMsRgb_F32

        public static Planar<GrayF32> nv21ToMsRgb_F32(byte[] data,
                                                      int width,
                                                      int height,
                                                      Planar<GrayF32> output)
        Converts an NV21 image into a Planar RGB image with F32 bands.
        Parameters:
        data - Input: NV21 image data
        width - Input: NV21 image width
        height - Input: NV21 image height
        output - Output: Optional storage for output image. Can be null.
      • nv21ToInterleaved

        public static InterleavedF32 nv21ToInterleaved(byte[] data,
                                                       int width,
                                                       int height,
                                                       InterleavedF32 output)
        Converts an NV21 image into a InterleavedF32 RGB image.
        Parameters:
        data - Input: NV21 image data
        width - Input: NV21 image width
        height - Input: NV21 image height
        output - Output: Optional storage for output image. Can be null.

DataMelt 3.0 © DataMelt by jWork.ORG

You see the box below because you did not login.