| 295 | // degrees less than but near 360 get smeared out by trilinear interpolation. |
| 296 | |
| 297 | static inline int HistIndex(int row, int col, int iorient) // index into histbins |
| 298 | { |
| 299 | return ((row+1) * (1+GRIDWIDTH+1) + (col+1)) * (BINS_PER_HIST+1) + iorient; |
| 300 | } |
| 301 | |
| 302 | void GetHistograms( // get all histogram bins |
| 303 | vec_double& histbins, // out |
no outgoing calls
no test coverage detected