00001
00002
00003
00004
00005
00006
00007 #include "ChecklistGuidePageConclusion.h"
00008 #include "Logger.h"
00009
00010 ChecklistGuidePageConclusion::ChecklistGuidePageConclusion() :
00011 ChecklistGuidePage ("Conclusion")
00012 {
00013 LOG4CPP_INFO_S ((*mainCat)) << "ChecklistGuidePageConclusion::ChecklistGuidePageConclusion";
00014
00015 addHtml (tr ("<p>A checklist guide has been created.</p>"
00016 "<br/><br/><br/>"
00017 "<p><font color=\"red\">Why does the imported image look different?</font> "
00018 "After import, a filtered image is shown in the background. This filtered image is produced from "
00019 "the original image according to the parameters set in Settings / Color Filter. When the parameters "
00020 "have been set correctly, unimportant information (such as grid lines and background colors) has been "
00021 "removed from the filtered images so automated feature extraction can be performed. If desirable "
00022 "features have been removed from the image, the parameters can be adjusted using Settings / Color Filter, "
00023 "or the original image can be displayed instead using View / Background / Show Original Image.</p>"));
00024 }
00025
00026 bool ChecklistGuidePageConclusion::validatePage ()
00027 {
00028 LOG4CPP_INFO_S ((*mainCat)) << "ChecklistGuidePageConclusion::validatePage";
00029
00030 return true;
00031 }
00032