@ -1,6 +1,7 @@
# include <iostream>
# include <iostream>
# include <sstream>
# include <sstream>
# include <time.h>
# include <time.h>
# include <stdio.h>
# include <opencv2/core/core.hpp>
# include <opencv2/core/core.hpp>
# include <opencv2/imgproc/imgproc.hpp>
# include <opencv2/imgproc/imgproc.hpp>
@ -10,7 +11,7 @@
using namespace cv ;
using namespace cv ;
using namespace std ;
using namespace std ;
void help ( )
static void help ( )
{
{
cout < < " This is a camera calibration sample. " < < endl
cout < < " This is a camera calibration sample. " < < endl
< < " Usage: calibration configurationFile " < < endl
< < " Usage: calibration configurationFile " < < endl
@ -99,7 +100,7 @@ public:
if ( readStringList ( input , imageList ) )
if ( readStringList ( input , imageList ) )
{
{
inputType = IMAGE_LIST ;
inputType = IMAGE_LIST ;
nrFrames = ( nrFrames < imageList . size ( ) ) ? nrFrames : imageList . size ( ) ;
nrFrames = ( nrFrames < ( int ) imageList . size ( ) ) ? nrFrames : ( int ) imageList . size ( ) ;
}
}
else
else
inputType = VIDEO_FILE ;
inputType = VIDEO_FILE ;
@ -196,11 +197,7 @@ private:
} ;
} ;
void write ( FileStorage & fs , const std : : string & , const Settings & x )
static void read ( const FileNode & node , Settings & x , const Settings & default_value = Settings ( ) )
{
x . write ( fs ) ;
}
void read ( const FileNode & node , Settings & x , const Settings & default_value = Settings ( ) )
{
{
if ( node . empty ( ) )
if ( node . empty ( ) )
x = default_value ;
x = default_value ;
@ -282,6 +279,9 @@ int main(int argc, char* argv[])
case Settings : : ASYMMETRIC_CIRCLES_GRID :
case Settings : : ASYMMETRIC_CIRCLES_GRID :
found = findCirclesGrid ( view , s . boardSize , pointBuf , CALIB_CB_ASYMMETRIC_GRID ) ;
found = findCirclesGrid ( view , s . boardSize , pointBuf , CALIB_CB_ASYMMETRIC_GRID ) ;
break ;
break ;
default :
found = false ;
break ;
}
}
if ( found ) // If done with success,
if ( found ) // If done with success,
@ -336,7 +336,7 @@ int main(int argc, char* argv[])
//------------------------------ Show image and check for input commands -------------------
//------------------------------ Show image and check for input commands -------------------
imshow ( " Image View " , view ) ;
imshow ( " Image View " , view ) ;
char key = waitKey ( s . inputCapture . isOpened ( ) ? 50 : s . delay ) ;
char key = ( char ) waitKey ( s . inputCapture . isOpened ( ) ? 50 : s . delay ) ;
if ( key = = ESC_KEY )
if ( key = = ESC_KEY )
break ;
break ;
@ -366,7 +366,7 @@ int main(int argc, char* argv[])
continue ;
continue ;
remap ( view , rview , map1 , map2 , INTER_LINEAR ) ;
remap ( view , rview , map1 , map2 , INTER_LINEAR ) ;
imshow ( " Image View " , rview ) ;
imshow ( " Image View " , rview ) ;
char c = waitKey ( ) ;
char c = ( char ) waitKey ( ) ;
if ( c = = ESC_KEY | | c = = ' q ' | | c = = ' Q ' )
if ( c = = ESC_KEY | | c = = ' q ' | | c = = ' Q ' )
break ;
break ;
}
}
@ -376,7 +376,7 @@ int main(int argc, char* argv[])
return 0 ;
return 0 ;
}
}
double computeReprojectionErrors ( const vector < vector < Point3f > > & objectPoints ,
static double computeReprojectionErrors ( const vector < vector < Point3f > > & objectPoints ,
const vector < vector < Point2f > > & imagePoints ,
const vector < vector < Point2f > > & imagePoints ,
const vector < Mat > & rvecs , const vector < Mat > & tvecs ,
const vector < Mat > & rvecs , const vector < Mat > & tvecs ,
const Mat & cameraMatrix , const Mat & distCoeffs ,
const Mat & cameraMatrix , const Mat & distCoeffs ,
@ -402,7 +402,7 @@ double computeReprojectionErrors( const vector<vector<Point3f> >& objectPoints,
return std : : sqrt ( totalErr / totalPoints ) ;
return std : : sqrt ( totalErr / totalPoints ) ;
}
}
void calcBoardCornerPositions ( Size boardSize , float squareSize , vector < Point3f > & corners ,
static void calcBoardCornerPositions ( Size boardSize , float squareSize , vector < Point3f > & corners ,
Settings : : Pattern patternType /*= Settings::CHESSBOARD*/ )
Settings : : Pattern patternType /*= Settings::CHESSBOARD*/ )
{
{
corners . clear ( ) ;
corners . clear ( ) ;
@ -421,10 +421,12 @@ void calcBoardCornerPositions(Size boardSize, float squareSize, vector<Point3f>&
for ( int j = 0 ; j < boardSize . width ; j + + )
for ( int j = 0 ; j < boardSize . width ; j + + )
corners . push_back ( Point3f ( float ( ( 2 * j + i % 2 ) * squareSize ) , float ( i * squareSize ) , 0 ) ) ;
corners . push_back ( Point3f ( float ( ( 2 * j + i % 2 ) * squareSize ) , float ( i * squareSize ) , 0 ) ) ;
break ;
break ;
default :
break ;
}
}
}
}
bool runCalibration ( Settings & s , Size & imageSize , Mat & cameraMatrix , Mat & distCoeffs ,
static bool runCalibration ( Settings & s , Size & imageSize , Mat & cameraMatrix , Mat & distCoeffs ,
vector < vector < Point2f > > imagePoints , vector < Mat > & rvecs , vector < Mat > & tvecs ,
vector < vector < Point2f > > imagePoints , vector < Mat > & rvecs , vector < Mat > & tvecs ,
vector < float > & reprojErrs , double & totalAvgErr )
vector < float > & reprojErrs , double & totalAvgErr )
{
{
@ -455,16 +457,16 @@ bool runCalibration( Settings& s, Size& imageSize, Mat& cameraMatrix, Mat& distC
}
}
// Print camera parameters to the output file
// Print camera parameters to the output file
void saveCameraParams ( Settings & s , Size & imageSize , Mat & cameraMatrix , Mat & distCoeffs ,
static void saveCameraParams ( Settings & s , Size & imageSize , Mat & cameraMatrix , Mat & distCoeffs ,
const vector < Mat > & rvecs , const vector < Mat > & tvecs ,
const vector < Mat > & rvecs , const vector < Mat > & tvecs ,
const vector < float > & reprojErrs , const vector < vector < Point2f > > & imagePoints ,
const vector < float > & reprojErrs , const vector < vector < Point2f > > & imagePoints ,
double totalAvgErr )
double totalAvgErr )
{
{
FileStorage fs ( s . outputFileName , FileStorage : : WRITE ) ;
FileStorage fs ( s . outputFileName , FileStorage : : WRITE ) ;
time_t t ;
time_t tm ;
time ( & t ) ;
time ( & tm ) ;
struct tm * t2 = localtime ( & t ) ;
struct tm * t2 = localtime ( & tm ) ;
char buf [ 1024 ] ;
char buf [ 1024 ] ;
strftime ( buf , sizeof ( buf ) - 1 , " %c " , t2 ) ;
strftime ( buf , sizeof ( buf ) - 1 , " %c " , t2 ) ;
@ -522,7 +524,7 @@ void saveCameraParams( Settings& s, Size& imageSize, Mat& cameraMatrix, Mat& dis
if ( ! imagePoints . empty ( ) )
if ( ! imagePoints . empty ( ) )
{
{
Mat imagePtMat ( ( int ) imagePoints . size ( ) , imagePoints [ 0 ] . size ( ) , CV_32FC2 ) ;
Mat imagePtMat ( ( int ) imagePoints . size ( ) , ( int ) imagePoints [ 0 ] . size ( ) , CV_32FC2 ) ;
for ( int i = 0 ; i < ( int ) imagePoints . size ( ) ; i + + )
for ( int i = 0 ; i < ( int ) imagePoints . size ( ) ; i + + )
{
{
Mat r = imagePtMat . row ( i ) . reshape ( 2 , imagePtMat . cols ) ;
Mat r = imagePtMat . row ( i ) . reshape ( 2 , imagePtMat . cols ) ;