projects
/
platform
/
core
/
multimedia
/
inference-engine-opencv.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
303c1d4
)
Fix comparison of integer expressions of different signedness
37/254937/1
author
Inki Dae
<inki.dae@samsung.com>
Fri, 26 Jun 2020 00:30:12 +0000
(09:30 +0900)
committer
Tae-Young Chung
<ty83.chung@samsung.com>
Thu, 11 Mar 2021 01:17:40 +0000
(10:17 +0900)
Change-Id: I007cc09888f2f4d81bf499ea2617c0f348d18221
Signed-off-by: Inki Dae <inki.dae@samsung.com>
src/inference_engine_opencv.cpp
patch
|
blob
|
history
diff --git
a/src/inference_engine_opencv.cpp
b/src/inference_engine_opencv.cpp
index 91d8ab6028c092a3d89718b2dc4440234fb361f7..0b3f1eac168edc340ae50557f8c12b31abff40b0 100644
(file)
--- a/
src/inference_engine_opencv.cpp
+++ b/
src/inference_engine_opencv.cpp
@@
-371,7
+371,7
@@
namespace OpenCVImpl
cvOutputData.at<float>(0, 0) = mOutputBlobs[0].size[2];
}
- for (int k = 0; k < output_buffers.size(); ++k)
+ for (
unsigned
int k = 0; k < output_buffers.size(); ++k)
output_buffers[k].buffer = mOutputBlobs[k].ptr<void>(0);
LOGI("LEAVE");