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

Method minReal

IPL/src/IPLComplexImage.cpp:159–171  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

157}
158
159ipl_basetype IPLComplexImage::minReal()
160{
161 float min = FLT_MAX;
162 for(int y=0; y < _height; y++)
163 {
164 for(int x=0; x < _width; x++)
165 {
166 if(std::abs(real(x,y)) < min)
167 min = real(x,y);
168 }
169 }
170 return min;
171}
172
173void IPLComplexImage::flip(void)
174{

Callers 1

processInputDataMethod · 0.80

Calls 1

absFunction · 0.50

Tested by

no test coverage detected