Publishing 2019 R1 content
[platform/upstream/dldt.git] / inference-engine / src / inference_engine / ie_preprocess_data.hpp
index f5a7730..479e542 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2018 Intel Corporation
+// Copyright (C) 2018-2019 Intel Corporation
 // SPDX-License-Identifier: Apache-2.0
 //
 
@@ -55,8 +55,13 @@ public:
      * @brief Executes input pre-processing with a given resize algorithm.
      * @param outBlob pre-processed output blob to be used for inference.
      * @param algorithm resize algorithm.
+     * @param serial disable OpenMP threading if the value set to true.
+     * @param batchSize batch size for pre-processing.
      */
-    void execute(Blob::Ptr &outBlob, const ResizeAlgorithm &algorithm, bool serial);
+    void execute(Blob::Ptr &outBlob, const ResizeAlgorithm &algorithm, bool serial,
+                 int batchSize = -1);
+
+    static void isApplicable(const Blob::Ptr &src, const Blob::Ptr &dst);
 };
 
 //----------------------------------------------------------------------