Merge branch 'develop' of http://gitlab.mynt.com/mynteye/mynt-eye-sdk-2 into develop
This commit is contained in:
commit
a57c096e91
|
@ -98,7 +98,7 @@ bool DisparityProcessor::OnProcess(
|
||||||
// whereas other algorithms output 32-bit floating-point disparity map.
|
// whereas other algorithms output 32-bit floating-point disparity map.
|
||||||
sgbm_->compute(input->first, input->second, disparity);
|
sgbm_->compute(input->first, input->second, disparity);
|
||||||
#endif
|
#endif
|
||||||
output->value = disparity / 16 + 1;
|
disparity.convertTo(output->value, CV_32F, 1./16, 1);
|
||||||
output->id = input->first_id;
|
output->id = input->first_id;
|
||||||
output->data = input->first_data;
|
output->data = input->first_data;
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user