-
Notifications
You must be signed in to change notification settings - Fork 86
/
cv_utils.cpp
43 lines (33 loc) · 1.28 KB
/
cv_utils.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#include "cv_utils.hpp"
cv::Mat imreadRGB(const std::string &filename){
cv::Mat cImg = cv::imread(filename);
cv::cvtColor(cImg, cImg, cv::COLOR_BGR2RGB);
return cImg;
}
void imwriteRGB(const std::string &filename, const cv::Mat &image){
cv::Mat rgb;
cv::cvtColor(image, rgb, cv::COLOR_RGB2BGR);
cv::imwrite(filename, rgb);
}
cv::Mat floatNxNtensorToMat(const torch::Tensor &t){
return cv::Mat(t.size(0), t.size(1), CV_32F, t.data_ptr());
}
torch::Tensor floatNxNMatToTensor(const cv::Mat &m){
return torch::from_blob(m.data, { m.rows, m.cols }, torch::kFloat32).clone();
}
cv::Mat tensorToImage(const torch::Tensor &t){
int h = t.sizes()[0];
int w = t.sizes()[1];
int c = t.sizes()[2];
int type = CV_8UC3;
if (c != 3) throw std::runtime_error("Only images with 3 channels are supported");
cv::Mat image(h, w, type);
torch::Tensor scaledTensor = (t * 255.0).toType(torch::kU8);
uint8_t* dataPtr = static_cast<uint8_t*>(scaledTensor.data_ptr());
std::copy(dataPtr, dataPtr + (w * h * c), image.data);
return image;
}
torch::Tensor imageToTensor(const cv::Mat &image){
torch::Tensor img = torch::from_blob(image.data, { image.rows, image.cols, image.dims + 1 }, torch::kU8);
return (img.toType(torch::kFloat32) / 255.0f);
}