Changeset 85 for foam/trunk/vision/src/Image.h
- Timestamp:
- 05/29/2009 04:12:50 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
foam/trunk/vision/src/Image.h
r80 r85 26 26 Image(int w, int h, int d, int c); 27 27 Image(const std::string &filename); 28 Image(const Image *other); 28 Image(const Image &other); 29 Image(const IplImage *other); // copies the given image 29 30 ~Image(); 31 32 void Clear(); 33 34 Image operator-(const Image &other); 35 Image operator+(const Image &other); 30 36 31 37 void PrintInfo(); … … 35 41 36 42 // Paste an image into this one 37 void Blit(const Image &image, CvPoint pos);43 void Blit(const Image &image, int x, int y); 38 44 39 45 // Return a sum of squared differences, for giving a similarity metric
Note: See TracChangeset
for help on using the changeset viewer.