Struct cv_core::WorldPoint[][src]

pub struct WorldPoint(pub Vector4<f64>);
Expand description

A point in “world” coordinates. This means that the real-world units of the pose are unknown, but the unit of distance and orientation are the same as the current reconstruction.

The reason that the unit of measurement is typically unknown is because if the whole world is scaled by any factor n (excluding the camera itself), then the normalized image coordinates will be exactly same on every frame. Due to this, the scaling of the world is chosen arbitrarily.

To extract the real scale of the world, a known distance between two WorldPoints must be used to scale the whole world (and all translations between cameras). At that point, the world will be appropriately scaled. It is recommended not to make the WorldPoint in the reconstruction scale to the “correct” scale. This is for two reasons:

Firstly, because it is possible for scale drift to occur due to the above situation, the further in the view graph you go from the reference measurement, the more the scale will drift from the reference. It would give a false impression that the scale is known globally when it is only known locally if the whole reconstruction was scaled.

Secondly, as the reconstruction progresses, the reference points might get rescaled as optimization of the reconstruction brings everything into global consistency. This means that, while the reference points would be initially scaled correctly, any graph optimization might cause them to drift in scale as well.

Please scale your points on-demand. When you need to know a real distance in the reconstruction, please use the closest known refenence in the view graph to scale it appropriately. In the future we will add APIs to utilize references as optimization constraints when a known reference reconstruction is present.

If you must join two reconstructions, please solve for the similarity (rotation, translation and scale) between the two reconstructions using an optimizer. APIs will eventually be added to perform this operation as well.

Tuple Fields

0: Vector4<f64>

Trait Implementations

Performs the conversion.

Performs the conversion.

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

The resulting type after dereferencing.

Dereferences the value.

Mutably dereferences the value.

Performs the conversion.

Performs the conversion.

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Retrieve the homogeneous vector. Read more

Retrieve the euclidean 3d point by normalizing the homogeneous coordinate. Read more

Convert the euclidean 3d point into homogeneous coordinates.

Retrieve the normalized bearing of the coordinate.

Retrieve the unnormalized bearing of the coordinate. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

Performance hack: Clone doesn’t get inlined for Copy types in debug mode, so make it inline anyway.

Tests if Self the same as the type T Read more

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more

Checks if self is actually part of its subset T (and can be converted to it).

Use with care! Same as self.to_subset but without any property checks. Always succeeds.

The inclusion map: converts self to the equivalent element of its superset.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.