| 1102 | |
| 1103 | |
| 1104 | bool pixelIsNotCovered(cv::Point2i pixel, const cv::Mat1i& coveredPixels) |
| 1105 | { |
| 1106 | return (coveredPixels.at<int>(pixel.y, pixel.x) == 0); |
| 1107 | } |
| 1108 | |
| 1109 | |
| 1110 | void visualizeChunks(const cv::Mat1i& coveredPixels) // Random color for each chunk |
no outgoing calls
no test coverage detected