blob: e0c706c486840219c9ce7f5a0ff152e507239ab6 [file] [log] [blame]
Parker Schuh0ff777c2017-02-19 15:01:13 -08001#ifndef AOS_VISION_BLOB_TEST_UTILS_H_
2#define AOS_VISION_BLOB_TEST_UTILS_H_
3
4#include "aos/vision/blob/range_image.h"
5
6namespace aos {
7namespace vision {
8
9// For tests. Loads a RangeImage from a constant string.
10//
11// For example this should look something like this:
12// first and final returns will be stripped.
13//
14// R"(
15// --- ---
16// -----
17// --
18// )"
19RangeImage LoadFromTestData(int mini, const char *data);
20
21} // namespace vision
22} // namespace aos
23
24#endif // AOS_VISION_BLOB_TEST_UTILS_H_