Yannick Verdie 3746c48451 Bug in calibration.cpp sample
This was crashing my code:
    for( size_t i = 1; i < imagePoints.size(); i++ )
        objectPoints.push_back(objectPoints[0]);

Changed by:
objectPoints.resize(imagePoints.size(),objectPoints[0]);

Plus clean up on Qt code
2010-08-18 15:35:56 +00:00
..
2010-08-16 16:49:24 +00:00
2010-06-14 12:21:57 +00:00
2010-08-18 15:35:56 +00:00