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:
f45f4b3
)
Fix comparison of integer expressions of different signedness
88/237188/1
author
Inki Dae
<inki.dae@samsung.com>
Fri, 26 Jun 2020 00:30:12 +0000
(09:30 +0900)
committer
Inki Dae
<inki.dae@samsung.com>
Fri, 26 Jun 2020 00:30:12 +0000
(09:30 +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 da5942aa60eb6d754529c668894059f220fff081..a084074b66fefa0f2a4edb25bb786884b1bd0471 100644
(file)
--- a/
src/inference_engine_opencv.cpp
+++ b/
src/inference_engine_opencv.cpp
@@
-360,7
+360,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");