Hello everyone. This is not the first time that I see data structures in C++ but still there are ones that are creative. I am recently working on a project which requires the use of openCV library. While I was reading the tutorial, I came up with this time of function decleration:
1 2 3 4
Mat& ScanImageAndRedudeC(Mat& I, const uchar* const table) //I am not familiar with this decleration.
{
//Some code here...
}
I understand the argument "Mat& I", but I didn't understand the data type that the function returns, which is "Mat&". Does it return an address?