summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ipa/rkisp1/algorithms/awb.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ipa/rkisp1/algorithms/awb.cpp b/src/ipa/rkisp1/algorithms/awb.cpp
index 47b607c6..1e9be6cb 100644
--- a/src/ipa/rkisp1/algorithms/awb.cpp
+++ b/src/ipa/rkisp1/algorithms/awb.cpp
@@ -92,7 +92,7 @@ int Awb::init(IPAContext &context, const YamlObject &tuningData)
kDefaultColourTemperature);
if (!tuningData.contains("algorithm"))
- LOG(RkISP1Awb, Info) << "No awb algorithm specified."
+ LOG(RkISP1Awb, Info) << "No AWB algorithm specified."
<< " Default to grey world";
auto mode = tuningData["algorithm"].get<std::string>("grey");
@@ -101,14 +101,14 @@ int Awb::init(IPAContext &context, const YamlObject &tuningData)
} else if (mode == "bayes") {
awbAlgo_ = std::make_unique<AwbBayes>();
} else {
- LOG(RkISP1Awb, Error) << "Unknown awb algorithm: " << mode;
+ LOG(RkISP1Awb, Error) << "Unknown AWB algorithm: " << mode;
return -EINVAL;
}
- LOG(RkISP1Awb, Debug) << "Using awb algorithm: " << mode;
+ LOG(RkISP1Awb, Debug) << "Using AWB algorithm: " << mode;
int ret = awbAlgo_->init(tuningData);
if (ret) {
- LOG(RkISP1Awb, Error) << "Failed to init awb algorithm";
+ LOG(RkISP1Awb, Error) << "Failed to init AWB algorithm";
return ret;
}