ImageDataFloat64.from constructor

ImageDataFloat64.from(
  1. ImageDataFloat64 other, {
  2. bool skipPixels = false,
})

Implementation

ImageDataFloat64.from(ImageDataFloat64 other, {bool skipPixels = false})
    : data = skipPixels
          ? Float64List(other.data.length)
          : Float64List.fromList(other.data),
      super(other.width, other.height, other.numChannels);