I have the following problem. I'd try to load a raw image data in an opencv Mat object in order to apply post-processing image manipulation. My raw image is a 16 bit 3 channels image. Does someone know how to do it?
Asked
Active
Viewed 328 times
0
-
1Did you check [this](https://answers.opencv.org/question/58106/unable-to-open-raw-image-through-opencv/)? – Yunus Temurlenk Mar 10 '20 at 10:19
-
I'll do it. Thanks – Tanozar Mar 10 '20 at 10:25
-
`cv::Mat img = cv::imread("path_to_img", cv::IMREAD_ANYDEPTH );` – Miki Mar 10 '20 at 10:29
-
2Does this answer your question? [load image with openCV Mat c++](https://stackoverflow.com/questions/16109471/load-image-with-opencv-mat-c) – ilke444 Mar 10 '20 at 11:32