Commit 1e7448e 1 parent 135b1b9 commit 1e7448e Copy full SHA for 1e7448e
File tree 2 files changed +11
-0
lines changed
src/core/include/openvino/core/preprocess
2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,11 @@ class OPENVINO_API PostProcessSteps final {
33
33
// / \brief Default destructor
34
34
~PostProcessSteps ();
35
35
36
+ // / \brief Add clamp postprocess operation. Clamp each element of input to the specified range [min_value,max_value]
37
+ // / \param min_value Minimum value to clamp to.
38
+ // / \param max_value Maximum value to clamp to.
39
+ // /
40
+ // / \return Reference to 'this' to allow chaining with other calls in a builder-like manner
36
41
PostProcessSteps& clamp (double min_value, double max_value);
37
42
38
43
// / \brief Add convert element type post-process operation
Original file line number Diff line number Diff line change @@ -36,6 +36,12 @@ class OPENVINO_API PreProcessSteps final {
36
36
// / \brief Default destructor
37
37
~PreProcessSteps ();
38
38
39
+ // / \brief Add clamp preprocess operation. Clamp each element of input to the specified range [min_value, max_value]
40
+ // /
41
+ // / \param min_value Minimum value to clamp to.
42
+ // / \param max_value Maximum value to clamp to.
43
+ // /
44
+ // / \return Reference to 'this' to allow chaining with other calls in a builder-like manner
39
45
PreProcessSteps& clamp (double min_value, double max_value);
40
46
41
47
// / \brief Add convert element type preprocess operation
You can’t perform that action at this time.
0 commit comments