You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Cnf. :
[OpenJPEG] opj_decompress trunk refusing to decompress 4 band imagery
------------ start cdef -------------------
[0]c(0) typ(0) asoc(1)
[1]c(1) typ(0) asoc(2)
[2]c(2) typ(0) asoc(3)
[3]c(3) typ(65535) asoc(65535)
------------ end cdef ---------------------
The type value and asoc value of 65535 (2^16 - 1) is allowed:
ISO/IEC 15444-1:2002 (E)
Table I.16 Typ[i] field values
2^16 1 The type of this channel is not specified.
Table I.17 Asoc[i] field values
2^16 1 This channel is not associated with any particular colour.
Therefore insert the following line in
openjpeg-2.x-trunk-r2824, line 771:
if (info[i].asoc >= 65535) continue;
The name of the function is 'opj_jp2_check_color() '.
winfried
Originally reported on Google Code with ID 321
Reported by szukw000 on 2014-03-29 20:22:05
The text was updated successfully, but these errors were encountered: