| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | #pragma once | ||
| 2 | |||
| 3 | #include <cstdint> | ||
| 4 | #include <tuple> | ||
| 5 | #include <vector> | ||
| 6 | |||
| 7 | #include "task/include/task.hpp" | ||
| 8 | |||
| 9 | namespace shilin_n_gauss_filter_vertical_split { | ||
| 10 | |||
| 11 |
4/7✓ Branch 1 taken 63 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 10 times.
✓ Branch 6 taken 60 times.
✗ Branch 7 not taken.
✓ Branch 8 taken 60 times.
✗ Branch 9 not taken.
|
273 | struct ImageData { |
| 12 | std::vector<uint8_t> pixels; | ||
| 13 | int width = 0; | ||
| 14 | int height = 0; | ||
| 15 | int channels = 0; | ||
| 16 | }; | ||
| 17 | |||
| 18 | using InType = ImageData; | ||
| 19 | using OutType = std::vector<uint8_t>; | ||
| 20 | using TestType = std::tuple<int, int>; | ||
| 21 | using BaseTask = ppc::task::Task<InType, OutType>; | ||
| 22 | |||
| 23 | } // namespace shilin_n_gauss_filter_vertical_split | ||
| 24 |