Skip to content

Commit f5a149f

Browse files
committed
fix formatting
1 parent cf0b4c8 commit f5a149f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pipeline/node/DetectionParser.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ void DetectionParser::setConfig(const dai::NNArchiveVersionedConfig& config) {
159159
std::vector<std::vector<float>> layerOut(anchorsIn[layer].size());
160160
for(size_t anchor = 0; anchor < layerOut.size(); ++anchor) {
161161
std::vector<float> anchorOut(anchorsIn[layer][anchor].size());
162-
if (anchorOut.size() != 2) {
162+
if(anchorOut.size() != 2) {
163163
throw std::runtime_error("Each anchor should have exactly 2 dimensions (width and height).");
164164
}
165165
for(size_t dim = 0; dim < anchorOut.size(); ++dim) {

0 commit comments

Comments
 (0)