Add explanation of the StereoPoint constructor

release/4.3a0
IshitaTakeshi 2023-06-28 20:21:55 +09:00
parent 8bd690cd26
commit 1de26020b3
1 changed files with 3 additions and 1 deletions

View File

@ -46,7 +46,9 @@ public:
uL_(0), uR_(0), v_(0) {
}
/** constructor */
/** uL and uR represent the x-axis value of left and right frame coordinates respectively.
v represents the y coordinate value. The y-axis value should be the same under the
stereo constraint. */
StereoPoint2(double uL, double uR, double v) :
uL_(uL), uR_(uR), v_(v) {
}