dwelling act 4 (live motion cap w/ kinect azure)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

39 lines
753 B

#pragma kernel EstimateOffsetMinMax
uint2 PointCloudRes;
uint OfsHistBinLength;
StructuredBuffer<float> PointCloudOfs;
StructuredBuffer<bool> PointCloudMask;
RWStructuredBuffer<float> OfsMinMax;
RWStructuredBuffer<uint> OfsHistBinCount;
[numthreads(1, 1, 1)]
void EstimateOffsetMinMax(uint3 id : SV_DispatchThreadID)
{
// find min & max
uint l = PointCloudRes.x * PointCloudRes.y;
float minOfs = 1000.0;
float maxOfs = -1000.0;
for (uint i = 0; i < l; i++)
{
float ofs = PointCloudOfs[i];
if (PointCloudMask[i])
{
minOfs = min(minOfs, ofs);
maxOfs = max(maxOfs, ofs);
}
}
OfsMinMax[0] = minOfs;
OfsMinMax[1] = maxOfs;
// clear bin counts
for (uint hi = 0; hi < OfsHistBinLength; hi++)
{
OfsHistBinCount[hi] = 0;
}
}