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