首页 > 解决方案 > 错误的BoundingBox尺寸提取pythonocc

问题描述

我正在尝试从 STP 文件中提取框尺寸,它适用于一些示例,但不幸的是,我对其他示例的提取错误,例如下面的压缩 STP 文件

https://github.com/tpaviot/pythonocc-demos/files/5272793/Test.zip

我得到了“x”的结果值:6.802000200000001,但正确的值是 6.24,y 和 z 值以此类推。

这是我的代码

from future import print_function

from OCC.Extend.DataExchange import read_step_file
from OCC.Core.IFSelect import IFSelect_RetDone
from OCC.Core.Bnd import Bnd_Box
from OCC.Core.BRepBndLib import brepbndlib_Add
from OCC.Core.BRepMesh import BRepMesh_IncrementalMesh
from OCC.Core.STEPControl import STEPControl_Reader

shapes = read_step_file('path/to/stpfile')

def read_stp_file(file_path):
step_reader = STEPControl_Reader()
status = step_reader.ReadFile(file_path)
if status == IFSelect_RetDone:
fails_only = False
step_reader.TransferRoots()
shape = step_reader.Shape(1)
return shape
else:
print("Error: can't read file.")

bbox = Bnd_Box()

use_mesh = True
mesh = BRepMesh_IncrementalMesh()
mesh.SetParallelDefault(True)
mesh.SetShape(shapes)
mesh.Perform()
assert mesh.IsDone()
brepbndlib_Add(shapes, bbox, use_mesh)
xmin, ymin, zmin, xmax, ymax, zmax = bbox.Get()
print('x value : >>>> ', xmax - xmin)

标签: python3dstppythonocc

解决方案


我刚刚遇到了同样的问题。

我认为原因是,正如Get 的文档所指出的那样,其中包含了某种差距。

您也可以在此处的代码中看到它。

似乎这个功能中的放大正在增加差距。

由于只是在边界框周围添加了间隙,因此您可以将其通过GetGap()并从所有侧面再次删除。或者您使用SetGap将其设置为 0。

我个人不知道为什么要添加这个差距,但文档BRepBndLib::Add甚至这样说:The resulting bounding box may be somewhat larger than the object.


推荐阅读