#include <geometry.h>
Public Member Functions | |
Pixel (int xx, int yy, int zz, float vv) | |
Construct a Pixel object given its 3D coordinates and its value. | |
Pixel (const Pixel &p) | |
IntPoint | get_point () const |
Get the pixel's coordinates as an integer point. | |
float | get_value () const |
Get the pixel's intensity value. | |
Public Attributes | |
int | x |
int | y |
int | z |
float | value |
Definition at line 456 of file geometry.h.
|
Construct a Pixel object given its 3D coordinates and its value.
Definition at line 464 of file geometry.h.
|
|
Definition at line 466 of file geometry.h.
|
|
Get the pixel's coordinates as an integer point.
Definition at line 471 of file geometry.h. 00472 {
00473 return IntPoint(x, y, z);
00474 }
|
|
Get the pixel's intensity value.
Definition at line 479 of file geometry.h. 00480 {
00481 return value;
00482 }
|
|
Definition at line 487 of file geometry.h. Referenced by EMAN::operator<(), EMAN::operator==(), and EMAN::TestUtil::test_vector_pixel(). |
|
Definition at line 484 of file geometry.h. Referenced by EMAN::operator==(), EMAN::DistanceSegmentProcessor::process(), and EMAN::TestUtil::test_vector_pixel(). |
|
Definition at line 485 of file geometry.h. Referenced by EMAN::operator==(), EMAN::DistanceSegmentProcessor::process(), and EMAN::TestUtil::test_vector_pixel(). |
|
Definition at line 486 of file geometry.h. Referenced by EMAN::operator==(), EMAN::DistanceSegmentProcessor::process(), and EMAN::TestUtil::test_vector_pixel(). |