rm-gxf-computing-rusts 0.0.21 → 0.0.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rm-gxf-computing-rusts",
3
- "version": "0.0.21",
3
+ "version": "0.0.22",
4
4
  "description": "",
5
5
  "author": "初秋",
6
6
  "type": "commonjs",
Binary file
Binary file
package/src/index.d.ts CHANGED
@@ -61,12 +61,6 @@ export interface LineData {
61
61
  checkResults: Array<CheckResult>
62
62
  }
63
63
 
64
- export interface LineData {
65
- start: Vector3F64
66
- end: Vector3F64
67
- checkResults: Array<CheckResult>
68
- }
69
-
70
64
  export interface ParseLineResult {
71
65
  start?: Vector3F64
72
66
  end?: Vector3F64
@@ -131,33 +125,45 @@ export declare function samplePointsByImage(option: SamplePointsByImageOption):
131
125
 
132
126
  export interface SamplePointsByImageOption {
133
127
  view?: boolean
128
+ /** pcd url,pcd_chunk为true时,该值为目录 */
134
129
  pcdPath: string
130
+ /** 是否使用pcd片段 */
135
131
  pcdChunk?: boolean
132
+ /** 图片url列表 */
136
133
  imageUrls: Array<string>
137
- groundZ: number
134
+ /** 点云z轴小于该值的过滤掉 */
135
+ minZ?: number
138
136
  /** 当前使用版本 */
139
137
  version?: string
140
138
  /** 点云蔟过滤 */
141
139
  clusterFilter?: boolean
140
+ /** 点云蔟分类距离 */
142
141
  distanceThreshold?: number
143
142
  /** 深度过滤 */
144
143
  depthFilter?: DepthFilter
144
+ /** 过滤类型列表 */
145
145
  excludeCategoryList?: Array<string>
146
146
  }
147
147
 
148
148
  export interface SamplePointsByImageOption {
149
149
  view?: boolean
150
+ /** pcd url,pcd_chunk为true时,该值为目录 */
150
151
  pcdPath: string
152
+ /** 是否使用pcd片段 */
151
153
  pcdChunk?: boolean
154
+ /** 图片url列表 */
152
155
  imageUrls: Array<string>
153
- groundZ: number
156
+ /** 点云z轴小于该值的过滤掉 */
157
+ minZ?: number
154
158
  /** 当前使用版本 */
155
159
  version?: string
156
160
  /** 点云蔟过滤 */
157
161
  clusterFilter?: boolean
162
+ /** 点云蔟分类距离 */
158
163
  distanceThreshold?: number
159
164
  /** 深度过滤 */
160
165
  depthFilter?: DepthFilter
166
+ /** 过滤类型列表 */
161
167
  excludeCategoryList?: Array<string>
162
168
  }
163
169