imgutils.h 691 B

1234567891011
  1. #include <iostream>
  2. #include <opencv2/opencv.hpp>
  3. using namespace cv;
  4. using namespace std;
  5. int applyMask(unsigned short* input, unsigned char* pmask, int Width, int Height, unsigned short* output);
  6. int getMaskRect(unsigned char* pmask, int Width, int Height, int& x, int& y, int& RectWidth, int& RectHeight);
  7. int cropImg(unsigned short* input, unsigned short* output, int Width, int Height, int x, int y, int RectWidth, int RectHeight);
  8. int applyInvertMask(unsigned short* input, unsigned char* pmask, int Width, int Height, unsigned short* output, int srcfillvalue = 65535);
  9. int getForegroundMask(unsigned short* input, unsigned char* pmask, int Width, int Height, unsigned char* output);