Commit 88f25973 authored by Andrey Filippov's avatar Andrey Filippov

debugging plane split

parent 17860d45
...@@ -533,7 +533,8 @@ public class CLTPass3d{ ...@@ -533,7 +533,8 @@ public class CLTPass3d{
double max_disparity, double max_disparity,
double strength_floor, double strength_floor,
double strength_pow, double strength_pow,
double stBlurSigma) double stBlurSigma,
int measSel)
{ {
this.superTiles = new SuperTiles( this.superTiles = new SuperTiles(
this, this,
...@@ -544,9 +545,18 @@ public class CLTPass3d{ ...@@ -544,9 +545,18 @@ public class CLTPass3d{
max_disparity, max_disparity,
strength_floor, strength_floor,
strength_pow, strength_pow,
stBlurSigma); stBlurSigma,
measSel);
return this.superTiles; return this.superTiles;
} }
public double [] showDisparityHistogram(int measSel)
{
if (this.superTiles == null){
return null;
}
return this.superTiles.showDisparityHistogram(measSel);
}
public double [] showDisparityHistogram() public double [] showDisparityHistogram()
{ {
if (this.superTiles == null){ if (this.superTiles == null){
......
...@@ -224,7 +224,7 @@ public class MeasuredLayers { ...@@ -224,7 +224,7 @@ public class MeasuredLayers {
* @return number of layers (some may be uninitialized * @return number of layers (some may be uninitialized
*/ */
public int getnumLayers() public int getNumLayers()
{ {
if (layers == null){ if (layers == null){
return 0; return 0;
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment