diff options
author | Wim van Aarle <wimvanaarle@gmail.com> | 2015-02-26 14:00:14 +0100 |
---|---|---|
committer | Wim van Aarle <wimvanaarle@gmail.com> | 2015-02-26 14:00:14 +0100 |
commit | 2d11dcfc8d85cd562a36c192f5dda64c8378d160 (patch) | |
tree | ec3d9b3a9141d27aaafac7c43003da1310496023 /include/astra/ConeProjectionGeometry3D.h | |
parent | cca150841cd1de4f3b4d24c1188263b9623bc511 (diff) | |
download | astra-2d11dcfc8d85cd562a36c192f5dda64c8378d160.tar.gz astra-2d11dcfc8d85cd562a36c192f5dda64c8378d160.tar.bz2 astra-2d11dcfc8d85cd562a36c192f5dda64c8378d160.tar.xz astra-2d11dcfc8d85cd562a36c192f5dda64c8378d160.zip |
updated docs
Diffstat (limited to 'include/astra/ConeProjectionGeometry3D.h')
-rw-r--r-- | include/astra/ConeProjectionGeometry3D.h | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/include/astra/ConeProjectionGeometry3D.h b/include/astra/ConeProjectionGeometry3D.h index 6257f7e..00e72ce 100644 --- a/include/astra/ConeProjectionGeometry3D.h +++ b/include/astra/ConeProjectionGeometry3D.h @@ -40,8 +40,8 @@ namespace astra * \par XML Configuration * \astra_xml_item{DetectorRowCount, int, Number of detectors for each projection.} * \astra_xml_item{DetectorColCount, int, Number of detectors for each projection.} - * \astra_xml_item{DetectorWidth, float, Width of each detector.} - * \astra_xml_item{DetectorHeight, float, Width of each detector.} + * \astra_xml_item{DetectorSpacingX, float, Width of each detector.} + * \astra_xml_item{DetectorSpacingY, float, Width of each detector.} * \astra_xml_item{ProjectionAngles, vector of float, projection angles in radians.} * \astra_xml_item{DistanceOriginDetector, float, Distance between the center of rotation and the detectorarray.} * \astra_xml_item{DistanceOriginSource, float, Distance between the center of rotation the the x-ray source.} @@ -51,8 +51,8 @@ namespace astra * proj_geom = astra_struct('cone');\n * proj_geom.DetectorRowCount = 512;\n * proj_geom.DetectorColCount = 512;\n - * proj_geom.DetectorWidth = 1.0;\n - * proj_geom.DetectorHeight = 1.0;\n + * proj_geom.DetectorSpacingX = 1.0;\n + * proj_geom.DetectorSpacingY = 1.0;\n * proj_geom.ProjectionAngles = linspace(0,pi,100);\n * proj_geom.DistanceOriginDetector = 10000;\n * proj_geom.DistanceOriginSource = 10000;\n @@ -161,12 +161,6 @@ public: */ virtual bool isOfType(const std::string& _sType) const; - /** Turn this object into an XML object. - * - * @param _sNode The XML object to fill. - */ - virtual void toXML(XMLNode* _sNode) const; - /** Returns the distance from the origin of the coordinate system to the source. * * @return Distance from the origin of the coordinate system to the source |