MCPcopy Create free account
hub / github.com/DennisLiu1993/Fastest_Image_Pattern_Matching / CopyOf

Method CopyOf

MatchTool/CvvImage.cpp:113–120  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

111 return m_img != 0;
112}
113void CvvImage::CopyOf( CvvImage& image, int desired_color )
114{
115 IplImage* img = image.GetImage();
116 if( img )
117 {
118 CopyOf( img, desired_color );
119 }
120}
121#define HG_IS_IMAGE(img)\
122 ((img) != 0 && ((const IplImage*)(img))->nSize == sizeof(IplImage) &&\
123 ((IplImage*)img)->imageData != 0)

Callers

nothing calls this directly

Calls 1

GetImageMethod · 0.80

Tested by

no test coverage detected