| 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 dorogin_v_bin_img_conv_hull_omp { | ||
| 11 | |||
| 12 | struct Point { | ||
| 13 | int x{}; | ||
| 14 | int y{}; | ||
| 15 | }; | ||
| 16 | |||
| 17 |
1/2✓ Branch 1 taken 20 times.
✗ Branch 2 not taken.
|
100 | struct BinaryImage { |
| 18 | int width{}; | ||
| 19 | int height{}; | ||
| 20 | std::vector<std::uint8_t> data; | ||
| 21 | }; | ||
| 22 | |||
| 23 | using ComponentHull = std::vector<Point>; | ||
| 24 | using InType = BinaryImage; | ||
| 25 | using OutType = std::vector<ComponentHull>; | ||
| 26 | |||
| 27 | using TestType = std::tuple<int, std::string>; | ||
| 28 | using BaseTask = ppc::task::Task<InType, OutType>; | ||
| 29 | |||
| 30 | } // namespace dorogin_v_bin_img_conv_hull_omp | ||
| 31 |