Finds connected regions in a boolean image. More...
Go to the source code of this file.
Typedefs | |
| typedef std::vector< vil_chord > | vil_blob_region |
| A region is a vector of chords that came from a connected blob. More... | |
| typedef std::vector< std::pair< unsigned, unsigned > > | vil_blob_pixel_list |
| A pixel list is a vector of <i,j> pixel positions. More... | |
Enumerations | |
| enum | vil_blob_connectivity { vil_blob_4_conn, vil_blob_8_conn } |
| Specify 4- or 8- neighbour connectivity. More... | |
Functions | |
| void | vil_blob_labels (const vil_image_view< bool > &src_binary, vil_blob_connectivity conn, vil_image_view< unsigned > &dest_label) |
| Produce a label image that enumerates all disjoint blobs in a binary image. More... | |
| void | vil_blob_labels_to_edge_labels (const vil_image_view< unsigned > &src_label, vil_blob_connectivity conn, vil_image_view< unsigned > &dest_label) |
| Set all non-blob-edge pixels in a blob label image to zero. More... | |
| void | vil_blob_labels_to_regions (const vil_image_view< unsigned > &src_label, std::vector< vil_blob_region > &dest_regions) |
| Convert a label image into a list of chorded regions. More... | |
| void | vil_blob_labels_to_pixel_lists (const vil_image_view< unsigned > &src_label, std::vector< vil_blob_pixel_list > &dest_pixel_lists) |
| Convert a label image into a list of pixel lists. More... | |
Finds connected regions in a boolean image.
Definition in file vil_blob.h.
| typedef std::vector<std::pair<unsigned, unsigned> > vil_blob_pixel_list |
A pixel list is a vector of <i,j> pixel positions.
Definition at line 60 of file vil_blob.h.
| typedef std::vector<vil_chord> vil_blob_region |
A region is a vector of chords that came from a connected blob.
Definition at line 51 of file vil_blob.h.
Specify 4- or 8- neighbour connectivity.
| Enumerator | |
|---|---|
| vil_blob_4_conn | |
| vil_blob_8_conn | |
Definition at line 30 of file vil_blob.h.
| void vil_blob_labels | ( | const vil_image_view< bool > & | src_binary, |
| vil_blob_connectivity | conn, | ||
| vil_image_view< unsigned > & | dest_label | ||
| ) |
Produce a label image that enumerates all disjoint blobs in a binary image.
Definition at line 84 of file vil_blob.cxx.
| void vil_blob_labels_to_edge_labels | ( | const vil_image_view< unsigned > & | src_label, |
| vil_blob_connectivity | conn, | ||
| vil_image_view< unsigned > & | dest_label | ||
| ) |
Set all non-blob-edge pixels in a blob label image to zero.
A 4-conn edge is a 4-conn area itself, and not just those pixels which have dissimilar 4-conn neighbours.
Definition at line 199 of file vil_blob.cxx.
| void vil_blob_labels_to_pixel_lists | ( | const vil_image_view< unsigned > & | src_label, |
| std::vector< vil_blob_pixel_list > & | dest_pixel_lists | ||
| ) |
Convert a label image into a list of pixel lists.
A blob label value of n will be returned in dest_pixels_lists[n-1].
Convert a label image into a list of pixel lists.
A blob label value of n will be returned in dest_pixels_lists[n-1]. Note that pixel lists are not ordered.
Definition at line 277 of file vil_blob.cxx.
| void vil_blob_labels_to_regions | ( | const vil_image_view< unsigned > & | src_label, |
| std::vector< vil_blob_region > & | dest_regions | ||
| ) |
Convert a label image into a list of chorded regions.
A blob label value of n will be returned in dest_regions[n-1].
Definition at line 249 of file vil_blob.cxx.
1.8.15