Cat function of Matlab [closed]
I have to use in C this function:
stack=cat(3,rpad{i,:});
Cat utilization: Concatenate arrays along specified dimension(3rd)I have to use in C this function:
I have to use in C this function:
stack=cat(3,rpad{i,:});
Cat utilization: Concatenate arrays along specified dimension(3rd)I have to use in C this function:
Asked: 2013-05-26 11:36:33 -0600
Seen: 657 times
Last updated: May 26 '13
Conversion between IplImage and MxArray
Using Matlab data files (.mat) in C++
OpenCV equivalent of inpolygon matlab function
Implement imfilter(matlab) with OpenCV
How to reduce false positives for face detection
OpenCV DescriptorMatcher matches
Is stereoRectifyUncalibrated efficient?
Record/Store constant refreshing coordinates points into notepad
rpad is a Mat object
I didn't understand rpad{i,:}
This function is inside a loop! I try to explain better:
The : points means from i to the end, but rpad is a Mat object, so I cant use it in this mode. And stack have to be 3dimensional array
Do you wanna merge the channels or something? I got rpad is a Mat object but for cat() function you need to pass the matrices or vectors to be merged along specified dimension (3 in this case). And i see that rpad is a cell array in matlab. Can you give us the dimension/content info of the rpad object from matlab? It would be easier to help with that info ( I guess)