File: tiff_tiled_write_macros.hpp

package info (click to toggle)
boost1.74 1.74.0-9
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 464,084 kB
  • sloc: cpp: 3,338,324; xml: 131,293; python: 33,088; ansic: 14,336; asm: 4,034; sh: 3,351; makefile: 1,193; perl: 1,036; yacc: 478; php: 212; ruby: 102; lisp: 24; sql: 13; csh: 6
file content (177 lines) | stat: -rw-r--r-- 14,299 bytes parent folder | download | duplicates (10)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
//
// Copyright 2013 Christian Henning
//
// Distributed under the Boost Software License, Version 1.0
// See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt
//
#ifndef BOOST_GIL_TEST_EXTENSION_IO_TIFF_TIFF_TILED_WRITE_MACROS_HPP
#define BOOST_GIL_TEST_EXTENSION_IO_TIFF_TIFF_TILED_WRITE_MACROS_HPP

#include <boost/gil.hpp>
#include <boost/gil/extension/io/tiff.hpp>

#include <boost/preprocessor/cat.hpp>
#include <boost/preprocessor/stringize.hpp>
#include <boost/preprocessor/tuple/elem.hpp>
#include <boost/preprocessor/comparison/less.hpp>
#include <boost/preprocessor/repetition/repeat_from_to.hpp>

#include <string>

#include "paths.hpp"

// TODO: Rename macros to use BOOST_GIL_ prefix. See https://github.com/boostorg/gil/issues/410 ~mloskot
// TODO: Make sure generated test cases are executed. See tiff_subimage_test.cpp. ~mloskot

#ifdef BOOST_GIL_IO_TEST_ALLOW_WRITING_IMAGES

#define GENERATE_WRITE_TILE_BIT_ALIGNED_RGB(z, n, data)                                            \
    void BOOST_PP_CAT(                                                                             \
        BOOST_PP_CAT(                                                                              \
            BOOST_PP_CAT(BOOST_PP_CAT(write_rgb_tile_and_compare_with_, data), _strip_), n),       \
        bit_bit_aligned)()                                                                         \
    {                                                                                              \
        namespace gil = boost::gil;                                                                \
        std::string filename(std::string("tiger-") + BOOST_PP_STRINGIZE(data) + "-strip-contig-");           \
        std::string path(tiff_in_GM);                                                                   \
        std::string padding("");                                                                        \
        if (BOOST_PP_LESS(n, 10) == 1)                                                             \
            padding = "0";                                                                         \
        filename += padding + BOOST_PP_STRINGIZE(n) + ".tif";                                      \
        path += filename;                                                                          \
        gil::bit_aligned_image3_type<n, n, n, gil::rgb_layout_t>::type img_strip, img_saved;       \
        gil::read_image(path, img_strip, gil::tiff_tag());                                         \
        gil::image_write_info<gil::tiff_tag> info;                                                 \
        info._is_tiled   = true;                                                                   \
        info._tile_width = info._tile_length = 16;                                                 \
        gil::write_view(tiff_out + filename, gil::view(img_strip), info);                          \
        gil::read_image(tiff_out + filename, img_saved, gil::tiff_tag());                          \
        BOOST_TEST_EQ(                                                                             \
            gil::equal_pixels(gil::const_view(img_strip), gil::const_view(img_saved)), true);      \
    }

// Special case for minisblack images
#define GENERATE_WRITE_TILE_BIT_ALIGNED_MINISBLACK(z, n, data)                                     \
    void BOOST_PP_CAT(                                                                             \
        BOOST_PP_CAT(                                                                              \
            BOOST_PP_CAT(BOOST_PP_CAT(write_minisblack_tile_and_compare_with_, data), _strip_),    \
            n),                                                                                    \
        bit_bit_aligned)()                                                                         \
    {                                                                                              \
        namespace gil = boost::gil;                                                                \
        std::string filename(std::string("tiger-") + BOOST_PP_STRINGIZE(data) + "-strip-");                  \
        std::string path(tiff_in_GM);                                                                   \
        std::string padding("");                                                                        \
        if (BOOST_PP_LESS(n, 10) == 1)                                                             \
            padding = "0";                                                                         \
        filename = filename + padding + BOOST_PP_STRINGIZE(n) + ".tif";                            \
        path += filename;                                                                          \
        gil::bit_aligned_image1_type<n, gil::gray_layout_t>::type img_strip, img_saved;                 \
        gil::read_image(path, img_strip, gil::tiff_tag());                                         \
        gil::image_write_info<gil::tiff_tag> info;                                                 \
        info._is_tiled   = true;                                                                   \
        info._tile_width = info._tile_length = 16;                                                 \
        gil::write_view(tiff_out + filename, gil::view(img_strip), info);                          \
        gil::read_image(tiff_out + filename, img_saved, gil::tiff_tag());                          \
        BOOST_TEST_EQ(                                                                             \
            gil::equal_pixels(gil::const_view(img_strip), gil::const_view(img_saved)), true);      \
    }

// Special case for palette images
#define GENERATE_WRITE_TILE_BIT_ALIGNED_PALETTE(z, n, data)                                        \
    void BOOST_PP_CAT(                                                                             \
        BOOST_PP_CAT(                                                                              \
            BOOST_PP_CAT(BOOST_PP_CAT(write_palette_tile_and_compare_with_, data), _strip_), n),   \
        bit)()                                                                                     \
    {                                                                                              \
        namespace gil = boost::gil;                                                                \
        std::string filename(std::string("tiger-") + BOOST_PP_STRINGIZE(data) + "-strip-");                  \
        std::string path(tiff_in_GM);                                                                   \
        std::string padding("");                                                                        \
        if (BOOST_PP_LESS(n, 10) == 1)                                                             \
            padding = "0";                                                                         \
        filename = filename + padding + BOOST_PP_STRINGIZE(n) + ".tif";                            \
        path += filename;                                                                          \
        gil::rgb16_image_t img_strip, img_saved;                                                   \
        gil::read_image(path, img_strip, gil::tiff_tag());                                         \
        gil::image_write_info<gil::tiff_tag> info;                                                 \
        info._is_tiled   = true;                                                                   \
        info._tile_width = info._tile_length = 16;                                                 \
        gil::write_view(tiff_out + filename, gil::view(img_strip), info);                          \
        gil::read_image(tiff_out + filename, img_saved, gil::tiff_tag());                          \
        BOOST_TEST_EQ(                                                                             \
            gil::equal_pixels(gil::const_view(img_strip), gil::const_view(img_saved)), true);      \
    }

#else

#define GENERATE_WRITE_TILE_BIT_ALIGNED_RGB(z, n, data)                                            \
    void BOOST_PP_CAT(                                                                             \
        BOOST_PP_CAT(                                                                              \
            BOOST_PP_CAT(BOOST_PP_CAT(write_rgb_tile_and_compare_with_, data), _strip_), n),       \
        bit_bit_aligned)()                                                                         \
    {                                                                                              \
        namespace gil = boost::gil;                                                                \
        std::string filename(std::string("tiger-") + BOOST_PP_STRINGIZE(data) + "-strip-contig-");           \
        std::string path(tiff_in_GM);                                                                   \
        std::string padding("");                                                                        \
        if (BOOST_PP_LESS(n, 10) == 1)                                                             \
            padding = "0";                                                                         \
        filename += padding + BOOST_PP_STRINGIZE(n) + ".tif";                                      \
        path += filename;                                                                          \
        gil::bit_aligned_image3_type<n, n, n, gil::rgb_layout_t>::type img_strip, img_saved;       \
        gil::read_image(path, img_strip, gil::tiff_tag());                                         \
        gil::image_write_info<gil::tiff_tag> info;                                                 \
        info._is_tiled   = true;                                                                   \
        info._tile_width = info._tile_length = 16;                                                 \
    }

// Special case for minisblack images
#define GENERATE_WRITE_TILE_BIT_ALIGNED_MINISBLACK(z, n, data)                                     \
    voidBOOST_PP_CAT(                                                                              \
        BOOST_PP_CAT(                                                                              \
            BOOST_PP_CAT(BOOST_PP_CAT(write_minisblack_tile_and_compare_with_, data), _strip_),    \
            n),                                                                                    \
        bit_bit_aligned)()                                                                         \
    {                                                                                              \
        namespace gil = boost::gil;                                                                \
        std::string filename(std::string("tiger-") + BOOST_PP_STRINGIZE(data) + "-strip-");                  \
        std::string path(tiff_in_GM);                                                                   \
        std::string padding("");                                                                        \
        if (BOOST_PP_LESS(n, 10) == 1)                                                             \
            padding = "0";                                                                         \
        filename = filename + padding + BOOST_PP_STRINGIZE(n) + ".tif";                            \
        path += filename;                                                                          \
        gil::bit_aligned_image1_type<n, gil::gray_layout_t>::type img_strip, img_saved;            \
        gil::read_image(path, img_strip, gil::tiff_tag());                                         \
        gil::image_write_info<gil::tiff_tag> info;                                                 \
        info._is_tiled   = true;                                                                   \
        info._tile_width = info._tile_length = 16;                                                 \
    }

// Special case for palette images
#define GENERATE_WRITE_TILE_BIT_ALIGNED_PALETTE(z, n, data)                                        \
    void BOOST_PP_CAT(                                                                             \
        BOOST_PP_CAT(                                                                              \
            BOOST_PP_CAT(BOOST_PP_CAT(write_palette_tile_and_compare_with_, data), _strip_), n),   \
        bit)()                                                                                     \
    {                                                                                              \
        namespace gil = boost::gil;                                                                \
        std::string filename(std::string("tiger-") + BOOST_PP_STRINGIZE(data) + "-strip-");                  \
        std::string path(tiff_in_GM);                                                                   \
        std::string padding("");                                                                        \
        if (BOOST_PP_LESS(n, 10) == 1)                                                             \
            padding = "0";                                                                         \
        filename = filename + padding + BOOST_PP_STRINGIZE(n) + ".tif";                            \
        path += filename;                                                                          \
        gil::rgb16_image_t img_strip, img_saved;                                                   \
        gil::read_image(path, img_strip, gil::tiff_tag());                                         \
        gil::image_write_info<gil::tiff_tag> info;                                                 \
        info._is_tiled   = true;                                                                   \
        info._tile_width = info._tile_length = 16;                                                 \
    }

#endif  // BOOST_GIL_IO_TEST_ALLOW_WRITING_IMAGES

#endif // BOOST_GIL_TEST_EXTENSION_IO_TIFF_TIFF_TILED_WRITE_MACROS_HPP