summaryrefslogtreecommitdiffstats
path: root/third_party/jpeg-xl/lib/jxl/enc_debug_image.h
blob: 33799a5f7f39e4231cccd94964d646fddf6f4177 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Copyright (c) the JPEG XL Project Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

#ifndef LIB_JXL_ENC_DEBUG_IMAGE_H_
#define LIB_JXL_ENC_DEBUG_IMAGE_H_

// Optional output images for debugging.

#include <stddef.h>
#include <stdint.h>

#include "lib/jxl/enc_params.h"
#include "lib/jxl/image.h"

namespace jxl {

void DumpImage(const CompressParams& cparams, const char* label,
               const Image3<float>& image);
void DumpImage(const CompressParams& cparams, const char* label,
               const Image3<uint8_t>& image);
void DumpXybImage(const CompressParams& cparams, const char* label,
                  const Image3<float>& image);
void DumpPlaneNormalized(const CompressParams& cparams, const char* label,
                         const Plane<float>& image);
void DumpPlaneNormalized(const CompressParams& cparams, const char* label,
                         const Plane<uint8_t>& image);

// Used to skip image creation if they won't be written to debug directory.
static inline bool WantDebugOutput(const CompressParams& cparams) {
  return cparams.debug_image != nullptr;
}

}  // namespace jxl

#endif  // LIB_JXL_ENC_DEBUG_IMAGE_H_