I'm reading the tutorials on the OpenCV lib site and during reading I saw the declaration of a function with a variable in a format I've never seen. I wanted to know what it means, declare the variable this way. I will post only the prototype of the function because the doubt is simple!
Mat& ScanImageAndReduceRandomAccess(Mat& I, const uchar * const table)
const uchar * const table
I know it's a pointer to a unsigned char
, but I've never seen two const
being used this way! This is my question: What is he trying to say?