imgproc: local "CV_Assert(totalSampleCount > 0)" check

pull/13323/head
Alexander Alekhin 6 years ago
parent 1f7728db35
commit 5ed7d5a5d9
  1. 2
      modules/imgproc/src/grabcut.cpp

@ -174,7 +174,6 @@ void GMM::addSample( int ci, const Vec3d color )
void GMM::endLearning()
{
CV_Assert(totalSampleCount > 0);
for( int ci = 0; ci < componentsCount; ci++ )
{
int n = sampleCounts[ci];
@ -182,6 +181,7 @@ void GMM::endLearning()
coefs[ci] = 0;
else
{
CV_Assert(totalSampleCount > 0);
double inv_n = 1.0 / n;
coefs[ci] = (double)n/totalSampleCount;

Loading…
Cancel
Save