| 38 | |
| 39 | /// |
| 40 | void SetUseAdjust(bool useCLAHE) |
| 41 | { |
| 42 | if (useCLAHE) |
| 43 | { |
| 44 | m_clahe = cv::createCLAHE(1.2, cv::Size(4, 4)); |
| 45 | AdjustMatBGR(); |
| 46 | } |
| 47 | else |
| 48 | { |
| 49 | m_clahe.reset(); |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | /// |
| 54 | bool empty() const noexcept |
no test coverage detected