blob: b167c3ed06f400793850304acb013fff0a31376c [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 &rimg);
} // namespace vision
} // namespace aos
#endif // _AOS_VISION_BLOB_FIND_BLOB_H_