#[repr(C)]
pub struct KeyLine {
Show 16 fields pub angle: f32, pub class_id: i32, pub octave: i32, pub pt: Point2f, pub response: f32, pub size: f32, pub start_point_x: f32, pub start_point_y: f32, pub end_point_x: f32, pub end_point_y: f32, pub s_point_in_octave_x: f32, pub s_point_in_octave_y: f32, pub e_point_in_octave_x: f32, pub e_point_in_octave_y: f32, pub line_length: f32, pub num_of_pixels: i32,
}
Expand description

A class to represent a line

As aformentioned, it is been necessary to design a class that fully stores the information needed to characterize completely a line and plot it on image it was extracted from, when required.

KeyLine class has been created for such goal; it is mainly inspired to Feature2d’s KeyPoint class, since KeyLine shares some of KeyPoint’s fields, even if a part of them assumes a different meaning, when speaking about lines. In particular:

  • the class_id field is used to gather lines extracted from different octaves which refer to same line inside original image (such lines and the one they represent in original image share the same class_id value)
  • the angle field represents line’s slope with respect to (positive) X axis
  • the pt field represents line’s midpoint
  • the response field is computed as the ratio between the line’s length and maximum between image’s width and height
  • the size field is the area of the smallest rectangle containing line

Apart from fields inspired to KeyPoint class, KeyLines stores information about extremes of line in original image and in octave it was extracted from, about line’s length and number of pixels it covers.

Fields

angle: f32

orientation of the line

class_id: i32

object ID, that can be used to cluster keylines by the line they represent

octave: i32

octave (pyramid layer), from which the keyline has been extracted

pt: Point2f

coordinates of the middlepoint

response: f32

the response, by which the strongest keylines have been selected. It’s represented by the ratio between line’s length and maximum between image’s width and height

size: f32

minimum area containing line

start_point_x: f32

lines’s extremes in original image

start_point_y: f32end_point_x: f32end_point_y: f32s_point_in_octave_x: f32

line’s extremes in image it was extracted from

s_point_in_octave_y: f32e_point_in_octave_x: f32e_point_in_octave_y: f32line_length: f32

the length of line

num_of_pixels: i32

number of pixels covered by the line

Implementations

Returns the start point of the line in the original image

Returns the end point of the line in the original image

Returns the start point of the line in the octave it was extracted from

Returns the end point of the line in the octave it was extracted from

constructor

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. 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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
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.