-
Notifications
You must be signed in to change notification settings - Fork 182
Enable IC background blur feature #564
base: main
Are you sure you want to change the base?
Changes from 1 commit
dea547b
6b305e9
07e161c
091f187
ec24bbf
09530e6
96ab951
572b0f4
65ee09d
8e12bed
51311bc
09d1d4d
59891e2
9c7a7ce
6ef5289
f9c7381
a474a59
13d8027
4db6116
2f91956
e8c02e5
7980fcf
705860c
ab80773
6287a53
f23c70c
3e5dd15
16de4f9
d00bb7e
32a61d7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,11 +26,11 @@ class SelfieSegmentationModel { | |
cv::Mat waitForFinished(); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. what's the point of public this? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sync/Async prediction are options provided by openvino. I just pass on these to provides potential caller with free usage. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't agree. If you want to provide async API, your API should include a callback param instead of asking developer to call another API just to wait for the result. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The |
||
|
||
private: | ||
InferenceEngine::Core &core; | ||
InferenceEngine::InferRequest request; | ||
std::string inputName; | ||
std::string outputName; | ||
InferenceEngine::SizeVector outputSize; | ||
InferenceEngine::Core &core_; | ||
InferenceEngine::InferRequest request_; | ||
std::string input_name_; | ||
std::string output_name_; | ||
InferenceEngine::SizeVector output_size_; | ||
}; | ||
|
||
} // namespace ic | ||
|
Uh oh!
There was an error while loading. Please reload this page.