diff --git a/SDK/CPP/public/samples/fusion_evaluator/main.cpp b/SDK/CPP/public/samples/fusion_evaluator/main.cpp index 691e0e2906069d4dc1080a734ac99cd09cb666c5..edb621b1faebf97527dc904eea25769f87b02cd6 100644 --- a/SDK/CPP/public/samples/fusion_evaluator/main.cpp +++ b/SDK/CPP/public/samples/fusion_evaluator/main.cpp @@ -95,7 +95,9 @@ int main(int argc, char **argv) op1->property("enabled")->setBool(do_fusion); op2->property("enabled")->setBool(do_eval); - op2->property("show_colour")->setBool(true); + op2->property("show_colour")->setBool(false); + op1->property("show_changes")->setBool(true); + op1->property("visibility_carving")->setBool(false); pipe->submit(frame); if (!pipe->waitCompletion(3000)) diff --git a/components/operators/include/ftl/operators/cuda/mls/multi_intensity.hpp b/components/operators/include/ftl/operators/cuda/mls/multi_intensity.hpp index e1a7e21321650f2c2e4b5592b401b1ca9ff7d49a..bbd5cfffffae45a25510dc2d0a2b0ed8134633fb 100644 --- a/components/operators/include/ftl/operators/cuda/mls/multi_intensity.hpp +++ b/components/operators/include/ftl/operators/cuda/mls/multi_intensity.hpp @@ -59,6 +59,13 @@ public: cudaStream_t stream ); + void adjust( + cv::cuda::GpuMat &depth_out, + cv::cuda::GpuMat &normals_out, + cv::cuda::GpuMat &colour_out, + cudaStream_t stream + ); + private: cv::cuda::GpuMat depth_prime_; cv::cuda::GpuMat intensity_prime_; diff --git a/components/operators/src/fusion/fusion.cpp b/components/operators/src/fusion/fusion.cpp index b1b10634216156c97c8cee6e2d7b54fa3939303a..857198c7aa5888d0050273c47749e9e77b0ff1a0 100644 --- a/components/operators/src/fusion/fusion.cpp +++ b/components/operators/src/fusion/fusion.cpp @@ -17,6 +17,7 @@ void Fusion::configuration(ftl::Configurable *cfg) { cfg->value("mls_smoothing", 2.0f); cfg->value("mls_iterations", 2); cfg->value("visibility_carving", true); + cfg->value("show_changes", false); } Fusion::Fusion(ftl::operators::Graph *g, ftl::Configurable *cfg) : ftl::operators::Operator(g, cfg), mls_(3) { @@ -31,6 +32,7 @@ bool Fusion::apply(ftl::rgbd::FrameSet &in, ftl::rgbd::FrameSet &out, cudaStream float mls_smoothing = config()->value("mls_smoothing", 2.0f); //float mls_feature = config()->value("mls_feature", 20.0f); int mls_iters = config()->value("mls_iterations", 2); + bool show_changes = config()->value("show_changes", false); if (weights_.size() != in.frames.size()) weights_.resize(in.frames.size()); @@ -154,11 +156,20 @@ bool Fusion::apply(ftl::rgbd::FrameSet &in, ftl::rgbd::FrameSet &out, cudaStream ); } - mls_.adjust( - f1.create<GpuMat>(Channel::Depth), - f1.create<GpuMat>(Channel::Normals), - stream - ); + if (show_changes) { + mls_.adjust( + f1.create<GpuMat>(Channel::Depth), + f1.create<GpuMat>(Channel::Normals), + f1.create<GpuMat>(Channel::Colour), + stream + ); + } else { + mls_.adjust( + f1.create<GpuMat>(Channel::Depth), + f1.create<GpuMat>(Channel::Normals), + stream + ); + } } } diff --git a/components/operators/src/fusion/smoothing/mls_multi_weighted.cu b/components/operators/src/fusion/smoothing/mls_multi_weighted.cu index 11248e93bdbf49df3e551391327908cb57382ec6..489dc0cf58420cc59f2b87c151b182ef024ad9a4 100644 --- a/components/operators/src/fusion/smoothing/mls_multi_weighted.cu +++ b/components/operators/src/fusion/smoothing/mls_multi_weighted.cu @@ -114,8 +114,8 @@ __device__ inline float biasedLength(const float3 &Xi, const float3 &X) { } // Make sure there is a minimum smoothing value - spatial_smoothing = max(0.01f, spatial_smoothing); - hf_intensity_smoothing = max(5.0f, hf_intensity_smoothing); + spatial_smoothing = max(0.05f, spatial_smoothing); + hf_intensity_smoothing = max(50.0f, hf_intensity_smoothing); //mean_smoothing = max(10.0f, mean_smoothing); // Check for neighbourhood symmetry and use to weight overall contribution @@ -184,12 +184,14 @@ __device__ inline float biasedLength(const float3 &Xi, const float3 &X) { const float* __restrict__ contrib_out, half4* __restrict__ normals_out, float* __restrict__ depth, + uchar4* __restrict__ colour, ftl::rgbd::Camera camera, int npitch_in, int cpitch_in, int wpitch, int npitch, - int dpitch + int dpitch, + int cpitch ) { const int x = blockIdx.x*blockDim.x + threadIdx.x; const int y = blockIdx.y*blockDim.y + threadIdx.y; @@ -218,6 +220,20 @@ __device__ inline float biasedLength(const float3 &Xi, const float3 &X) { depth[x+y*dpitch] = X.z; normals_out[x+y*npitch] = make_half4(nX / length(nX), 0.0f); + + if (colour) { + int2 s = camera.camToScreen<int2>(X); + float pd = min(1.0f, max(0.0f, X.z-d0) / 0.002f); + float nd = min(1.0f, -min(0.0f, X.z-d0) / 0.002f); + colour[x+y*cpitch] = (abs(s.x - x) > 1 || abs(s.y - y) > 1) + ? make_uchar4(0,255,0,255) + : make_uchar4( + 255.0f - pd*255.0f, + 255.0f - pd*255.0f - nd*255.0f, + 255.0f - nd*255.0f, + 255.0f + ); + } } } @@ -336,12 +352,49 @@ void MLSMultiIntensity::adjust( weight_accum_.ptr<float>(), normals_out.ptr<half4>(), depth_prime_.ptr<float>(), + nullptr, cam_prime_, normal_accum_.step1()/4, centroid_accum_.step1()/4, weight_accum_.step1(), normals_out.step1()/4, - depth_prime_.step1() + depth_prime_.step1(), + 0 + ); + cudaSafeCall( cudaGetLastError() ); +} + +void MLSMultiIntensity::adjust( + GpuMat &depth_out, + GpuMat &normals_out, + GpuMat &colour_out, + cudaStream_t stream) +{ + static constexpr int THREADS_X = 8; + static constexpr int THREADS_Y = 8; + + const dim3 gridSize((depth_prime_.cols + THREADS_X - 1)/THREADS_X, (depth_prime_.rows + THREADS_Y - 1)/THREADS_Y); + const dim3 blockSize(THREADS_X, THREADS_Y); + + normals_out.create(depth_prime_.size(), CV_16FC4); + depth_out.create(depth_prime_.size(), CV_32F); + + // FIXME: Depth prime assumed to be same as depth out + + mls_reduce_kernel_2<<<gridSize, blockSize, 0, stream>>>( + centroid_accum_.ptr<float4>(), + normal_accum_.ptr<half4>(), + weight_accum_.ptr<float>(), + normals_out.ptr<half4>(), + depth_prime_.ptr<float>(), + colour_out.ptr<uchar4>(), + cam_prime_, + normal_accum_.step1()/4, + centroid_accum_.step1()/4, + weight_accum_.step1(), + normals_out.step1()/4, + depth_prime_.step1(), + colour_out.step1()/4 ); cudaSafeCall( cudaGetLastError() ); }