p********y 发帖数: 111 | 1 有大侠给我说了marching cube,不过我还是写不出code。。。
已知条件:图1边界上所有cube坐标
目标:surface area,以前我就是简单计数多少cube在边界上,这个当然不精确,现在
想用surface triangulation,当然如果有更简单的办法更好
谁作过类似的或愿意多指教一下我?感(酬)谢。 |
t****t 发帖数: 6806 | 2 哇, 猪啊!!
我不会, 我只是来赞一下猪头的:)
【在 p********y 的大作中提到】 : 有大侠给我说了marching cube,不过我还是写不出code。。。 : 已知条件:图1边界上所有cube坐标 : 目标:surface area,以前我就是简单计数多少cube在边界上,这个当然不精确,现在 : 想用surface triangulation,当然如果有更简单的办法更好 : 谁作过类似的或愿意多指教一下我?感(酬)谢。
|
c*****t 发帖数: 1879 | 3 如果你只是需要解决具体问题的话,你可以 download
BrainSuite (http://brainsuite.usc.edu/)
里面有将 analyze image 变成 3d surface 的功能。source code 是休想了。
人家就是干这行吃饭的。
【在 p********y 的大作中提到】 : 有大侠给我说了marching cube,不过我还是写不出code。。。 : 已知条件:图1边界上所有cube坐标 : 目标:surface area,以前我就是简单计数多少cube在边界上,这个当然不精确,现在 : 想用surface triangulation,当然如果有更简单的办法更好 : 谁作过类似的或愿意多指教一下我?感(酬)谢。
|
s*****c 发帖数: 753 | 4 There are tons of open-source project that contains code to construct
surface from binary mask. They may or may-not use marching cubes because
marching cubes algorithm was patented (and I believe the patent expired last
year?).
Check VTK, ITK...
paraview is software based on VTK, if you don't want programming, you can
try that software.
【在 c*****t 的大作中提到】 : 如果你只是需要解决具体问题的话,你可以 download : BrainSuite (http://brainsuite.usc.edu/) : 里面有将 analyze image 变成 3d surface 的功能。source code 是休想了。 : 人家就是干这行吃饭的。
|
s*****c 发帖数: 753 | 5 And here is some other source code:
http://local.wasp.uwa.edu.au/~pbourke/geometry/polygonise/
It contains marching cube and marching Tetrahedrons. The latter one is
developed to circumvent the patent in marching cubes which expired in 2007.
last
【在 s*****c 的大作中提到】 : There are tons of open-source project that contains code to construct : surface from binary mask. They may or may-not use marching cubes because : marching cubes algorithm was patented (and I believe the patent expired last : year?). : Check VTK, ITK... : paraview is software based on VTK, if you don't want programming, you can : try that software.
|