| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | #pragma once | ||
| 2 | |||
| 3 | #include <cstdint> | ||
| 4 | #include <string> | ||
| 5 | #include <tuple> | ||
| 6 | #include <vector> | ||
| 7 | |||
| 8 | #include "task/include/task.hpp" | ||
| 9 | |||
| 10 | namespace kondrashova_v_gauss_filter_vertical_split { | ||
| 11 | |||
| 12 | ✗ | struct ImageData { | |
| 13 | std::vector<uint8_t> pixels; | ||
| 14 | int width{0}; | ||
| 15 | int height{0}; | ||
| 16 | int channels{1}; | ||
| 17 | |||
| 18 | bool operator==(const ImageData &other) const { | ||
| 19 | return width == other.width && height == other.height && channels == other.channels && pixels == other.pixels; | ||
| 20 | } | ||
| 21 | }; | ||
| 22 | |||
| 23 | using InType = ImageData; | ||
| 24 | using OutType = ImageData; | ||
| 25 | using TestType = std::tuple<int, std::string>; | ||
| 26 | using BaseTask = ppc::task::Task<InType, OutType>; | ||
| 27 | |||
| 28 | } // namespace kondrashova_v_gauss_filter_vertical_split | ||
| 29 |