mirror of
https://github.com/opencv/opencv.git
synced 2024-11-25 11:40:44 +08:00
{highgui} Fix copy-paste error in conditional
This commit is contained in:
parent
5d65d000ab
commit
e87355463f
@ -212,7 +212,7 @@ bool Jpeg2KDecoder::readData( Mat& img )
|
||||
cmptlut[0] = jas_image_getcmptbytype( image, JAS_IMAGE_CT_RGB_B );
|
||||
cmptlut[1] = jas_image_getcmptbytype( image, JAS_IMAGE_CT_RGB_G );
|
||||
cmptlut[2] = jas_image_getcmptbytype( image, JAS_IMAGE_CT_RGB_R );
|
||||
if( cmptlut[0] < 0 || cmptlut[1] < 0 || cmptlut[0] < 0 )
|
||||
if( cmptlut[0] < 0 || cmptlut[1] < 0 || cmptlut[2] < 0 )
|
||||
result = false;
|
||||
ncmpts = 3;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user