use vector instead of non-standard stack allocation. also correct program argument borkage
This commit is contained in:
parent
00bdca7684
commit
6a4d881a78
@ -13,7 +13,7 @@ static void on_trackbar(int, void*)
|
||||
Mat bw = threshval < 128 ? (img < threshval) : (img > threshval);
|
||||
Mat labelImage(img.size(), CV_32S);
|
||||
int nLabels = connectedComponents(bw, labelImage, 8);
|
||||
Vec3b colors[nLabels];
|
||||
std::vector<Vec3b> colors(nLabels);
|
||||
colors[0] = Vec3b(0, 0, 0);//background
|
||||
for(int label = 1; label < nLabels; ++label){
|
||||
colors[label] = Vec3b( (rand()&255), (rand()&255), (rand()&255) );
|
||||
@ -48,7 +48,7 @@ int main( int argc, const char** argv )
|
||||
{
|
||||
help();
|
||||
CommandLineParser parser(argc, argv, keys);
|
||||
string inputImage = parser.get<string>(1);
|
||||
string inputImage = parser.get<string>("@image");
|
||||
img = imread(inputImage.c_str(), 0);
|
||||
|
||||
if(img.empty())
|
||||
|
Loading…
x
Reference in New Issue
Block a user