Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reduce point cloud data to positional data #11

Open
wants to merge 15 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions src/clients/reconstruction-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import {
distanceFloats2Canvas,
depthFloats2Canvas,
} from '../generators/sg-debug.js';
import { destructurePointCloud } from '../utils/point-cloud.js';

//

Expand Down Expand Up @@ -462,7 +463,11 @@ export async function getPointCloud(blob, {
});
if (res.ok) {
const headers = Object.fromEntries(res.headers.entries());
const arrayBuffer = await res.arrayBuffer();

// This will probably be handled server-side eventually.
const _arrayBuffer = await res.arrayBuffer();
const arrayBuffer = destructurePointCloud(_arrayBuffer).points;

return {
headers,
arrayBuffer,
Expand Down Expand Up @@ -516,4 +521,4 @@ export function pointCloudArrayBufferToColorAttributeArray(labelImageData, uint8
// none
}
}
}
}
39 changes: 39 additions & 0 deletions src/utils/point-cloud.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
import { pointCloudFullStride } from '../zine/zine-constants.js'


/**
* Destructure a point cloud into its component parts.
*/
export function destructurePointCloud(arrayBuffer) {
const numPoints = arrayBuffer.byteLength / pointCloudFullStride;
const points = new Float32Array(numPoints * 3);
const colors = new Uint8Array(numPoints * 3);
const intensities = new Uint8Array(numPoints);
const classifications = new Uint8Array(numPoints);
const dataView = new DataView(arrayBuffer);

let pointIndex = 0;
let colorIndex = 0;
let intensityIndex = 0;
let classificationIndex = 0;

for (let i = 0; i < arrayBuffer.byteLength; i += pointCloudFullStride) {
points[pointIndex++] = dataView.getFloat32(i, true);
points[pointIndex++] = dataView.getFloat32(i + 4, true);
points[pointIndex++] = dataView.getFloat32(i + 8, true);

colors[colorIndex++] = arrayBuffer[i + 12];
colors[colorIndex++] = arrayBuffer[i + 13];
colors[colorIndex++] = arrayBuffer[i + 14];

intensities[intensityIndex++] = arrayBuffer[i + 15];
classifications[classificationIndex++] = arrayBuffer[i + 16];
}

return {
points: points.buffer,
colors: colors.buffer,
intensities: intensities.buffer,
classifications: classifications.buffer,
};
}
2 changes: 1 addition & 1 deletion src/zine