| 39 | }; |
| 40 | |
| 41 | void ThresholdTestApp::setup() |
| 42 | { |
| 43 | ImGui::Initialize(); |
| 44 | |
| 45 | mThresholdValue = 128; |
| 46 | mAdaptiveThresholdPercentage = 0.01f; |
| 47 | mAdaptiveThresholdKernel = 64; |
| 48 | |
| 49 | loadFile( getOpenFilePath() ); |
| 50 | } |
| 51 | |
| 52 | void ThresholdTestApp::loadFile( const fs::path &path ) |
| 53 | { |
nothing calls this directly
no test coverage detected