Update FRAME_PROCESSORS_CREATE_OVERVIEW.mdx
This commit is contained in:
parent
80e00dad03
commit
0fee78924f
@ -69,10 +69,8 @@ You can also manipulate the buffer and return it (or a copy) by using the `Frame
|
|||||||
#import <VisionCamera/Frame.h>
|
#import <VisionCamera/Frame.h>
|
||||||
|
|
||||||
static inline id resize(Frame* frame, NSArray args) {
|
static inline id resize(Frame* frame, NSArray args) {
|
||||||
NSNumber* width = [arguments objectAtIndex:0];
|
CMSampleBufferRef resizedBuffer = // ...
|
||||||
NSNumber* height = [arguments objectAtIndex:1];
|
|
||||||
|
|
||||||
CMSampleBufferRef resizedBuffer = CMSampleBufferCopyAndResize(frame.buffer, width, height);
|
|
||||||
return [[Frame alloc] initWithBuffer:resizedBuffer orientation:frame.orientation];
|
return [[Frame alloc] initWithBuffer:resizedBuffer orientation:frame.orientation];
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user