- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Cannot find this in the documentation anywhere for the 2.0 api.
Blob::Ptr features_output = infer_request.GetBlob("features");
Blob::Ptr heatmaps_output = infer_request.GetBlob("heatmaps");
Blob::Ptr pafs_output = infer_request.GetBlob("pafs");
Was a process I used to do for a 3D pose algorithm. I cannot find the 2.0 version of this process anywhere because "blob" is no longer part of it.
How am I able to grab the specific items I want in the 2.0 API?
1 Solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The answer is:
```
const ov::Tensor& features_output = infer_request.get_tensor("features");
const ov::Tensor& heatmaps_output = infer_request.get_tensor("heatmaps");
const ov::Tensor& pafs_output = infer_request.get_tensor("pafs");
```
Link Copied
2 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The answer is:
```
const ov::Tensor& features_output = infer_request.get_tensor("features");
const ov::Tensor& heatmaps_output = infer_request.get_tensor("heatmaps");
const ov::Tensor& pafs_output = infer_request.get_tensor("pafs");
```
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi adammpolak,
Thank you for sharing your solution with us.
This thread will no longer be monitored since this issue has been resolved. If you need any additional information from Intel, please submit a new question.
Regards,
Hairul

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page