mirror of
https://github.com/opencv/opencv.git
synced 2024-11-25 11:40:44 +08:00
Updating documentation to reflect division operations.
This commit is contained in:
parent
f32a6fb9a1
commit
c8ede7c9ea
@ -96,9 +96,11 @@ operation for each of the coordinates. Besides the class members listed in the d
|
||||
pt1 = pt2 - pt3;
|
||||
pt1 = pt2 * a;
|
||||
pt1 = a * pt2;
|
||||
pt1 = pt2 / a;
|
||||
pt1 += pt2;
|
||||
pt1 -= pt2;
|
||||
pt1 *= a;
|
||||
pt1 /= a;
|
||||
double value = norm(pt); // L2 norm
|
||||
pt1 == pt2;
|
||||
pt1 != pt2;
|
||||
|
Loading…
Reference in New Issue
Block a user