test_greater() Tests if a pixel x > p + thr
| 36 | // test_greater() |
| 37 | // Tests if a pixel x > p + thr |
| 38 | inline __device__ int test_greater(const float x, const float p, |
| 39 | const float thr) { |
| 40 | return (x > p + thr); |
| 41 | } |
| 42 | |
| 43 | // test_smaller() |
| 44 | // Tests if a pixel x < p - thr |
no outgoing calls
no test coverage detected