| 14 | struct ObjectMatch |
| 15 | { |
| 16 | ObjectMatch(PointT ft, T obj, Scalar dist) : object(obj) |
| 17 | { |
| 18 | Vector3d tfeat; |
| 19 | tfeat << ft.x, ft.y, ft.z; |
| 20 | |
| 21 | feature = tfeat; |
| 22 | dist = dist; |
| 23 | } |
| 24 | Vector3 feature; |
| 25 | T object; |
| 26 | double dist; |
nothing calls this directly
no outgoing calls
no test coverage detected