I wanted the values of the given ColumnVector to be right-shifted and copied to another RowVector that is larger than ColumnVector by one elemnt. I wanted to accomplish this by copying columnVector to a certain range within RowVector.
// The given columnVector ( this code snippet is added to make the error reproducable)
int yDimLen = 26; // arbitrary value
cv::Mat columnVector(yDimLen, 1, CV_32SC1, cv::Scalar(13)); // one column AND yDimLen rows
for (int r = 0; r < yDimLen; r++) // chech the values
{
printf("%d\t", *(columnVector.ptr<int>(r)));
}
// Copy elemnets of columnVector to rowVector starting from column number 1
cv::Mat rowVector(1, yDimLen + 1, CV_32SC1, cv::Scalar(0));
cv::Mat rowVector_rangeHeader = rowVector.colRange(cv::Range(1, yDimLen + 1)); // header matrix, 1 in included AND (yDimLen + 1) is excluded
columnVector.copyTo(rowVector_rangeHeader);
// check the values
printf("\n---------------------------------\n");
for (int c = 0; c < yDimLen; c++)
{
printf("%d\t", rowVector_rangeHeader.ptr<int>(0)[c]); // displays 13
}
printf("\n---------------------------------\n");
for (int c = 0; c < yDimLen + 1; c++)
{
printf("%d\t", rowVector.ptr<int>(0)[c]); // displays 0 !!!
}
Doesn't the header matrix point to the same memory address that contains rowVector? if not, how to copy data to certain part of a row?