exposed point status in smart factors to keep uniformity with mono smart factors
parent
6a21f1b730
commit
f009633384
|
@ -582,19 +582,19 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Is result valid?
|
/// Is result valid?
|
||||||
bool isValid() const {
|
bool isValid() const { return result_.valid(); }
|
||||||
return bool(result_);
|
|
||||||
}
|
|
||||||
|
|
||||||
/** return the degenerate state */
|
/** return the degenerate state */
|
||||||
bool isDegenerate() const {
|
bool isDegenerate() const { return result_.degenerate(); }
|
||||||
return result_.degenerate();
|
|
||||||
}
|
|
||||||
|
|
||||||
/** return the cheirality status flag */
|
/** return the cheirality status flag */
|
||||||
bool isPointBehindCamera() const {
|
bool isPointBehindCamera() const { return result_.behindCamera(); }
|
||||||
return result_.behindCamera();
|
|
||||||
}
|
/** return the outlier state */
|
||||||
|
bool isOutlier() const { return result_.outlier(); }
|
||||||
|
|
||||||
|
/** return the farPoint state */
|
||||||
|
bool isFarPoint() const { return result_.farPoint(); }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue