Fixed compilation bug.

This commit is contained in:
Axel 2021-06-21 17:08:30 +02:00 committed by Corinne
parent d93aaf7624
commit b54d11d8f7
1 changed files with 6 additions and 0 deletions

View File

@ -24,6 +24,12 @@ namespace data {
return out;
}
std::ostream &operator<<(std::ostream &out, const OpticalFlowPixel &color) {
out << "Color(" << std::to_string(color.x)
<< ',' << std::to_string(color.y) << ')';
return out;
}
} // namespace data
} // namespace sensor