mirror of
https://github.com/JakubMelka/PDF4QT.git
synced 2025-06-05 21:59:17 +02:00
Linux compilation fix II
This commit is contained in:
@@ -167,7 +167,7 @@ int PDFImageConversion::calculateOtsu1DThreshold() const
|
||||
u1 /= w1;
|
||||
}
|
||||
|
||||
const float variance = w0 * w1 * std::powf(u0 - u1, 2);
|
||||
const float variance = w0 * w1 * std::pow(u0 - u1, 2);
|
||||
interClassVariance[i] = variance;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user