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

Method Load

MatchTool/CvvImage.cpp:140–150  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

138 }
139}
140bool CvvImage::Load( const char* filename, int desired_color )
141{
142 IplImage* img = cvLoadImage( filename, desired_color );
143 if( !img )
144 return false;
145
146 CopyOf( img, desired_color );
147 cvReleaseImage( &img );
148
149 return true;
150}
151bool CvvImage::LoadRect( const char* filename,
152 int desired_color, CvRect r )
153{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected