#include <Compression.h>
Public Member Functions | |
CompressionThread (const cv::Mat &bytes, bool isImage) | |
CompressionThread (const cv::Mat &mat, const std::string &format="") | |
const cv::Mat & | getCompressedData () const |
cv::Mat & | getUncompressedData () |
![]() | |
Handle | getThreadHandle () const |
unsigned long | getThreadId () const |
bool | isCreating () const |
bool | isIdle () const |
bool | isKilled () const |
bool | isRunning () const |
void | join (bool killFirst=false) |
void | kill () |
void | setAffinity (int cpu=0) |
void | setPriority (Priority priority) |
void | start () |
UThread (Priority priority=kPNormal) | |
virtual | ~UThread () |
![]() | |
int | Create (Handle *const &H=0, const bool &CreateDetached=false, const unsigned int &StackSize=0, const bool &CancelEnable=false, const bool &CancelAsync=false) const |
int | Create (Handle *const &H=0, const bool &CreateDetached=false, const unsigned int &StackSize=0, const bool &CancelEnable=false, const bool &CancelAsync=false) const |
int | Create (unsigned long &ThreadId, Handle *const &H=0, const bool &CreateDetached=false, const unsigned int &StackSize=0, const bool &CancelEnable=false, const bool &CancelAsync=false) const |
int | Create (unsigned long &ThreadId, Handle *const &H=0, const bool &CreateDetached=false, const unsigned int &StackSize=0, const bool &CancelEnable=false, const bool &CancelAsync=false) const |
virtual | ~UThreadC () |
virtual | ~UThreadC () |
Protected Member Functions | |
virtual void | mainLoop () |
![]() | |
UThreadC () | |
UThreadC () | |
Private Attributes | |
cv::Mat | compressedData_ |
bool | compressMode_ |
std::string | format_ |
bool | image_ |
cv::Mat | uncompressedData_ |
Additional Inherited Members | |
![]() | |
enum | Priority { kPLow, kPBelowNormal, kPNormal, kPAboveNormal, kPRealTime } |
![]() | |
typedef THREAD_HANDLE | Handle |
typedef THREAD_HANDLE | Handle |
typedef void(* | Handler) () |
typedef void(* | Handler) () |
![]() | |
static unsigned long | currentThreadId () |
![]() | |
static int | Create (const Handler &Function, Handle *const &H=0, const bool &CreateDetached=false, const unsigned int &StackSize=0, const bool &CancelEnable=false, const bool &CancelAsync=false) |
static int | Create (const Handler &Function, Handle *const &H=0, const bool &CreateDetached=false, const unsigned int &StackSize=0, const bool &CancelEnable=false, const bool &CancelAsync=false) |
static int | Detach (const Handle &H) |
static int | Detach (Handle H) |
static int | Join (const Handle &H) |
static int | Join (Handle H) |
static int | Kill (const Handle &H) |
static int | Kill (Handle H) |
![]() | |
static void | Exit () |
static void | Exit () |
static Handle | Self () |
static int | Self () |
static void | TestCancel () |
static void | TestCancel () |
Compress image or data
Example compression: cv::Mat image;// an image CompressionThread ct(image); ct.start(); ct.join(); std::vector<unsigned char> bytes = ct.getCompressedData();
Example uncompression std::vector<unsigned char> bytes;// a compressed image CompressionThread ct(bytes); ct.start(); ct.join(); cv::Mat image = ct.getUncompressedData();
Definition at line 56 of file Compression.h.
rtabmap::CompressionThread::CompressionThread | ( | const cv::Mat & | mat, |
const std::string & | format = "" |
||
) |
Definition at line 38 of file Compression.cpp.
rtabmap::CompressionThread::CompressionThread | ( | const cv::Mat & | bytes, |
bool | isImage | ||
) |
Definition at line 47 of file Compression.cpp.
|
inline |
Definition at line 62 of file Compression.h.
|
inline |
Definition at line 63 of file Compression.h.
|
protectedvirtual |
Pure virtual method mainLoop(). The inner loop of the thread. This method is called repetitively until the thread is killed. Note that if kill() is called in mainLoopBegin(), mainLoop() is not called, terminating immediately the thread.
Implements UThread.
Definition at line 52 of file Compression.cpp.
|
private |
Definition at line 67 of file Compression.h.
|
private |
Definition at line 71 of file Compression.h.
|
private |
Definition at line 69 of file Compression.h.
|
private |
Definition at line 70 of file Compression.h.
|
private |
Definition at line 68 of file Compression.h.