예제 #1
0
 // Copy constructor
 WImageView(const WImage<T>& img) : WImage<T>(0) {
     header_ = *(img.Ipl());
     WImage<T>::SetIpl(&header_);
 }
예제 #2
0
 // Copy the contents from another image which is just a convenience to cvCopy
 void CopyFrom(const WImage<T>& src) { cvCopy(src.Ipl(), image_); }