From 2d4129b9007f0ef2542cb13a8bddb458ac0b1548 Mon Sep 17 00:00:00 2001 From: palfu Date: Thu, 25 May 2017 15:05:55 -0700 Subject: [PATCH] written error in TestVignettingCalibration.cpp Summary: in TestVignettingCalibration.cpp , line 385: cameraIsp.getImage(rawTestIspOut) should be cameraIspTest.getImage(rawTestIspOut)? Closes https://github.com/facebook/Surround360/pull/220 Differential Revision: D5133104 Pulled By: aparrapo fbshipit-source-id: 397317347cccd7f74d5d0433986e74cfca8c75eb --- surround360_render/source/test/TestVignettingCalibration.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/surround360_render/source/test/TestVignettingCalibration.cpp b/surround360_render/source/test/TestVignettingCalibration.cpp index 369b7760..7797ae31 100644 --- a/surround360_render/source/test/TestVignettingCalibration.cpp +++ b/surround360_render/source/test/TestVignettingCalibration.cpp @@ -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); }