Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lessthanoptimal committed May 14, 2024
1 parent ec48ff4 commit 1d60589
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public class SceneReconstruction {
@Option(name = "--DisparityMin", usage = "Minimum disparity. Points less than this are filtered. Can be used to remove noisy distant points.")
double disparityMin = 0.0;

@Option(name = "--DisparityRange", usage = "Number of disparity values considered. Can't exceed 255.")
@Option(name = "--DisparityRange", usage = "Number of disparity values considered.")
int disparityRange = 0;

@Option(name = "--Ordered", usage = "Images are assumed to be in sequential order and a feature tracker can be used")
Expand Down Expand Up @@ -214,9 +214,6 @@ public void process() {
System.exit(-1);
}

// if (disparityRange > 255)
// throw new RuntimeException("Disparity range can't be larger than 255. disparityRange=" + disparityRange);

// See if the user overrode the number of threads
if (numThreads > 0) {
BoofConcurrency.setMaxThreads(numThreads);
Expand Down

0 comments on commit 1d60589

Please sign in to comment.