1 | initial version |
please replace your vectorIntToMat(listLabel)
with a plain Mat(listLabel)
.
2 | No.2 Revision |
please replace your vectorIntToMat(listLabel)
with a plain Mat(listLabel)
.
(constructing a Mat with a raw data pointer from a local var is UB)
3 | No.3 Revision |
please replace your vectorIntToMat(listLabel)
with a plain Mat(listLabel)
.
(constructing a Mat with a raw data pointer from a local var is UB)
4 | No.4 Revision |
please replace your vectorIntToMat(listLabel)
with a plain
.Mat(listLabel)Mat(listLabel, true)
(constructing a Mat with a raw data pointer from a local var is UB)