Skip to content

Commit

Permalink
Fixed copy&paste error :-S
Browse files Browse the repository at this point in the history
  • Loading branch information
cristobalcl committed Dec 16, 2011
1 parent f951285 commit 8b299df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cvBlob/cvlabel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ namespace cvb
__CV_BEGIN__;
{
CV_ASSERT(img&&(img->depth==IPL_DEPTH_8U)&&(img->nChannels==1));
CV_ASSERT(imgOut&&(imgOut->depth==IPL_DEPTH_LABEL)&&(img->nChannels==1));
CV_ASSERT(imgOut&&(imgOut->depth==IPL_DEPTH_LABEL)&&(imgOut->nChannels==1));

unsigned int numPixels=0;

Expand Down

0 comments on commit 8b299df

Please sign in to comment.