Package org.hyperonline.hyperlib.vision
Class SkewVisionResult
- java.lang.Object
-
- org.hyperonline.hyperlib.vision.VisionResult
-
- org.hyperonline.hyperlib.vision.SkewVisionResult
-
public class SkewVisionResult extends VisionResult
Vision result which stores the skew of the target found.
-
-
Constructor Summary
Constructors Constructor Description SkewVisionResult(double xError, double yError, double xAbs, double yAbs, double skew, boolean foundTarget)SkewVisionResult(VisionResult result, double skew)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description doubleskew()-
Methods inherited from class org.hyperonline.hyperlib.vision.VisionResult
foundTarget, xAbsolute, xError, yAbsolute, yError
-
-
-
-
Constructor Detail
-
SkewVisionResult
public SkewVisionResult(VisionResult result, double skew)
- Parameters:
result- base result to add toskew- skew of the target
-
SkewVisionResult
public SkewVisionResult(double xError, double yError, double xAbs, double yAbs, double skew, boolean foundTarget)- Parameters:
xError- error on x-coordinateyError- error on y-coordinatexAbs- absolute x-coordinateyAbs- absolute y-coordinateskew- skew of the targetfoundTarget- whether a target was actually found
-
-