makeup|SDK
makeup|SDK is a library based on visage|SDK face tracking used to configure and render virtual makeup.
Loading...
Searching...
No Matches
CamIL_Plane.h
1//
2// Image.m
3// MakeUpSDK
4//
5// Created by Visage on 18.09.2023..
6// Copyright © 2023 Visage Technologies AB. All rights reserved.
7//
8
9#ifndef CamIL_Plane_h
10#define CamIL_Plane_h
11
12#import <Foundation/Foundation.h>
13
17@interface CamIL_Plane : NSObject{
18 void * plane;
19}
20
21-(id) initWithData:(void*) plane;
22
26-(int) GetSize;
27
31-(int) GetWidth;
32
36-(int) GetHeight;
37
41-(float) GetBytesPerPixel;
42
47-(char) GetByteAtIndex:(int)index;
48
49
53-(void const*) GetBuffer;
54
55@end
56
57#endif
Definition CamIL_Plane.h:17