Mat of int64 In OpenCV?

Hellow everybody. I have an array of tensorflow::int64 numbers like this :

tensorflow::int64 data[10] = {1,2,3,4,5,7,8,9,10,11}

now I want to initialize a Mat with this array I have seen difference between opencv vs tensorflow , but opencv doesn’t support CV_64SC1 or int64 datatype. can anybody help me how can create a Mat of int64 datatype and initialize it with this array ? Thank you in advance.

either use a loop and convert each scalar explicitly…

or interpret that data as two int32 per int64 (CV_32SC2), and then discard one of the “planes” with cv::extractChannel