fix(depth): fix mistake
This commit is contained in:
parent
23775810b2
commit
aca55759ad
|
@ -57,7 +57,7 @@ bool DepthProcessor::OnProcess(
|
||||||
for (int i = 0; i < rows; i++) {
|
for (int i = 0; i < rows; i++) {
|
||||||
for (int j = 0; j < cols; j++) {
|
for (int j = 0; j < cols; j++) {
|
||||||
float disparity_value = input->value.at<float>(i, j);
|
float disparity_value = input->value.at<float>(i, j);
|
||||||
if (disparity_value > DISPARITY_MAX && disparity_value > DISPARITY_MIN) {
|
if (disparity_value < DISPARITY_MAX && disparity_value > DISPARITY_MIN) {
|
||||||
float depth = calib_infos_->T_mul_f / disparity_value;
|
float depth = calib_infos_->T_mul_f / disparity_value;
|
||||||
depth_mat.at<ushort>(i, j) = depth * 1000;
|
depth_mat.at<ushort>(i, j) = depth * 1000;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user