Skip to content

Commit

Permalink
change middlebury background threshold to 15
Browse files Browse the repository at this point in the history
  • Loading branch information
Silvano Galliani committed Jan 11, 2016
1 parent 84a1825 commit 2c24e8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fusibile.cu
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ __global__ void fusibile (GlobalState &gs, int ref_camera)
// (optional) save texture
if (number_consistent >= gs.params->numConsistentThresh) {
//printf("\tEnough consistent points!\nSaving point %f %f %f", consistent_X.x, consistent_X.y, consistent_X.z);
if (!gs.params->remove_black_background || consistent_texture>20) // hardcoded for middlebury TODO FIX
if (!gs.params->remove_black_background || consistent_texture>15) // hardcoded for middlebury TODO FIX
{
gs.pc->points[center].coord = consistent_X;
gs.pc->points[center].normal = consistent_normal;
Expand Down

0 comments on commit 2c24e8a

Please sign in to comment.