You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
420 B
8 lines
420 B
/*std::string fn2 = std::string("E:/GitCodes/Data/KinfuTest/depth_capture.txt");
|
|
std::ofstream capture_depth_file(fn2, ios::out);
|
|
for (int i = 0; i < depth_device_.rows(); i++) {
|
|
for (int j = 0; j < depth_device_.cols(); j++) {
|
|
capture_depth_file << depth.at<ushort>(i, j) << std::endl;
|
|
}
|
|
}
|
|
capture_depth_file.close();*/ |