42 #ifndef _IMAGE_PROCESSOR_CV_H_
43 #define _IMAGE_PROCESSOR_CV_H_
64 namespace ImageProcessorCV
137 void Resize(
const CByteImage *pInputImage,
CByteImage *pOutputImage,
int x = -1,
int y = -1,
int width = -1,
int height = -1);
void GaussianSmooth5x5(CByteImage *pInputImage, CByteImage *pOutputImage)
Deprecated.
Data structure for the representation of a 2D vector.
void CalculateGradientImageHSV(CByteImage *pInputImage, CByteImage *pOutputImage)
Deprecated.
void Dilate(CByteImage *pInputImage, CByteImage *pOutputImage)
Deprecated.
void FlipY(CByteImage *pInputImage, CByteImage *pOutputImage)
Deprecated.
void BilateralSmooth(CByteImage *pInputImage, CByteImage *pOutputImage, int param1, int param2)
Calls cvSmooth with the parameter CV_BILATERAL.
void Canny(CByteImage *pInputImage, CByteImage *pOutputImage, int nLowThreshold, int nHighThreshold)
Deprecated.
void Laplacian5x5(CByteImage *pInputImage, CByteImage *pOutputImage)
Calls cvLaplace with size 5x5.
void CalculateHSVImage(CByteImage *pInputImage, CByteImage *pOutputImage)
Deprecated.
double Mean(CByteImage *pImage1, CByteImage *pImage2)
Deprecated.
void ConvertImage(CByteImage *pInputImage, CByteImage *pOutputImage)
Image processing functions using OpenCV.
void CalculateGradientImage(CByteImage *pInputImage, CByteImage *pOutputImage)
Deprecated.
void Laplacian3x3(CByteImage *pInputImage, CByteImage *pOutputImage)
Deprecated.
void Resize(const CByteImage *pInputImage, CByteImage *pOutputImage, int x=-1, int y=-1, int width=-1, int height=-1)
Deprecated.
void Erode(CByteImage *pInputImage, CByteImage *pOutputImage)
Deprecated.
void ConvertBayerPattern(CByteImage *pInputImage, CByteImage *pOutputImage, BayerPatternType type=eRG2BGR)
Deprecated.
int CalculateFeaturePoints(const CByteImage *pImage, Vec2d *pFeaturePoints, int nMaxPoints, float fQualityLevel=0.01f, float fMinDistance=5.0f, bool bUseHarris=false)
Deprecated.
void GaussianSmooth3x3(CByteImage *pInputImage, CByteImage *pOutputImage)
Deprecated.
Data structure for the representation of 8-bit grayscale images and 24-bit RGB (or HSV) color images ...