Code Monkey home page Code Monkey logo

flutter-yuvimage's Introduction

Small dart only library for manipulating yuv images. Usually coming from CameraImage. Supports i420 for android and nv21 for ios

Features

Allows you to receive a CameraImage, convert it to YuvImage and do some manipulation, like, crop, rotate, get, set colors and feed it forward. Since it's pure dart, code is slow for streaming.

Usage

const _shift = (0xFF << 24);

extension Yuv420ImageExt on YuvImage {
  imglib.Image toBitmap() {
    var img = imglib.Image(width.toInt(), height.toInt());

    for (int x = 0; x < width; x++) {
      for (int y = 0; y < height; y++) {
        var color = getColor(x, y);
        final int index = y * width.toInt() + x;
        img.data[index] = _shift | (color.b << 16) | (color.g << 8) | color.r;
      }
    }

    return img;
  }

  InputImage toInputImage(int sensorOrientation) {
    final bytes = getBytes();
    final InputImageRotation imageRotation = InputImageRotationValue.fromRawValue(sensorOrientation)!;
    final inputImageData = InputImageData(
      size: size,
      imageRotation: imageRotation,
      inputImageFormat: InputImageFormat.yuv420,
      planeData: planes
          .map(
            (yuvPlane) => InputImagePlaneMetadata(
              bytesPerRow: yuvPlane.rowStride,
              height: yuvPlane.height,
              width: yuvPlane.width,
            ),
          )
          .toList(growable: false),
    );

    final inputImage = InputImage.fromBytes(bytes: bytes, inputImageData: inputImageData);
    return inputImage;
  }
}

extension Camera2YuvImageExt on CameraImage {
  YuvImage toYuvImage() {
    final image = YuvParser.fromRaw(
      width,
      height,
      planes.map((data) => YuvPlaneParserData(data.bytesPerRow, data.bytesPerPixel, data.bytes)).toList(),
    );
    return image;
  }
}

flutter-yuvimage's People

Contributors

anfet avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.