Skip to content
Snippets Groups Projects
Commit dd9a3f1c authored by Nicolas Pope's avatar Nicolas Pope
Browse files

Use cost values

parent bbb0dc35
No related branches found
No related tags found
2 merge requests!116Implements #133 point alignment,!114Ongoing #133 improvements
This commit is part of merge request !114. Comments created here will be created in the context of that merge request.
...@@ -8,10 +8,10 @@ using ftl::rgbd::Camera; ...@@ -8,10 +8,10 @@ using ftl::rgbd::Camera;
#define T_PER_BLOCK 8 #define T_PER_BLOCK 8
#define FULL_MASK 0xffffffff #define FULL_MASK 0xffffffff
__device__ inline float warpMax(float e) { __device__ inline float warpMin(float e) {
for (int i = WARP_SIZE/2; i > 0; i /= 2) { for (int i = WARP_SIZE/2; i > 0; i /= 2) {
const float other = __shfl_xor_sync(FULL_MASK, e, i, WARP_SIZE); const float other = __shfl_xor_sync(FULL_MASK, e, i, WARP_SIZE);
e = max(e, other); e = min(e, other);
} }
return e; return e;
} }
...@@ -39,8 +39,8 @@ __global__ void correspondence_energy_vector_kernel( ...@@ -39,8 +39,8 @@ __global__ void correspondence_energy_vector_kernel(
const float3 camPos2 = pose2 * world1; const float3 camPos2 = pose2 * world1;
const uint2 screen2 = cam2.camToScreen<uint2>(camPos2); const uint2 screen2 = cam2.camToScreen<uint2>(camPos2);
float bestconf = 0.0f; float bestcost = 1.1f;
float nextbest = 0.0f; float nextbest = 1.0f;
float3 bestpoint; float3 bestpoint;
// Project to p2 using cam2 // Project to p2 using cam2
...@@ -54,29 +54,28 @@ __global__ void correspondence_energy_vector_kernel( ...@@ -54,29 +54,28 @@ __global__ void correspondence_energy_vector_kernel(
if (world2.x == MINF) continue; if (world2.x == MINF) continue;
// Determine degree of correspondence // Determine degree of correspondence
const float l = length(world1 - world2); const float cost = 1.0f - ftl::cuda::spatialWeighting(world1, world2, 0.04f);
const float confidence = ftl::cuda::spatialWeighting(l, 0.04f);
if (confidence > bestconf) { if (cost < bestcost) {
bestpoint = world2; bestpoint = world2;
nextbest = bestconf; nextbest = bestcost;
bestconf = confidence; bestcost = cost;
} }
} }
const float maxconf = warpMax(bestconf); const float mincost = warpMin(bestcost);
bool best = maxconf == bestconf; bool best = mincost == bestcost;
bestconf = (best) ? 0.0f : bestconf; bestcost = (best) ? nextbest : bestcost;
const float conf = maxconf - warpMax(bestconf); const float confidence = mincost / warpMin(bestcost);
if (best && maxconf > 0.0f) { if (best && mincost < 1.0f) {
vout(x,y) = vout.tex2D(x, y) + make_float4( vout(x,y) = vout.tex2D(x, y) + make_float4(
(bestpoint.x - world1.x), (bestpoint.x - world1.x),
(bestpoint.y - world1.y), (bestpoint.y - world1.y),
(bestpoint.z - world1.z), (bestpoint.z - world1.z),
maxconf); mincost);
eout(x,y) = conf * 5.0f; //maxconf * 5.0f; //(maxconf - warpMax(nextbest)); eout(x,y) = mincost * 5.0f; //confidence * 5.0f;
} else if (maxconf == 0.0f && lane == 0) { } else if (mincost >= 1.0f && lane == 0) {
vout(x,y) = make_float4(0.0f); vout(x,y) = make_float4(0.0f);
eout(x,y) = 0.0f; eout(x,y) = 0.0f;
} }
......
...@@ -4,19 +4,41 @@ ...@@ -4,19 +4,41 @@
namespace ftl { namespace ftl {
namespace cuda { namespace cuda {
__device__ inline float weighting(float r, float h) {
if (r >= h) return 0.0f;
float rh = r / h;
rh = 1.0f - rh*rh;
return rh*rh*rh*rh;
}
/* /*
* Guennebaud, G.; Gross, M. Algebraic point set surfaces. ACMTransactions on Graphics Vol. 26, No. 3, Article No. 23, 2007. * Guennebaud, G.; Gross, M. Algebraic point set surfaces. ACMTransactions on Graphics Vol. 26, No. 3, Article No. 23, 2007.
* Used in: FusionMLS: Highly dynamic 3D reconstruction with consumer-grade RGB-D cameras * Used in: FusionMLS: Highly dynamic 3D reconstruction with consumer-grade RGB-D cameras
* r = distance between points * r = distance between points
* h = smoothing parameter in meters (default 4cm) * h = smoothing parameter in meters (default 4cm)
*/ */
__device__ inline float spatialWeighting(float r, float h) { __device__ inline float spatialWeighting(const float3 &a, const float3 &b, float h) {
const float r = length(a-b);
if (r >= h) return 0.0f; if (r >= h) return 0.0f;
float rh = r / h; float rh = r / h;
rh = 1.0f - rh*rh; rh = 1.0f - rh*rh;
return rh*rh*rh*rh; return rh*rh*rh*rh;
} }
/*
* Colour weighting as suggested in:
* C. Kuster et al. Spatio-Temporal Geometry Fusion for Multiple Hybrid Cameras using Moving Least Squares Surfaces. 2014.
* c = colour distance
*/
__device__ inline float colourWeighting(uchar4 a, uchar4 b, float h) {
const float3 delta = make_float3((float)a.x - (float)b.x, (float)a.y - (float)b.y, (float)a.z - (float)b.z);
const float c = length(delta);
if (c >= h) return 0.0f;
float ch = c / h;
ch = 1.0f - ch*ch;
return ch*ch*ch*ch;
}
} }
} }
......
...@@ -116,7 +116,7 @@ __global__ void dibr_attribute_contrib_kernel( ...@@ -116,7 +116,7 @@ __global__ void dibr_attribute_contrib_kernel(
const float3 nearest = params.camera.screenToCam((int)(screenPos.x+u),(int)(screenPos.y+v),d); const float3 nearest = params.camera.screenToCam((int)(screenPos.x+u),(int)(screenPos.y+v),d);
// What is contribution of our current point at this pixel? // What is contribution of our current point at this pixel?
const float weight = ftl::cuda::spatialWeighting(length(nearest - camPos), SMOOTHING_MULTIPLIER_C*(nearest.z/params.camera.fx)); const float weight = ftl::cuda::spatialWeighting(nearest, camPos, SMOOTHING_MULTIPLIER_C*(nearest.z/params.camera.fx));
if (screenPos.x+u < colour_out.width() && screenPos.y+v < colour_out.height() && weight > 0.0f) { // TODO: Use confidence threshold here if (screenPos.x+u < colour_out.width() && screenPos.y+v < colour_out.height() && weight > 0.0f) { // TODO: Use confidence threshold here
const float4 wcolour = colour * weight; const float4 wcolour = colour * weight;
//const float4 wnormal = normal * weight; //const float4 wnormal = normal * weight;
...@@ -187,7 +187,7 @@ __global__ void dibr_attribute_contrib_kernel( ...@@ -187,7 +187,7 @@ __global__ void dibr_attribute_contrib_kernel(
const float3 nearest = params.camera.screenToCam((int)(screenPos.x+u),(int)(screenPos.y+v),d); const float3 nearest = params.camera.screenToCam((int)(screenPos.x+u),(int)(screenPos.y+v),d);
// What is contribution of our current point at this pixel? // What is contribution of our current point at this pixel?
const float weight = ftl::cuda::spatialWeighting(length(nearest - camPos), SMOOTHING_MULTIPLIER_C*(nearest.z/params.camera.fx)); const float weight = ftl::cuda::spatialWeighting(nearest, camPos, SMOOTHING_MULTIPLIER_C*(nearest.z/params.camera.fx));
if (screenPos.x+u < colour_out.width() && screenPos.y+v < colour_out.height() && weight > 0.0f) { // TODO: Use confidence threshold here if (screenPos.x+u < colour_out.width() && screenPos.y+v < colour_out.height() && weight > 0.0f) { // TODO: Use confidence threshold here
const float wcolour = colour * weight; const float wcolour = colour * weight;
//const float4 wnormal = normal * weight; //const float4 wnormal = normal * weight;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment