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

debugging plane split

parent 17860d45
......@@ -533,7 +533,8 @@ public class CLTPass3d{
double max_disparity,
double strength_floor,
double strength_pow,
double stBlurSigma)
double stBlurSigma,
int measSel)
{
this.superTiles = new SuperTiles(
this,
......@@ -544,9 +545,18 @@ public class CLTPass3d{
max_disparity,
strength_floor,
strength_pow,
stBlurSigma);
stBlurSigma,
measSel);
return this.superTiles;
}
public double [] showDisparityHistogram(int measSel)
{
if (this.superTiles == null){
return null;
}
return this.superTiles.showDisparityHistogram(measSel);
}
public double [] showDisparityHistogram()
{
if (this.superTiles == null){
......
......@@ -224,7 +224,7 @@ public class MeasuredLayers {
* @return number of layers (some may be uninitialized
*/
public int getnumLayers()
public int getNumLayers()
{
if (layers == null){
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