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

Method plane

IPL/src/IPLImage.cpp:146–158  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

144}
145
146IPLImagePlane* IPLImage::plane(int planeNr)
147{
148 if(planeNr >= (int)_planes.size() || planeNr < 0)
149 {
150 std::stringstream error;
151 error << ("Invalid plane number: ");
152 error << planeNr;
153 throw std::runtime_error(error.str());
154 return NULL;
155 }
156
157 return _planes[planeNr];
158}
159
160void IPLImage::fillColor(ipl_basetype value)
161{

Callers 15

processInputDataMethod · 0.80
updateHistogramMethod · 0.80
paintEventMethod · 0.80
loadFileMethod · 0.80
loadMemoryMethod · 0.80
saveFileMethod · 0.80
readRaw8bitMethod · 0.80
readRaw24BitPlanarMethod · 0.80
readRaw32BitPlanarMethod · 0.80

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected