This propagates the input plane to the output plane, then passes it off to the general routine
| 394 | // This propagates the input plane to the output plane, then passes it off to |
| 395 | // the general routine |
| 396 | void camdevDN(Buffer &in, Buffer &out) { |
| 397 | for (int i = 0 ; i < in.size() ; i++) { |
| 398 | out[i] = in[i]; |
| 399 | } |
| 400 | camdev(out); |
| 401 | } |
| 402 | |
| 403 | |
| 404 | // Computes all the geometric properties for the output buffer. Certain |