Xmipp  v3.23.11-Nereus
Public Member Functions | Public Attributes | List of all members

#include <tomo_align_tilt_series.h>

Public Member Functions

Landmarkoperator= (const Landmark &rhs)
 
int operator< (const Landmark &rhs) const
 

Public Attributes

double x
 
double y
 
int imgIdx
 

Detailed Description

Landmark class. A landmark is a position (x,y) and the index of the image from which this landmark has been taken.

Definition at line 50 of file tomo_align_tilt_series.h.

Member Function Documentation

◆ operator<()

int Landmark::operator< ( const Landmark rhs) const
inline

Definition at line 63 of file tomo_align_tilt_series.h.

64  {
65  return imgIdx<rhs.imgIdx;
66  }

◆ operator=()

Landmark& Landmark::operator= ( const Landmark rhs)
inline

Definition at line 56 of file tomo_align_tilt_series.h.

57  {
58  x=rhs.x;
59  y=rhs.y;
60  imgIdx=rhs.imgIdx;
61  return *this;
62  }

Member Data Documentation

◆ imgIdx

int Landmark::imgIdx

Definition at line 55 of file tomo_align_tilt_series.h.

◆ x

double Landmark::x

Definition at line 53 of file tomo_align_tilt_series.h.

◆ y

double Landmark::y

Definition at line 54 of file tomo_align_tilt_series.h.


The documentation for this class was generated from the following file: