using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HalconTools
{
public class QualityIssue
{
///
/// Constant starting with QUALITY_ISSUE_*, defined in the class
/// CalibrationAssistant.
///
private int qIssue;
///
/// Score obtained from the quality assessment
///
private double qScore;
/// Initialize an instance
///
/// Constant starting with QUALITY_ISSUE_*, defined in
/// the class CalibrationAssistant.
///
///
/// Score achieved for this quality measurement.
///
public QualityIssue(int IType, double scr)
{
qIssue = IType;
qScore = scr;
}
// getter-setter methods
public double getScore()
{
return qScore;
}
public int getIssueType()
{
return qIssue;
}
}
}