forked from IntelRealSense/librealsense
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-points.js
227 lines (213 loc) · 6.63 KB
/
test-points.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
// Copyright (c) 2017 Intel Corporation. All rights reserved.
// Use of this source code is governed by an Apache 2.0 license
// that can be found in the LICENSE file.
'use strict';
/* global describe, it, beforeEach, afterEach */
const assert = require('assert');
const fs = require('fs');
let rs2;
try {
rs2 = require('node-librealsense');
} catch (e) {
rs2 = require('../index.js');
}
let ctx;
let pipeline;
let pointcloud;
let frameSet;
let points;
let files = 'points.ply';
describe('Points test', function() {
beforeEach(function() {
ctx = new rs2.Context();
const devices = ctx.queryDevices().devices;
assert(devices.length > 0); // Device must be connected
});
afterEach(function() {
pipeline.destroy();
pipeline.stop();
rs2.cleanup();
frameSet.destroy();
if (fs.existsSync(files)) {
fs.unlinkSync(files);
}
});
it('Testing member textureCoordinates', () => {
assert.doesNotThrow(() => {
pipeline = new rs2.Pipeline();
pointcloud = new rs2.PointCloud();
pipeline.start();
});
let endTest = false;
let n = 0;
while (!endTest) {
frameSet = pipeline.waitForFrames();
n++;
console.log(`retring left ...${10 - n} times`);
if (frameSet !== undefined && frameSet.colorFrame !== undefined &&
frameSet.depthFrame !== undefined) {
let points;
let arr;
assert.doesNotThrow(() => { // jshint ignore:line
points = pointcloud.calculate(frameSet.depthFrame);
arr = points.textureCoordinates;
});
assert.equal(typeof arr[0], 'number');
assert.equal(Object.prototype.toString.call(arr), '[object Int32Array]');
pointcloud.destroy();
endTest = true;
}
if (n >= 10) {
assert(false, 'could not get colorFrame or depthFrame, try to reset camera');
}
}
});
it('Testing member vertices', () => {
assert.doesNotThrow(() => {
pipeline = new rs2.Pipeline();
pointcloud = new rs2.PointCloud();
pipeline.start();
});
let endTest = false;
let n = 0;
while (!endTest) {
frameSet = pipeline.waitForFrames();
n++;
console.log(`retring left ...${10 - n} times`);
if (frameSet !== undefined && frameSet.colorFrame !== undefined &&
frameSet.depthFrame !== undefined) {
let points;
let arr;
assert.doesNotThrow(() => { // jshint ignore:line
points = pointcloud.calculate(frameSet.depthFrame);
arr = points.vertices;
});
assert.equal(typeof arr[0], 'number');
assert.equal(Object.prototype.toString.call(arr), '[object Float32Array]');
pointcloud.destroy();
endTest = true;
}
if (n >= 10) {
assert(false, 'could not get colorFrame or depthFrame, try to reset camera');
}
}
});
it('Testing member size', () => {
assert.doesNotThrow(() => {
pipeline = new rs2.Pipeline();
pointcloud = new rs2.PointCloud();
pipeline.start();
});
let endTest = false;
let n = 0;
while (!endTest) {
frameSet = pipeline.waitForFrames();
n++;
console.log(`retring left ...${10 - n} times`);
if (frameSet !== undefined && frameSet.colorFrame !== undefined &&
frameSet.depthFrame !== undefined) {
let points;
let arr;
assert.doesNotThrow(() => { // jshint ignore:line
points = pointcloud.calculate(frameSet.depthFrame);
arr = points.size;
});
assert.equal(typeof arr, 'number');
assert.equal(Object.prototype.toString.call(arr), '[object Number]');
pointcloud.destroy();
endTest = true;
}
if (n >= 10) {
assert(false, 'could not get colorFrame or depthFrame, try to reset camera');
}
}
});
it('Testing method exportToPly without argument', () => {
assert.doesNotThrow(() => {
pipeline = new rs2.Pipeline();
pointcloud = new rs2.PointCloud();
pipeline.start();
frameSet = pipeline.waitForFrames();
points = pointcloud.calculate(frameSet.depthFrame);
});
assert.throws(() => {
points.exportToPly();
});
});
it('Testing method exportToPly with three arguments', () => {
assert.doesNotThrow(() => {
pipeline = new rs2.Pipeline();
pointcloud = new rs2.PointCloud();
pipeline.start();
frameSet = pipeline.waitForFrames();
points = pointcloud.calculate(frameSet.depthFrame);
});
assert.throws(() => {
points.exportToPly(files, files, files);
});
});
it('Testing method exportToPly first argument with number', () => {
assert.doesNotThrow(() => {
pipeline = new rs2.Pipeline();
pointcloud = new rs2.PointCloud();
pipeline.start();
frameSet = pipeline.waitForFrames();
points = pointcloud.calculate(frameSet.depthFrame);
});
assert.throws(() => {
points.exportToPly(1, 1);
});
});
it('Testing method exportToPly second argument with number', () => {
assert.doesNotThrow(() => {
pipeline = new rs2.Pipeline();
pointcloud = new rs2.PointCloud();
pipeline.start();
frameSet = pipeline.waitForFrames();
points = pointcloud.calculate(frameSet.depthFrame);
});
assert.throws(() => {
points.exportToPly(files, 1);
});
});
it('Testing method exportToPly with depthFrame', () => {
assert.doesNotThrow(() => {
pipeline = new rs2.Pipeline();
pointcloud = new rs2.PointCloud();
pipeline.start();
frameSet = pipeline.waitForFrames();
});
assert.doesNotThrow(() => {
points = pointcloud.calculate(frameSet.depthFrame);
points.exportToPly(files, frameSet.depthFrame);
assert.equal(fs.existsSync(files), true);
});
});
it('Testing method exportToPly with colorFrame', () => {
assert.doesNotThrow(() => {
pipeline = new rs2.Pipeline();
pointcloud = new rs2.PointCloud();
pipeline.start();
frameSet = pipeline.waitForFrames();
});
assert.doesNotThrow(() => {
points = pointcloud.calculate(frameSet.depthFrame);
points.exportToPly(files, frameSet.colorFrame);
assert.equal(fs.existsSync(files), true);
});
});
it('Testing method exportToPly with videoFrame', () => {
assert.doesNotThrow(() => {
pipeline = new rs2.Pipeline();
pointcloud = new rs2.PointCloud();
pipeline.start();
frameSet = pipeline.waitForFrames();
points = pointcloud.calculate(frameSet.depthFrame);
});
assert.doesNotThrow(() => {
let videoFrame = frameSet.at(1);
points.exportToPly(files, videoFrame);
assert.equal(fs.existsSync(files), true);
});
});
});