Home | History | Annotate | Download | only in include

Lines Matching refs:image

43 // Image class which provides a thin layer around an IplImage.  The goals
48 // 4. Can easily treat external data as an image
53 // The WImage class is the image class which provides the data accessors.
71 // WImageBuffer3_b im(5,7); // Make a 5X7 3 channel image of type uchar
74 // WImageView1_f user_im(&vec[0], 2, 5); // 2X5 image w/ supplied data
97 // Functions that are not part of the basic image allocation, viewing, and
228 // Copy the contents from another image which is just a convenience to cvCopy
234 // Construct a view into a region of this image
246 void SetIpl(IplImage* image) {
247 assert(!image || image->depth == Depth());
248 image_ = image;
256 // Image class when both the pixel type and number of channels
270 // Construct a view into a region of this image
273 // Copy the contents from another image which is just a convenience to cvCopy
289 void SetIpl(IplImage* image) {
290 assert(!image || image->depth == WImage<T>::Depth());
291 WImage<T>::SetIpl(image);
298 // Image class which owns the data, so it can be allocated and is always
315 // the image on destruction.
318 // Allocate an image. Does nothing if current size is the same as
322 // Set the data to point to an image, releasing the old data
328 // Clone an image which reallocates the image if of a different dimension.
338 // Release the image if it isn't null.
341 IplImage* image = WImage<T>::image_;
342 cvReleaseImage(&image);
372 // the image on destruction.
375 // Allocate an image. Does nothing if current size is the same as
379 // Set the data to point to an image, releasing the old data
385 // Clone an image which reallocates the image if of a different dimension.
395 // Release the image if it isn't null.
398 IplImage* image = WImage<T>::image_;
399 cvReleaseImage(&image);
415 // View into an image class which allows treating a subimage as an image
416 // or treating external data as an image
425 // completely inside the original image.
466 // completely inside the original image.
606 // Construct a view into a region of an image