rework aruco

This commit is contained in:
ackimixs
2024-04-24 17:39:17 +02:00
parent 4458fd814b
commit 3d658ea2fb
4 changed files with 43 additions and 12 deletions

View File

@@ -80,6 +80,14 @@ ArucoTag& ArucoTag::operator=(const ArucoTag& tag) {
return *this;
}
void ArucoTag::find() {
nbFind++;
}
int ArucoTag::getNbFind() const {
return nbFind;
}
FlowerAruco::FlowerAruco() : tag(nullptr), _realPos({0, 0}) {
}