fixed severe bug: CV_RANSAC != CV_FM_RANSAC, CV_LMEDS != CV_FM_LMEDS

This commit is contained in:
Vadim Pisarevsky
2010-11-29 23:56:33 +00:00
parent 2b660bf554
commit b1722352b8
2 changed files with 23 additions and 21 deletions

View File

@@ -92,9 +92,9 @@ int main( int argc, char** argv )
vector<Vec3b> colorTab;
for( i = 0; i < compCount; i++ )
{
int b = theRNG().uniform(180, 230);
int g = theRNG().uniform(180, 230);
int r = theRNG().uniform(180, 230);
int b = theRNG().uniform(0, 255);
int g = theRNG().uniform(0, 255);
int r = theRNG().uniform(0, 255);
colorTab.push_back(Vec3b((uchar)b, (uchar)g, (uchar)r));
}