MCPcopy Create free account
hub / github.com/cpvrlab/ImagePlay / fillColor

Method fillColor

IPL/src/IPLImage.cpp:160–169  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

158}
159
160void IPLImage::fillColor(ipl_basetype value)
161{
162 for( int planeNr = 0; planeNr < _nrOfPlanes; planeNr++ )
163 {
164 IPLImagePlane* plane = _planes[planeNr];
165 for( int x=0; x<_width; x++ )
166 for( int y=0; y<_height; y++ )
167 plane->p(x,y) = value;
168 }
169}
170
171std::string IPLImage::toString(int x, int y)
172{

Callers 1

processInputDataMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected