Remove misleading comments

This commit is contained in:
Lawrence Lee 2020-06-25 10:39:21 -07:00
parent 8a970f95bc
commit 72de3f21c7
2 changed files with 2 additions and 2 deletions

View File

@ -1089,7 +1089,7 @@ void ImProcFunctions::transformGeneral(bool highQuality, Imagefloat *original, I
}
if (enableLCPDist) {
pLCPMap->correctDistortion(x_d, y_d, w2, h2); // must be first transform
pLCPMap->correctDistortion(x_d, y_d, w2, h2);
}
// rotate

View File

@ -194,7 +194,7 @@ public:
);
void correctDistortion(double &x, double &y, int cx, int cy) const override; // MUST be the first stage
void correctDistortion(double &x, double &y, int cx, int cy) const override;
bool isCACorrectionAvailable() const override;
void correctCA(double& x, double& y, int cx, int cy, int channel) const override;
void processVignette(int width, int height, float** rawData) const override;