Home
last modified time | relevance | path

Searched refs:Image (Results 1 – 5 of 5) sorted by relevance

/bootable/recovery/
Dinterlace-frames.py29 import Image
37 frames = [Image.open(fn).convert("RGB") for fn in inputs]
47 out = Image.new("RGB", (w, h*N))
70 img2 = Image.open(input)
84 out = Image.new('RGB', (width, height))
DREADME.md1 The Recovery Image
/bootable/recovery/applypatch/include/applypatch/
Dimgdiff_image.h161 class Image {
163 explicit Image(bool is_source) : is_source_(is_source) {} in Image() function
165 virtual ~Image() {} in ~Image()
208 class ZipModeImage : public Image {
210 explicit ZipModeImage(bool is_source, size_t limit = 0) : Image(is_source), limit_(limit) {} in Image() function
288 class ImageModeImage : public Image {
290 explicit ImageModeImage(bool is_source) : Image(is_source) {} in ImageModeImage()
/bootable/recovery/tools/image_generator/
DREADME.md1 Recovery Image Generator
/bootable/recovery/applypatch/
Dimgdiff.cpp581 ImageChunk& Image::operator[](size_t i) { in operator []()
586 const ImageChunk& Image::operator[](size_t i) const { in operator []()
591 void Image::MergeAdjacentNormalChunks() { in MergeAdjacentNormalChunks()
613 void Image::DumpChunks() const { in DumpChunks()
621 bool Image::ReadFile(const std::string& filename, std::vector<uint8_t>* file_content) { in ReadFile()