aboutsummaryrefslogtreecommitdiff
path: root/samples/ObjectDetection/include/IDetectionResultDecoder.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'samples/ObjectDetection/include/IDetectionResultDecoder.hpp')
-rw-r--r--samples/ObjectDetection/include/IDetectionResultDecoder.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/samples/ObjectDetection/include/IDetectionResultDecoder.hpp b/samples/ObjectDetection/include/IDetectionResultDecoder.hpp
index c0a29df33f..a8a3cbb23a 100644
--- a/samples/ObjectDetection/include/IDetectionResultDecoder.hpp
+++ b/samples/ObjectDetection/include/IDetectionResultDecoder.hpp
@@ -30,9 +30,9 @@ public:
*
* @return Vector of decoded detected objects.
*/
- virtual DetectedObjects Decode(const InferenceResults& results,
- const Size& outputFrameSize,
- const Size& resizedFrameSize,
+ virtual DetectedObjects Decode(const common::InferenceResults<float>& results,
+ const common::Size& outputFrameSize,
+ const common::Size& resizedFrameSize,
const std::vector<std::string>& labels) = 0;
};