We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f475b6 commit 426fa8eCopy full SHA for 426fa8e
example/dataset.hpp
@@ -57,7 +57,8 @@ std::vector<dataset_element<Scalar>> load_dataset(const std::string& path) {
57
element.number = file.substr(4, 7);
58
59
// NOLINTNEXTLINE(performance-inefficient-string-concatenation) Performance doesn't matter here
60
- element.image = cv::imread(path + "/image" + element.number + ".jpg");
+ element.image = cv::imread(path + "/image" + element.number + ".jpg");
61
+ // NOLINTNEXTLINE(performance-inefficient-string-concatenation) Performance doesn't matter here
62
YAML::Node lens = YAML::LoadFile(path + "/" + file);
63
std::string projection = lens["projection"].as<std::string>();
64
0 commit comments