Skip to content

Commit 4e1e113

Browse files
committed
micro changes
1 parent c4e695e commit 4e1e113

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

demos/common/cpp/models/src/detection_model_yolox.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ ModelYoloX::ModelYoloX(const std::string& modelFileName,
4343
: DetectionModel(modelFileName, confidenceThreshold, false, labels, layout),
4444
boxIOUThreshold(boxIOUThreshold) {
4545
resizeMode = RESIZE_KEEP_ASPECT;
46-
}
46+
}
4747

4848
void ModelYoloX::prepareInputsOutputs(std::shared_ptr<ov::Model>& model) {
4949
// --------------------------- Configure input & output -------------------------------------------------

demos/object_detection_demo/cpp/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ int main(int argc, char* argv[]) {
385385
static_cast<float>(FLAGS_t),
386386
labels,
387387
FLAGS_layout));
388-
} else if (FLAGS_at == "yolox"){
388+
} else if (FLAGS_at == "yolox") {
389389
model.reset(new ModelYoloX(FLAGS_m,
390390
static_cast<float>(FLAGS_t),
391391
static_cast<float>(FLAGS_iou_t),

0 commit comments

Comments
 (0)