15 #import <Foundation/Foundation.h>
36 @property (nonatomic)
int m_threadID;
38 @property (nonatomic)
void* m_image;
40 @property size_t m_width;
42 @property size_t m_height;
44 @property size_t m_stride;
Defines a class to hold data that is transferred to/from the threads processing images using Barcode ...
Definition: BXThreadData.h:21
size_t m_width
Gets the width of the image in pixels.
Definition: BXThreadData.h:28
void * m_image
Gets and sets a pointer to byte data of the image.
Definition: BXThreadData.h:26
size_t m_height
Gets the height of the image in pixels.
Definition: BXThreadData.h:30
size_t m_stride
Number of bytes per row in the image.
Definition: BXThreadData.h:32
int m_threadID
Gets and sets the ID of the thread.
Definition: BXThreadData.h:24