blob: d633354ac6edfe3296b85ac761520483f1f80939 [file] [log] [blame]
#ifndef AOS_VISION_BLOB_FIND_BLOB_H_
#define AOS_VISION_BLOB_FIND_BLOB_H_
#include "aos/vision/blob/range_image.h"
namespace aos {
namespace vision {
// Uses disjoint sets to group ranges into disjoint RangeImage.
// ranges that overlap are grouped into the same output RangeImage.
BlobList FindBlobs(const RangeImage &input_image);
} // namespace vision
} // namespace aos
#endif // AOS_VISION_BLOB_FIND_BLOB_H_