DNC finder class is used to perform a search on a point cloud. More...
Inherits object.
Public Member Functions | |
List[cvb.dnc.SearchResult] | find (self, cvb.DensePointCloud point_cloud, cvb.dnc.SearchParameters parameters) |
Search for objects on the given point cloud. More... | |
Tuple[cvb.dnc.TeachParameters, float, float] | get_teach_parameters (self) |
Gets the TeachParameters with which this Finder was trained. More... | |
cvb.dnc.Finder | load (str file_name) |
Loads a finder from the given file name. More... | |
None | save (self, str file_name) |
Saves the finder to the given file name. More... | |
DNC finder class is used to perform a search on a point cloud.
List[cvb.dnc.SearchResult] find | ( | self, | |
cvb.DensePointCloud | point_cloud, | ||
cvb.dnc.SearchParameters | parameters | ||
) |
Search for objects on the given point cloud.
point_cloud : cvb.DensePointCloud PointCloud to search on.
parameters : cvb.dnc.SearchParameters Search parameters to use.
List[cvb.dnc.SearchResult] List of found results.
Tuple[cvb.dnc.TeachParameters, float, float] get_teach_parameters | ( | self | ) |
Gets the TeachParameters with which this Finder was trained.
Tuple[cvb.dnc.TeachParameters, float, float] Tuple of TeachParameters, resolution and fringe.
cvb.dnc.Finder load | ( | str | file_name | ) |
Loads a finder from the given file name.
file_name : str File to load.
cvb.dnc.Finder Loaded finder.
None save | ( | self, | |
str | file_name | ||
) |
Saves the finder to the given file name.
file_name : str Path to save the finder to.