copy constructor for labimage, further cleanup for locallab periphery
This commit is contained in:
@@ -36,11 +36,12 @@ public:
|
||||
float** b;
|
||||
|
||||
LabImage (int w, int h, bool initZero = false, bool multiThread = true);
|
||||
LabImage (const LabImage& source, bool multiThread);
|
||||
~LabImage ();
|
||||
|
||||
//Copies image data in Img into this instance.
|
||||
void CopyFrom(LabImage *Img, bool multiThread = true);
|
||||
void getPipetteData (float &L, float &a, float &b, int posX, int posY, int squareSize);
|
||||
void CopyFrom(const LabImage *Img, bool multiThread = true);
|
||||
void getPipetteData (float &L, float &a, float &b, int posX, int posY, int squareSize) const;
|
||||
void deleteLab();
|
||||
void reallocLab();
|
||||
void clear(bool multiThread = false);
|
||||
|
Reference in New Issue
Block a user