diff options
| -rw-r--r-- | include/astra/ArtAlgorithm.h | 4 | ||||
| -rw-r--r-- | src/ArtAlgorithm.cpp | 10 | 
2 files changed, 9 insertions, 5 deletions
diff --git a/include/astra/ArtAlgorithm.h b/include/astra/ArtAlgorithm.h index d232b95..1ad9f3f 100644 --- a/include/astra/ArtAlgorithm.h +++ b/include/astra/ArtAlgorithm.h @@ -59,7 +59,7 @@ namespace astra {   * \astra_xml_item_option{MinConstraintValue, float, 0, Minimum constraint value.}   * \astra_xml_item_option{UseMaxConstraint, bool, false, Use maximum value constraint.}   * \astra_xml_item_option{MaxConstraintValue, float, 255, Maximum constraint value.} - * \astra_xml_item_option{Lamda, float, 1, The relaxation factor.} + * \astra_xml_item_option{Relaxation, float, 1, The relaxation factor.}   * \astra_xml_item_option{RayOrder, string, "sequential", the order in which the rays are updated. 'sequential' or 'custom'}   * \astra_xml_item_option{RayOrderList, n by 2 vector of float, not used, if RayOrder='custom': use this ray order.  Each row consist of a projection id and detector id.}   *  @@ -73,7 +73,7 @@ namespace astra {   *		cfg.option.UseMinConstraint = 'yes';\n    *		cfg.option.UseMaxConstraint = 'yes';\n   *		cfg.option.MaxConstraintValue = 1024;\n - *		cfg.option.Lamda = 0.7;\n + *		cfg.option.Relaxation = 0.7;\n   *		cfg.option.RayOrder = 'custom';\n   *		cfg.option.RayOrderList = [0\,0; 0\,2; 1\,0];\n   *		alg_id = astra_mex_algorithm('create'\, cfg);\n diff --git a/src/ArtAlgorithm.cpp b/src/ArtAlgorithm.cpp index b59bd93..526c263 100644 --- a/src/ArtAlgorithm.cpp +++ b/src/ArtAlgorithm.cpp @@ -156,8 +156,12 @@ bool CArtAlgorithm::initialize(const Config& _cfg)  		return false;  	} +	// "Lambda" is replaced by the more descriptive "Relaxation"  	m_fLambda = _cfg.self.getOptionNumerical("Lambda", 1.0f); -	CC.markOptionParsed("Lambda"); +	m_fLambda = _cfg.self.getOptionNumerical("Relaxation", m_fLambda); +	if (!_cfg.self.hasOption("Relaxation")) +		CC.markOptionParsed("Lambda"); +	CC.markOptionParsed("Relaxation");  	// success  	m_bIsInitialized = _check(); @@ -232,7 +236,7 @@ map<string,boost::any> CArtAlgorithm::getInformation()  {  	map<string, boost::any> res;  	res["RayOrder"] = getInformation("RayOrder"); -	res["Lambda"] = getInformation("Lambda"); +	res["Relaxation"] = getInformation("Relaxation");  	return mergeMap<string,boost::any>(CReconstructionAlgorithm2D::getInformation(), res);  }; @@ -240,7 +244,7 @@ map<string,boost::any> CArtAlgorithm::getInformation()  // Information - Specific  boost::any CArtAlgorithm::getInformation(std::string _sIdentifier)   { -	if (_sIdentifier == "Lambda")	{ return m_fLambda; } +	if (_sIdentifier == "Relaxation")	{ return m_fLambda; }  	if (_sIdentifier == "RayOrder") {  		vector<float32> res;  		for (int i = 0; i < m_iRayCount; i++) {  | 
