Skip to content

Commit b010c10

Browse files
committed
default argument for image format -- "jpg"
1 parent f248779 commit b010c10

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/photometric_calib/include/opencv2/photometric_calib/ResponseCalib.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ namespace cv { namespace photometric_calib {
1212
class CV_EXPORTS ResponseCalib
1313
{
1414
public:
15-
ResponseCalib(std::string folderPath, std::string timePath);
16-
ResponseCalib(std::string folderPath, std::string timePath, int leakPadding, int nIts, int skipFrames);
15+
ResponseCalib(std::string folderPath, std::string timePath, std::string imageFormat = "jpg");
16+
ResponseCalib(std::string folderPath, std::string timePath, int leakPadding, int nIts, int skipFrames, std::string imageFormat = "jpg");
1717

1818
void plotE(const double* E, int w, int h, const std::string &saveTo);
1919

0 commit comments

Comments
 (0)