Skip to content
This repository has been archived by the owner on Aug 31, 2021. It is now read-only.

Commit

Permalink
written error in TestVignettingCalibration.cpp
Browse files Browse the repository at this point in the history
Summary:
in TestVignettingCalibration.cpp , line 385:
cameraIsp.getImage(rawTestIspOut)
should be cameraIspTest.getImage(rawTestIspOut)?
Closes #220

Differential Revision: D5133104

Pulled By: aparrapo

fbshipit-source-id: 397317347cccd7f74d5d0433986e74cfca8c75eb
  • Loading branch information
palfu authored and facebook-github-bot committed May 25, 2017
1 parent e63bf25 commit 2d4129b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ int main(int argc, char** argv) {

cameraIspTest.setup();
cameraIspTest.loadImage(rawTest);
cameraIsp.getImage(rawTestIspOut);
cameraIspTest.getImage(rawTestIspOut);
const string rawTestIspOutFilename = outputDir + "/test_out_rgb.png";
imwriteExceptionOnFail(rawTestIspOutFilename, rawTestIspOut);
}
Expand Down

0 comments on commit 2d4129b

Please sign in to comment.