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
template<typename T>
inlinevoidTinyMATWriter_writeMultiChannelMatrix2D_rowmajor(TinyMATWriterFile* mat, constchar* name, const T* data_real, int32_t cols, int32_t rows, uint32_t c) {
int32_t dims[2]={rows, cols}; //?? should be : int32_t dims[2]={cols, rows}; ?TinyMATWriter_writeMultiChannelMatrix2D_rowmajor(mat, name, data_real, dims, 2, c);
//?? should be : TinyMATWriter_writeMultiChannelMatrixND_rowmajor(mat, name, data_real, dims, 2, c); ?
}
It's an awesome library, I haven't delved into it yet, I'm going to use this lib to write RGB24 data, I think there is something wrong with this function, but I'm not sure.
The text was updated successfully, but these errors were encountered:
TinyMAT/src/tinymatwriter.h
Line 471 in 72cba58
It's an awesome library, I haven't delved into it yet, I'm going to use this lib to write RGB24 data, I think there is something wrong with this function, but I'm not sure.
The text was updated successfully, but these errors were encountered: