SlideShare a Scribd company logo
1 of 9
Download to read offline
International Journal of Computer Graphics & Animation (IJCGA) Vol.5, No.2, April 2015
DOI : 10.5121/ijcga.2015.5204 37
3D MESH SEGMENTATION USING LOCAL
GEOMETRY
Sumanta Guha
Computer Science & Information Management Program, Asian Institute of Technology, Thailand.
ABSTRACT.
We develop an algorithm to segment a 3D surface mesh intovisually meaningful regions based on
analyzing the local geometry ofvertices. We begin with a novel characterization of mesh vertices as
convex,concave or hyperbolic depending upon their discrete local geometry.Hyperbolic and concave
vertices are considered potential feature regionboundaries. We propose a new region growing technique
starting fromthese boundary vertices leading to a segmentation of the surface thatis subsequently simplified
by a region-merging method. Experiments indicatethat our algorithm segments a broad range of 3D
models at aquality comparable to existing algorithms. Its use of methods that belongnaturally to discretized
surfaces and ease of implementation makeit an appealing alternative in various applications.
KEYWORDS:
Feature extraction, hyperbolic vertex, local geometry, meshsegmentation, region growing, region merging
1 INTRODUCTION
Polygonal meshes are the dominant mode of representing surfaces in computer graphics. They are
geometrically simple and intuitive, and lend themselves to efficient algorithms and data
structures. However, other than vertex-edge-face adjacency data, a polygonal mesh does not
intrinsically possess any high-level semantic structure. For example, there is no information as
such in the mesh data of the hand in Figure 1 that distinguishes the five fingers. However, such
segmentation of an object into perceptually meaningful regions is important in applications such
as shape recognition [22], morphing [8], texturing [11] and collision detection [12], amongst
others.
The goal of surface mesh segmentation then is to decompose the input mesh into smaller regions
which are perceptually significant. Nevertheless, as Atteneet al [1] point out it is not possible to
define exactly what constitutes perceptual significance. Not only does this lie “in the eyes of the
beholder” it may vary from application to application. The viewer’s world knowledge is critical
to segmentation as well – in a model that a layman would segment only into heart and lung and
tissue, an oncologist may distinguish cancerous tumors and benign growths as well.
International Journal of Computer Graphics & Animation (IJCGA) Vol.5, No.2, April 2015
38
Fig. 1. Hand model.
Our contribution is a novel approach to mesh segmentation that first separates vertices based on
their local geometry. In particular, we distinguish between convex, concave and hyperbolic
vertices by examining their geometric neighbor- hoods as a discrete structure. This
characterization, which seems to be new in CG applications, is not derived from the well-known
method of differentiating between hyperbolic, parabolic and elliptic points on a smooth surface
using Gaussian curvature, though the two are not unrelated. Following the characterization of
vertices, we estimate the potential (meaningful) region boundaries to be along the concave and
hyperbolic vertices. Regions are subsequently grown from the boundary vertices by a novel
modification of the watershed segmentation scheme. A final region merging step bounds the
number of segments.
The rest of the paper is organized as follows. Section 2 briefly reviews existing algorithms that
are relevant to ours. In Section 3 we discuss the background theory and our segmentation method.
Section 4 shows experimental results on various 3D models and Section 5 concludes the paper.
2 RELATED WORKS
An approach to segmentation that splits the surface into coherent nearly-flat patches based,
typically, on a curvature analysis is called patch-type segmentation [7, 5, 19, 22]. See Figure 2.
Patch-type segmentation is used in applications that are sensitive to geometric properties such as
planarity and convexity. These include texture mapping, re-meshing and simplification [18].
International Journal of Computer Graphics & Animation (IJCGA) Vol.5, No.2, April 2015
39
Fig. 2. Patch-type (left) and part-type (right) segmentation taken from [18].
Part-type segmentation, on the other hand, seeks to sub-divide the input mesh into sub-meshes
that match human perception. Algorithms of this type can assist applications such as shape
retrieval, shape recognition, collision detection and object manipulation. Rom and Medioni [16]
in 1994 proposed a framework to decompose 3D objects into parts using the curvature properties
of parabolic curves. Though they initiate the use of curvature in segmentation their approach
cannot directly process triangle meshes.
Sacchi et al [17] and Mangan and Whitaker [14] propose approaches to seg- mentation using
curvature that can apply to a mesh object. They use total curvature as the key to segmenting parts
from an input mesh. However, their segmentation of large models often fails to match viewer
perception.
Page et al [15] in 2003 introduced a method called Fast Marching Water- sheds that splits a
triangle mesh into segments that fit the definition of visual parts according to the minima rule
proposed by Hoffman and Richards [9]. The minima rule is an elegant theory from computer
vision which propounds that human perception decomposes a 3D object into visual constituents at
contours of negative Gaussian curvature – bands of hyperbolic points in other words.Some recent
segmentation methods incorporate semantics derived, typically, from knowledge embodied in a
training set: Kalogerakis et al [10] and Lv et al [13] simultaneously segment and label parts of a
3D mesh.
Zhang et al [21] proposed a segmentation algorithm that estimates the Gaussian curvature at a
vertex, identifies the hyperbolic vertices as potential region.boundaries, applies the watershed
technique to grow regions, and completes finally with a curvature-driven region merging phase.
Recently, Chen and Geor-ganas [3] improved the algorithm of Zhang et al. [21] by extending the
boundary detection step to additionally identify concave vertices and prevent them from breaking
segment integrity.
Our segmentation algorithm is inspired by that of Chen and Georganas. How- ever, we do not
invoke Gaussian curvature. Instead, we apply our new classification scheme to distinguish
concave and hyperbolic vertices, which subsequently serve as region boundaries. Our region
growing algorithm is a modification of the watershed technique that seems to better allow growth
into intuitively separate parts.
3 THEORY AND ALGORITHM
3.1 Vertex classification
To simplify the theoretical development we assume that the input mesh is a topologically closed
surface, implying that it has a meaningful interior. This as- sumption is not essential, however,
and our code works for non-closed meshes as well. We assume that mesh faces are all triangular.
We begin with a characterization of vertices as convex, concave or hyperbolic.
Definition 1. A vertex V of a mesh M is hyperbolic if it is contained in the interior (as a subspace
of R3) of the convex hull C of its neighbors. A vertex V that is not hyperbolic is convex if there
International Journal of Computer Graphics & Animation (IJCGA) Vol.5, No.2, April 2015
40
exists a (flat) disc D centered at V which does not intersect the interior of M; otherwise, it is
concave.
For example, the convex hull of the neighbors of V in Figure 3(a) is the triangle W1W2W3,
which has empty interior in R3. Therefore, V is trivially non- hyperbolic; moreover, the disc D
proves that V is convex. The vertex V on the saddle-shaped surface in Figure 3(b) is hyperbolic.
The reader may check in Figure 3(c) that all the vertices on the L-shaped solid are non-
hyperbolic, and that only vertex V is concave, while all the rest are convex. The disc D at a corner
of the L-shaped solid indicates the reason why we cannot replace the disc in the definition of
convexity with its containing plane – a plane may intersect the mesh at a distant point.
Our characterization of a mesh vertex is not unrelated to that of a point of a smooth surface as
hyperbolic, parabolic or elliptic by means of Gaussian curvature, but we’ll not explore the
connection here. It should be observed though
Fig. 3. Illustrations of convex, hyperbolic and concave vertices.
that our use of the discrete local geometry to classify vertices seems more natural for a meshed
surface than computing pseudo-curvature values, as some authors do, on a smooth approximation.
Whether a vertex V is hyperbolic or not is a local decision depending on its disposition with
respect to its neighbors. However, distinguishing a non- hyperbolic vertex V as either convex or
concave necessitates one to determine the side of the surface near V that the interior of M lies,
which requires global knowledge of M.
3.2 Region Growing
Our strategy to find features is to first presume hyperbolic and concave vertices as potential
feature region boundaries. The motivation is simple. A surface whose vertices are all convex, e.g.,
the box of Figure 3(a), is likely featureless. On the other hand, the two legs of the L-surface of
Figure 3(c) appear to be features that are separated by the edge at the crook between them – all
vertices in the interior of this edge being concave. Vertices along the circular region where the
stem meets the cap of the mushroom of Figure 4 appear to be hyperbolic.
International Journal of Computer Graphics & Animation (IJCGA) Vol.5, No.2, April 2015
41
The next stage in our strategy is, therefore, to treat the hyperbolic and concave vertices as”seeds”,
from which to grow the feature regions. In particular, we shall grow the regions in a scattershot
manner as the local geometry at a seed
Fig. 4. Mushroom model.
does not in general suggest a best direction. The plan is as follows. Seeds are initially all labeled
differently. They are next processed iteratively to label their neighbors. Vertices adjacent to each
seed, which have not already been labeled, are given new and different labels. In the following
rounds vertices already labeled are processed iteratively to propagate their labels in a breadth-first
manner.
For example, say the labels after the first round of the vertices w1,w2, . . . ,wk, adjacent to a seed
v are l1, l2, . . . , lk, respectively. Then, vertices adjacent to w1, that have not already been
labeled, are labeled l1; then, those adjacent to w2, that have not already been labeled, are labeled
l2; and so on. Figure 5 illustrates the idea. The process of growing feature regions in this manner
from each seed is repeated iteratively until all the vertices of the mesh have been labeled.
Our region growing method, though inspired by the watershed technique, is different in that the
latter labels regions with the names of the seeds themselves, while our method adds one layer of
growth in every possible direction. This idea suggested itself from experimentation with various
models and seems to actually work better than the straight watershed scheme in practice.
3.3 Region Merging
Vertices having like labels form a feature region, but there is likely great over-segmentation at
this point, so we begin a third stage of region merging. In thisfinal stage, the feature region with
the smallest number of vertices is iterativelymerged with a neighboring region. We choose the
neighboring region to mergewith as the one – borrowing a heuristic from Chen and Georganas [3]
– that
International Journal of Computer Graphics & Animation (IJCGA) Vol.5, No.2, April 2015
42
Fig. 5. Region growing.
shares the longest border with the candidate for merging. Figure 6 shows the idea. Region
merging continues until a preset threshold is reached in the number of segments.
Fig. 6. Region merging.
3.4 Complexity
It is still fairly straightforward to see that the complexity of our segmentation procedure is linear
in the size of the mesh, because: (a) the classification of vertices as convex/concave/hyperbolic
requires examination only of each vertex’s link, and, moreover, each edge of a surface mesh can
appear in the link of at most two vertices, for a total cost linear in the number of edges; (b) region
growing is a breadth-first procedure requiring time linear in the number of vertices; (c) region
merging costs O(1) at most per vertex for a total linear cost as well.
4 EXPERIMENTAL RESULTS
We have implemented our segmentation algorithm, coding it in C++ with the STL on an Intel
platform with 2Ghz CPU and 1GB RAM. We used several pre- packaged routines from the
CGAL library [2], the Qt toolkit [20] to build the GUI, and the libQGLViewer [6] as a rendering
engine. Figures 7-11 show experimental results on fairly large meshes. The quality of the output
compares well with that of existing methods.
5 CONCLUSIONS AND FUTURE WORK
We have proposed a novel algorithm for segmenting meshed surfaces into smaller visually
meaningful parts. We apply a discrete and local characterization, itself new, of vertices
intohyperbolic, convex and concave, to find region boundaries.This method seems a more natural
fit for a mesh structure than the popu-lar Gaussian curvature estimation method, the latter being a
transplant fromsmooth surfaces. Our method of region growing is a novel modification as wellof
the watershed method.
International Journal of Computer Graphics & Animation (IJCGA) Vol.5, No.2, April 2015
43
There are specific improvements that might be made. For example, the re-gion growing method is
not robust and is sensitive to the initial labeling of theboundary vertices. A way to address this
problem may be to “invert” the la-beling procedure so that it starts from the non-boundary
vertices, each suchfinding a nearest (according to an appropriate distance metric) boundary ver-
tex and adopting the latter’s label. Additionally, it would be useful to be ableto replace the user-
set threshold for the number of regions at which the merg-ing process stops with
automatictermination based upon some measure of thequality of the current segmentation.
Another important direction for future work is to extend the algorithm toprocess point cloud data,
where there is no connectivity information.
ACKNOWLEDGEMENTS
We would like to thank Chansophea Chuon for helping develop our software andcollaborating on
preliminary results announced in Chuon and Guha [4]. We aregrateful to the AIM@SHAPE
Project for the mesh models that we used. Wethank Nguyen Tan Khoa for initial contributions.
REFERENCES
[1] M. Attene, S. Katz, M. Mortara, G. Patane, M. Spagnuolo, and A. Tal. Meshsegmentation - a
comparative study. In SMI ’06: Proceedings of the IEEE Inter-national Conference on Shape
Modeling and Applications 2006 (SMI’06), page 7,Washington, DC, USA, 2006. IEEE Computer
Society.
[2] http://www.cgal.org/.
[3] L. Chen and N. D. Georganas. An efficient and robust algorithm for 3d meshsegmentation. Springer
Science + Business Media, LLC, 2006.
[4] C. Chuon and S. Guha. Surface mesh segmentation using local geometry. In Pro-ceedings of the 6th
International Conference on Computer Graphics, Imaging andVisualization (CGIV ’09), pages 250–
254, Tianjin, China, 2009. IEEE ComputerSociety.
[5] D. Cohen-Steiner, P. Alliez, and M. Desbrun. Variational shape approximation. InSIGGRAPH ’04:
ACM SIGGRAPH 2004 Papers, pages 905–914, New York, NY,USA, 2004. ACM Press.
[6] G. Debunnes. http://artis.imag.fr/ËśGilles.Debunne/QGLViewer/.
[7] M. Eck, T. DeRose, T. Duchamp, H. Hoppe, M. Lounsbery, and W. Stuetzle.Multiresolution
analysis of arbitrary meshes. In SIGGRAPH ’95: Proceedings ofthe 22nd annual conference on
Computer graphics and interactive techniques, pages173–182, New York, NY, USA, 1995. ACM
Press.
[8] A. D. Gregory, A. State, M. C. Lin, D. Manocha, and M. A. Livingston. Interactivesurface
decomposition for polyhedral morphing. The Visual Computer, 15(9):453–470, 1999.
[9] D. D. Hoffman and W. Richards. Parts of recognition. Technical Report AIM-732,Massachusetts
Institute of Technology - Artificial Intelligence Laboratory, 1983.
[10] E. Kalogerakis, A. Hertzmann, and K. Singh. Learning 3d mesh segmentation andlabeling. In ACM
Transactions on Graphics - Proceedings of ACM SIGGRAPH2010. ACM, 2010.
[11] B. Levy, S. Petitjean, N. Ray, and J. Maillot. Least squares conformal maps forautomatic texture
atlas generation. ACM Trans. Graph., 21(3):362–371, 2002.
[12] X. Li, T. W. Toon, and Z. Huang. Decomposing polygon meshes for interactive applications. In I3D
’01: Proceedings of the 2001 symposium on Interactive 3D graphics, pages 35–42, New York, NY,
USA, 2001. ACM Press.
[13] J. Lv, X. Chen, J. Huang, and H. Bao. Semi-supervised mesh segmentation andlabeling. In Computer
Graphics Forum - Proceedings of Pacific Graphics 2012,pages 2241–2246. ACM, 2012.
International Journal of Computer Graphics & Animation (IJCGA) Vol.5, No.2, April 2015
44
[14] A. P. Mangan and R. T. Whitaker. Partitioning 3d surface meshes using watershed segmentation.
IEEE Transactions on Visualization and Computer Graphics, 5(4):308–321, 1999.
[15] D. L. Page, A. F. Koschan, and M. A. Abidi. Perception-based 3d triangle meshsegmentation using
fast marching perception-based 3d triangle mesh segmentationusing fast marching watersheds.
Proceedings of International Conference onComputer Vision and Pattern Recognition, II:27–32,
June 2003.
[16] H. Rom and G. Medioni. Part decomposition and description of 3d shapes. InPattern Recognition,
pages 629–632, 1994.
[17] R. Sacchi, J. F. Poliakoff, P. D. Thomas, and K. H. Hafele. Curvature estimationfor segmentation of
triangulated surfaces. In Digital Imageing and Modeling, pages536–543, 1999.
[18] A. Shamir. A formulation of boundary mesh segmentation. In 3DPVT ’04: Pro-ceedings of the 3D
Data Processing, Visualization, and Transmission, 2nd Inter-national Symposium on (3DPVT’04),
pages 82–89, Washington, DC, USA, 2004.IEEE Computer Society.
[19] A. Sheffer. Model simplification for meshing using face clustering. In ComputerAided Desgin,
pages 925–934, 2001.
[20] TrollTech. Qt 4.2.2 community version http://www.trolltech.com.
[21] Y. Zhang, J. Paik, A. Koschan, M. A. Abidi, and D. Gorsich. A simple and efficientalgorithm for
part decomposition of 3-d triangulated models based on curvature analysis. IEEE ICIP, 2002.
[22] E. Zuckerberger, A. Tal, and S. Shlafman. Polyhedral surface decomposition withapplications. In
Computer & Graphics, pages 733 – 743, 2002.
Fig. 7. Mushroom model (240 triangles) segmented to 2 regions.
Fig. 8. Goblet model (510 triangles) segmented to 4 regions.
International Journal of Computer Graphics & Animation (IJCGA) Vol.5, No.2, April 2015
45
Fig. 9. Elk model (10K triangles) segmented to 7 regions.
Fig. 10. Hand model (50K triangles) segmented to 8 regions.
Fig. 11. Octopus model (34K triangles) segmented to 15 regions.

More Related Content

What's hot

Solving the Pose Ambiguity via a Simple Concentric Circle Constraint
Solving the Pose Ambiguity via a Simple Concentric Circle ConstraintSolving the Pose Ambiguity via a Simple Concentric Circle Constraint
Solving the Pose Ambiguity via a Simple Concentric Circle ConstraintDr. Amarjeet Singh
 
ARABIC HANDWRITTEN CHARACTER RECOGNITION USING STRUCTURAL SHAPE DECOMPOSITION
ARABIC HANDWRITTEN CHARACTER RECOGNITION USING STRUCTURAL SHAPE DECOMPOSITIONARABIC HANDWRITTEN CHARACTER RECOGNITION USING STRUCTURAL SHAPE DECOMPOSITION
ARABIC HANDWRITTEN CHARACTER RECOGNITION USING STRUCTURAL SHAPE DECOMPOSITIONsipij
 
Geometric modeling
Geometric modelingGeometric modeling
Geometric modelingnmahi96
 
mathpsy2012 poster_Shweta_3(1)
mathpsy2012 poster_Shweta_3(1)mathpsy2012 poster_Shweta_3(1)
mathpsy2012 poster_Shweta_3(1)Shweta Gupte
 
Automatic rectification of perspective distortion from a single image using p...
Automatic rectification of perspective distortion from a single image using p...Automatic rectification of perspective distortion from a single image using p...
Automatic rectification of perspective distortion from a single image using p...ijcsa
 
Detection of crossover & bifurcation points on a retinal fundus image by anal...
Detection of crossover & bifurcation points on a retinal fundus image by anal...Detection of crossover & bifurcation points on a retinal fundus image by anal...
Detection of crossover & bifurcation points on a retinal fundus image by anal...eSAT Publishing House
 
Detection of crossover & bifurcation points on a retinal fundus image by ...
Detection of crossover & bifurcation points on a retinal fundus image by ...Detection of crossover & bifurcation points on a retinal fundus image by ...
Detection of crossover & bifurcation points on a retinal fundus image by ...eSAT Journals
 
Two marks with answers ME6501 CAD
Two marks with answers ME6501 CADTwo marks with answers ME6501 CAD
Two marks with answers ME6501 CADPriscilla CPG
 
Basic image matching techniques, epipolar geometry and normalized image
Basic image matching techniques, epipolar geometry and normalized imageBasic image matching techniques, epipolar geometry and normalized image
Basic image matching techniques, epipolar geometry and normalized imageNational Cheng Kung University
 
Geometric Modeling
Geometric Modeling Geometric Modeling
Geometric Modeling illpa
 
Paper id 25201492
Paper id 25201492Paper id 25201492
Paper id 25201492IJRAT
 
57892883 geometric-modeling
57892883 geometric-modeling57892883 geometric-modeling
57892883 geometric-modelingmanojg1990
 
Mesh final pzn_geo1004_2015_f3_2017
Mesh final pzn_geo1004_2015_f3_2017Mesh final pzn_geo1004_2015_f3_2017
Mesh final pzn_geo1004_2015_f3_2017Pirouz Nourian
 
UNIT II GEOMETRIC MODELING (COMPUTER AIDED DESIGN AND MANUFACTURING )
UNIT II GEOMETRIC MODELING (COMPUTER AIDED DESIGN AND MANUFACTURING )UNIT II GEOMETRIC MODELING (COMPUTER AIDED DESIGN AND MANUFACTURING )
UNIT II GEOMETRIC MODELING (COMPUTER AIDED DESIGN AND MANUFACTURING )ravis205084
 
CAD - UNIT 2 (Geometric Modelling)
CAD - UNIT 2 (Geometric Modelling)CAD - UNIT 2 (Geometric Modelling)
CAD - UNIT 2 (Geometric Modelling)Priscilla CPG
 
Unimodal Multi-Feature Fusion and one-dimensional Hidden Markov Models for Lo...
Unimodal Multi-Feature Fusion and one-dimensional Hidden Markov Models for Lo...Unimodal Multi-Feature Fusion and one-dimensional Hidden Markov Models for Lo...
Unimodal Multi-Feature Fusion and one-dimensional Hidden Markov Models for Lo...IJECEIAES
 
Quadric surfaces
Quadric surfacesQuadric surfaces
Quadric surfacesAnkur Kumar
 

What's hot (18)

Solving the Pose Ambiguity via a Simple Concentric Circle Constraint
Solving the Pose Ambiguity via a Simple Concentric Circle ConstraintSolving the Pose Ambiguity via a Simple Concentric Circle Constraint
Solving the Pose Ambiguity via a Simple Concentric Circle Constraint
 
ARABIC HANDWRITTEN CHARACTER RECOGNITION USING STRUCTURAL SHAPE DECOMPOSITION
ARABIC HANDWRITTEN CHARACTER RECOGNITION USING STRUCTURAL SHAPE DECOMPOSITIONARABIC HANDWRITTEN CHARACTER RECOGNITION USING STRUCTURAL SHAPE DECOMPOSITION
ARABIC HANDWRITTEN CHARACTER RECOGNITION USING STRUCTURAL SHAPE DECOMPOSITION
 
Geometric modeling
Geometric modelingGeometric modeling
Geometric modeling
 
mathpsy2012 poster_Shweta_3(1)
mathpsy2012 poster_Shweta_3(1)mathpsy2012 poster_Shweta_3(1)
mathpsy2012 poster_Shweta_3(1)
 
Curves and surfaces
Curves and surfacesCurves and surfaces
Curves and surfaces
 
Automatic rectification of perspective distortion from a single image using p...
Automatic rectification of perspective distortion from a single image using p...Automatic rectification of perspective distortion from a single image using p...
Automatic rectification of perspective distortion from a single image using p...
 
Detection of crossover & bifurcation points on a retinal fundus image by anal...
Detection of crossover & bifurcation points on a retinal fundus image by anal...Detection of crossover & bifurcation points on a retinal fundus image by anal...
Detection of crossover & bifurcation points on a retinal fundus image by anal...
 
Detection of crossover & bifurcation points on a retinal fundus image by ...
Detection of crossover & bifurcation points on a retinal fundus image by ...Detection of crossover & bifurcation points on a retinal fundus image by ...
Detection of crossover & bifurcation points on a retinal fundus image by ...
 
Two marks with answers ME6501 CAD
Two marks with answers ME6501 CADTwo marks with answers ME6501 CAD
Two marks with answers ME6501 CAD
 
Basic image matching techniques, epipolar geometry and normalized image
Basic image matching techniques, epipolar geometry and normalized imageBasic image matching techniques, epipolar geometry and normalized image
Basic image matching techniques, epipolar geometry and normalized image
 
Geometric Modeling
Geometric Modeling Geometric Modeling
Geometric Modeling
 
Paper id 25201492
Paper id 25201492Paper id 25201492
Paper id 25201492
 
57892883 geometric-modeling
57892883 geometric-modeling57892883 geometric-modeling
57892883 geometric-modeling
 
Mesh final pzn_geo1004_2015_f3_2017
Mesh final pzn_geo1004_2015_f3_2017Mesh final pzn_geo1004_2015_f3_2017
Mesh final pzn_geo1004_2015_f3_2017
 
UNIT II GEOMETRIC MODELING (COMPUTER AIDED DESIGN AND MANUFACTURING )
UNIT II GEOMETRIC MODELING (COMPUTER AIDED DESIGN AND MANUFACTURING )UNIT II GEOMETRIC MODELING (COMPUTER AIDED DESIGN AND MANUFACTURING )
UNIT II GEOMETRIC MODELING (COMPUTER AIDED DESIGN AND MANUFACTURING )
 
CAD - UNIT 2 (Geometric Modelling)
CAD - UNIT 2 (Geometric Modelling)CAD - UNIT 2 (Geometric Modelling)
CAD - UNIT 2 (Geometric Modelling)
 
Unimodal Multi-Feature Fusion and one-dimensional Hidden Markov Models for Lo...
Unimodal Multi-Feature Fusion and one-dimensional Hidden Markov Models for Lo...Unimodal Multi-Feature Fusion and one-dimensional Hidden Markov Models for Lo...
Unimodal Multi-Feature Fusion and one-dimensional Hidden Markov Models for Lo...
 
Quadric surfaces
Quadric surfacesQuadric surfaces
Quadric surfaces
 

Similar to 3D Mesh Segmentation Using Local Geometry

Estimating the Crest Lines on Polygonal Mesh Models by an Automatic Threshold
Estimating the Crest Lines on Polygonal Mesh Models by an Automatic ThresholdEstimating the Crest Lines on Polygonal Mesh Models by an Automatic Threshold
Estimating the Crest Lines on Polygonal Mesh Models by an Automatic ThresholdAIRCC Publishing Corporation
 
ESTIMATING THE CREST LINES ON POLYGONAL MESH MODELS BY AN AUTOMATIC THRESHOLD
ESTIMATING THE CREST LINES ON POLYGONAL MESH MODELS BY AN AUTOMATIC THRESHOLDESTIMATING THE CREST LINES ON POLYGONAL MESH MODELS BY AN AUTOMATIC THRESHOLD
ESTIMATING THE CREST LINES ON POLYGONAL MESH MODELS BY AN AUTOMATIC THRESHOLDijcsit
 
Automated Medical image segmentation for detection of abnormal masses using W...
Automated Medical image segmentation for detection of abnormal masses using W...Automated Medical image segmentation for detection of abnormal masses using W...
Automated Medical image segmentation for detection of abnormal masses using W...IDES Editor
 
M ESH S IMPLIFICATION V IA A V OLUME C OST M EASURE
M ESH S IMPLIFICATION V IA A V OLUME C OST M EASUREM ESH S IMPLIFICATION V IA A V OLUME C OST M EASURE
M ESH S IMPLIFICATION V IA A V OLUME C OST M EASUREijcga
 
Image Blur Detection with 2D Haar Wavelet Transform and Its Effect on Skewed ...
Image Blur Detection with 2D Haar Wavelet Transform and Its Effect on Skewed ...Image Blur Detection with 2D Haar Wavelet Transform and Its Effect on Skewed ...
Image Blur Detection with 2D Haar Wavelet Transform and Its Effect on Skewed ...Vladimir Kulyukin
 
ROLE OF HYBRID LEVEL SET IN FETAL CONTOUR EXTRACTION
ROLE OF HYBRID LEVEL SET IN FETAL CONTOUR EXTRACTIONROLE OF HYBRID LEVEL SET IN FETAL CONTOUR EXTRACTION
ROLE OF HYBRID LEVEL SET IN FETAL CONTOUR EXTRACTIONsipij
 
International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)ijceronline
 
Invariant Recognition of Rectangular Biscuits with Fuzzy Moment Descriptors, ...
Invariant Recognition of Rectangular Biscuits with Fuzzy Moment Descriptors, ...Invariant Recognition of Rectangular Biscuits with Fuzzy Moment Descriptors, ...
Invariant Recognition of Rectangular Biscuits with Fuzzy Moment Descriptors, ...CSCJournals
 
GRAPH PARTITIONING FOR IMAGE SEGMENTATION USING ISOPERIMETRIC APPROACH: A REVIEW
GRAPH PARTITIONING FOR IMAGE SEGMENTATION USING ISOPERIMETRIC APPROACH: A REVIEWGRAPH PARTITIONING FOR IMAGE SEGMENTATION USING ISOPERIMETRIC APPROACH: A REVIEW
GRAPH PARTITIONING FOR IMAGE SEGMENTATION USING ISOPERIMETRIC APPROACH: A REVIEWDrm Kapoor
 
10.1007@978 3-319-29504-657
10.1007@978 3-319-29504-65710.1007@978 3-319-29504-657
10.1007@978 3-319-29504-657Manish Gupta
 
A novel predicate for active region merging in automatic image segmentation
A novel predicate for active region merging in automatic image segmentationA novel predicate for active region merging in automatic image segmentation
A novel predicate for active region merging in automatic image segmentationeSAT Publishing House
 
A novel predicate for active region merging in automatic image segmentation
A novel predicate for active region merging in automatic image segmentationA novel predicate for active region merging in automatic image segmentation
A novel predicate for active region merging in automatic image segmentationeSAT Journals
 
Unit II & III_uncovered topics.doc notes
Unit II & III_uncovered topics.doc notesUnit II & III_uncovered topics.doc notes
Unit II & III_uncovered topics.doc notessmithashetty24
 
An efficient image segmentation approach through enhanced watershed algorithm
An efficient image segmentation approach through enhanced watershed algorithmAn efficient image segmentation approach through enhanced watershed algorithm
An efficient image segmentation approach through enhanced watershed algorithmAlexander Decker
 
Computer Aided Design visual realism notes
Computer Aided Design visual realism notesComputer Aided Design visual realism notes
Computer Aided Design visual realism notesKushKumar293234
 
Linearity of Feature Extraction Techniques for Medical Images by using Scale ...
Linearity of Feature Extraction Techniques for Medical Images by using Scale ...Linearity of Feature Extraction Techniques for Medical Images by using Scale ...
Linearity of Feature Extraction Techniques for Medical Images by using Scale ...ijtsrd
 
ICVG : Practical Constructive Volume Geometry for Indirect Visualization
ICVG : Practical Constructive Volume Geometry for Indirect Visualization  ICVG : Practical Constructive Volume Geometry for Indirect Visualization
ICVG : Practical Constructive Volume Geometry for Indirect Visualization ijcga
 
ICVG: PRACTICAL CONSTRUCTIVE VOLUME GEOMETRY FOR INDIRECT VISUALIZATION
ICVG: PRACTICAL CONSTRUCTIVE VOLUME GEOMETRY FOR INDIRECT VISUALIZATIONICVG: PRACTICAL CONSTRUCTIVE VOLUME GEOMETRY FOR INDIRECT VISUALIZATION
ICVG: PRACTICAL CONSTRUCTIVE VOLUME GEOMETRY FOR INDIRECT VISUALIZATIONijcga
 
Performance of Efficient Closed-Form Solution to Comprehensive Frontier Exposure
Performance of Efficient Closed-Form Solution to Comprehensive Frontier ExposurePerformance of Efficient Closed-Form Solution to Comprehensive Frontier Exposure
Performance of Efficient Closed-Form Solution to Comprehensive Frontier Exposureiosrjce
 

Similar to 3D Mesh Segmentation Using Local Geometry (20)

Estimating the Crest Lines on Polygonal Mesh Models by an Automatic Threshold
Estimating the Crest Lines on Polygonal Mesh Models by an Automatic ThresholdEstimating the Crest Lines on Polygonal Mesh Models by an Automatic Threshold
Estimating the Crest Lines on Polygonal Mesh Models by an Automatic Threshold
 
ESTIMATING THE CREST LINES ON POLYGONAL MESH MODELS BY AN AUTOMATIC THRESHOLD
ESTIMATING THE CREST LINES ON POLYGONAL MESH MODELS BY AN AUTOMATIC THRESHOLDESTIMATING THE CREST LINES ON POLYGONAL MESH MODELS BY AN AUTOMATIC THRESHOLD
ESTIMATING THE CREST LINES ON POLYGONAL MESH MODELS BY AN AUTOMATIC THRESHOLD
 
Automated Medical image segmentation for detection of abnormal masses using W...
Automated Medical image segmentation for detection of abnormal masses using W...Automated Medical image segmentation for detection of abnormal masses using W...
Automated Medical image segmentation for detection of abnormal masses using W...
 
MI05-MI02-91
MI05-MI02-91MI05-MI02-91
MI05-MI02-91
 
M ESH S IMPLIFICATION V IA A V OLUME C OST M EASURE
M ESH S IMPLIFICATION V IA A V OLUME C OST M EASUREM ESH S IMPLIFICATION V IA A V OLUME C OST M EASURE
M ESH S IMPLIFICATION V IA A V OLUME C OST M EASURE
 
Image Blur Detection with 2D Haar Wavelet Transform and Its Effect on Skewed ...
Image Blur Detection with 2D Haar Wavelet Transform and Its Effect on Skewed ...Image Blur Detection with 2D Haar Wavelet Transform and Its Effect on Skewed ...
Image Blur Detection with 2D Haar Wavelet Transform and Its Effect on Skewed ...
 
ROLE OF HYBRID LEVEL SET IN FETAL CONTOUR EXTRACTION
ROLE OF HYBRID LEVEL SET IN FETAL CONTOUR EXTRACTIONROLE OF HYBRID LEVEL SET IN FETAL CONTOUR EXTRACTION
ROLE OF HYBRID LEVEL SET IN FETAL CONTOUR EXTRACTION
 
International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)
 
Invariant Recognition of Rectangular Biscuits with Fuzzy Moment Descriptors, ...
Invariant Recognition of Rectangular Biscuits with Fuzzy Moment Descriptors, ...Invariant Recognition of Rectangular Biscuits with Fuzzy Moment Descriptors, ...
Invariant Recognition of Rectangular Biscuits with Fuzzy Moment Descriptors, ...
 
GRAPH PARTITIONING FOR IMAGE SEGMENTATION USING ISOPERIMETRIC APPROACH: A REVIEW
GRAPH PARTITIONING FOR IMAGE SEGMENTATION USING ISOPERIMETRIC APPROACH: A REVIEWGRAPH PARTITIONING FOR IMAGE SEGMENTATION USING ISOPERIMETRIC APPROACH: A REVIEW
GRAPH PARTITIONING FOR IMAGE SEGMENTATION USING ISOPERIMETRIC APPROACH: A REVIEW
 
10.1007@978 3-319-29504-657
10.1007@978 3-319-29504-65710.1007@978 3-319-29504-657
10.1007@978 3-319-29504-657
 
A novel predicate for active region merging in automatic image segmentation
A novel predicate for active region merging in automatic image segmentationA novel predicate for active region merging in automatic image segmentation
A novel predicate for active region merging in automatic image segmentation
 
A novel predicate for active region merging in automatic image segmentation
A novel predicate for active region merging in automatic image segmentationA novel predicate for active region merging in automatic image segmentation
A novel predicate for active region merging in automatic image segmentation
 
Unit II & III_uncovered topics.doc notes
Unit II & III_uncovered topics.doc notesUnit II & III_uncovered topics.doc notes
Unit II & III_uncovered topics.doc notes
 
An efficient image segmentation approach through enhanced watershed algorithm
An efficient image segmentation approach through enhanced watershed algorithmAn efficient image segmentation approach through enhanced watershed algorithm
An efficient image segmentation approach through enhanced watershed algorithm
 
Computer Aided Design visual realism notes
Computer Aided Design visual realism notesComputer Aided Design visual realism notes
Computer Aided Design visual realism notes
 
Linearity of Feature Extraction Techniques for Medical Images by using Scale ...
Linearity of Feature Extraction Techniques for Medical Images by using Scale ...Linearity of Feature Extraction Techniques for Medical Images by using Scale ...
Linearity of Feature Extraction Techniques for Medical Images by using Scale ...
 
ICVG : Practical Constructive Volume Geometry for Indirect Visualization
ICVG : Practical Constructive Volume Geometry for Indirect Visualization  ICVG : Practical Constructive Volume Geometry for Indirect Visualization
ICVG : Practical Constructive Volume Geometry for Indirect Visualization
 
ICVG: PRACTICAL CONSTRUCTIVE VOLUME GEOMETRY FOR INDIRECT VISUALIZATION
ICVG: PRACTICAL CONSTRUCTIVE VOLUME GEOMETRY FOR INDIRECT VISUALIZATIONICVG: PRACTICAL CONSTRUCTIVE VOLUME GEOMETRY FOR INDIRECT VISUALIZATION
ICVG: PRACTICAL CONSTRUCTIVE VOLUME GEOMETRY FOR INDIRECT VISUALIZATION
 
Performance of Efficient Closed-Form Solution to Comprehensive Frontier Exposure
Performance of Efficient Closed-Form Solution to Comprehensive Frontier ExposurePerformance of Efficient Closed-Form Solution to Comprehensive Frontier Exposure
Performance of Efficient Closed-Form Solution to Comprehensive Frontier Exposure
 

Recently uploaded

HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSRajkumarAkumalla
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEslot gacor bisa pakai pulsa
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSCAESB
 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZTE
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineeringmalavadedarshan25
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...RajaP95
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLDeelipZope
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).pptssuser5c9d4b1
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝soniya singh
 

Recently uploaded (20)

HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentation
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineering
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCL
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
 

3D Mesh Segmentation Using Local Geometry

  • 1. International Journal of Computer Graphics & Animation (IJCGA) Vol.5, No.2, April 2015 DOI : 10.5121/ijcga.2015.5204 37 3D MESH SEGMENTATION USING LOCAL GEOMETRY Sumanta Guha Computer Science & Information Management Program, Asian Institute of Technology, Thailand. ABSTRACT. We develop an algorithm to segment a 3D surface mesh intovisually meaningful regions based on analyzing the local geometry ofvertices. We begin with a novel characterization of mesh vertices as convex,concave or hyperbolic depending upon their discrete local geometry.Hyperbolic and concave vertices are considered potential feature regionboundaries. We propose a new region growing technique starting fromthese boundary vertices leading to a segmentation of the surface thatis subsequently simplified by a region-merging method. Experiments indicatethat our algorithm segments a broad range of 3D models at aquality comparable to existing algorithms. Its use of methods that belongnaturally to discretized surfaces and ease of implementation makeit an appealing alternative in various applications. KEYWORDS: Feature extraction, hyperbolic vertex, local geometry, meshsegmentation, region growing, region merging 1 INTRODUCTION Polygonal meshes are the dominant mode of representing surfaces in computer graphics. They are geometrically simple and intuitive, and lend themselves to efficient algorithms and data structures. However, other than vertex-edge-face adjacency data, a polygonal mesh does not intrinsically possess any high-level semantic structure. For example, there is no information as such in the mesh data of the hand in Figure 1 that distinguishes the five fingers. However, such segmentation of an object into perceptually meaningful regions is important in applications such as shape recognition [22], morphing [8], texturing [11] and collision detection [12], amongst others. The goal of surface mesh segmentation then is to decompose the input mesh into smaller regions which are perceptually significant. Nevertheless, as Atteneet al [1] point out it is not possible to define exactly what constitutes perceptual significance. Not only does this lie “in the eyes of the beholder” it may vary from application to application. The viewer’s world knowledge is critical to segmentation as well – in a model that a layman would segment only into heart and lung and tissue, an oncologist may distinguish cancerous tumors and benign growths as well.
  • 2. International Journal of Computer Graphics & Animation (IJCGA) Vol.5, No.2, April 2015 38 Fig. 1. Hand model. Our contribution is a novel approach to mesh segmentation that first separates vertices based on their local geometry. In particular, we distinguish between convex, concave and hyperbolic vertices by examining their geometric neighbor- hoods as a discrete structure. This characterization, which seems to be new in CG applications, is not derived from the well-known method of differentiating between hyperbolic, parabolic and elliptic points on a smooth surface using Gaussian curvature, though the two are not unrelated. Following the characterization of vertices, we estimate the potential (meaningful) region boundaries to be along the concave and hyperbolic vertices. Regions are subsequently grown from the boundary vertices by a novel modification of the watershed segmentation scheme. A final region merging step bounds the number of segments. The rest of the paper is organized as follows. Section 2 briefly reviews existing algorithms that are relevant to ours. In Section 3 we discuss the background theory and our segmentation method. Section 4 shows experimental results on various 3D models and Section 5 concludes the paper. 2 RELATED WORKS An approach to segmentation that splits the surface into coherent nearly-flat patches based, typically, on a curvature analysis is called patch-type segmentation [7, 5, 19, 22]. See Figure 2. Patch-type segmentation is used in applications that are sensitive to geometric properties such as planarity and convexity. These include texture mapping, re-meshing and simplification [18].
  • 3. International Journal of Computer Graphics & Animation (IJCGA) Vol.5, No.2, April 2015 39 Fig. 2. Patch-type (left) and part-type (right) segmentation taken from [18]. Part-type segmentation, on the other hand, seeks to sub-divide the input mesh into sub-meshes that match human perception. Algorithms of this type can assist applications such as shape retrieval, shape recognition, collision detection and object manipulation. Rom and Medioni [16] in 1994 proposed a framework to decompose 3D objects into parts using the curvature properties of parabolic curves. Though they initiate the use of curvature in segmentation their approach cannot directly process triangle meshes. Sacchi et al [17] and Mangan and Whitaker [14] propose approaches to seg- mentation using curvature that can apply to a mesh object. They use total curvature as the key to segmenting parts from an input mesh. However, their segmentation of large models often fails to match viewer perception. Page et al [15] in 2003 introduced a method called Fast Marching Water- sheds that splits a triangle mesh into segments that fit the definition of visual parts according to the minima rule proposed by Hoffman and Richards [9]. The minima rule is an elegant theory from computer vision which propounds that human perception decomposes a 3D object into visual constituents at contours of negative Gaussian curvature – bands of hyperbolic points in other words.Some recent segmentation methods incorporate semantics derived, typically, from knowledge embodied in a training set: Kalogerakis et al [10] and Lv et al [13] simultaneously segment and label parts of a 3D mesh. Zhang et al [21] proposed a segmentation algorithm that estimates the Gaussian curvature at a vertex, identifies the hyperbolic vertices as potential region.boundaries, applies the watershed technique to grow regions, and completes finally with a curvature-driven region merging phase. Recently, Chen and Geor-ganas [3] improved the algorithm of Zhang et al. [21] by extending the boundary detection step to additionally identify concave vertices and prevent them from breaking segment integrity. Our segmentation algorithm is inspired by that of Chen and Georganas. How- ever, we do not invoke Gaussian curvature. Instead, we apply our new classification scheme to distinguish concave and hyperbolic vertices, which subsequently serve as region boundaries. Our region growing algorithm is a modification of the watershed technique that seems to better allow growth into intuitively separate parts. 3 THEORY AND ALGORITHM 3.1 Vertex classification To simplify the theoretical development we assume that the input mesh is a topologically closed surface, implying that it has a meaningful interior. This as- sumption is not essential, however, and our code works for non-closed meshes as well. We assume that mesh faces are all triangular. We begin with a characterization of vertices as convex, concave or hyperbolic. Definition 1. A vertex V of a mesh M is hyperbolic if it is contained in the interior (as a subspace of R3) of the convex hull C of its neighbors. A vertex V that is not hyperbolic is convex if there
  • 4. International Journal of Computer Graphics & Animation (IJCGA) Vol.5, No.2, April 2015 40 exists a (flat) disc D centered at V which does not intersect the interior of M; otherwise, it is concave. For example, the convex hull of the neighbors of V in Figure 3(a) is the triangle W1W2W3, which has empty interior in R3. Therefore, V is trivially non- hyperbolic; moreover, the disc D proves that V is convex. The vertex V on the saddle-shaped surface in Figure 3(b) is hyperbolic. The reader may check in Figure 3(c) that all the vertices on the L-shaped solid are non- hyperbolic, and that only vertex V is concave, while all the rest are convex. The disc D at a corner of the L-shaped solid indicates the reason why we cannot replace the disc in the definition of convexity with its containing plane – a plane may intersect the mesh at a distant point. Our characterization of a mesh vertex is not unrelated to that of a point of a smooth surface as hyperbolic, parabolic or elliptic by means of Gaussian curvature, but we’ll not explore the connection here. It should be observed though Fig. 3. Illustrations of convex, hyperbolic and concave vertices. that our use of the discrete local geometry to classify vertices seems more natural for a meshed surface than computing pseudo-curvature values, as some authors do, on a smooth approximation. Whether a vertex V is hyperbolic or not is a local decision depending on its disposition with respect to its neighbors. However, distinguishing a non- hyperbolic vertex V as either convex or concave necessitates one to determine the side of the surface near V that the interior of M lies, which requires global knowledge of M. 3.2 Region Growing Our strategy to find features is to first presume hyperbolic and concave vertices as potential feature region boundaries. The motivation is simple. A surface whose vertices are all convex, e.g., the box of Figure 3(a), is likely featureless. On the other hand, the two legs of the L-surface of Figure 3(c) appear to be features that are separated by the edge at the crook between them – all vertices in the interior of this edge being concave. Vertices along the circular region where the stem meets the cap of the mushroom of Figure 4 appear to be hyperbolic.
  • 5. International Journal of Computer Graphics & Animation (IJCGA) Vol.5, No.2, April 2015 41 The next stage in our strategy is, therefore, to treat the hyperbolic and concave vertices as”seeds”, from which to grow the feature regions. In particular, we shall grow the regions in a scattershot manner as the local geometry at a seed Fig. 4. Mushroom model. does not in general suggest a best direction. The plan is as follows. Seeds are initially all labeled differently. They are next processed iteratively to label their neighbors. Vertices adjacent to each seed, which have not already been labeled, are given new and different labels. In the following rounds vertices already labeled are processed iteratively to propagate their labels in a breadth-first manner. For example, say the labels after the first round of the vertices w1,w2, . . . ,wk, adjacent to a seed v are l1, l2, . . . , lk, respectively. Then, vertices adjacent to w1, that have not already been labeled, are labeled l1; then, those adjacent to w2, that have not already been labeled, are labeled l2; and so on. Figure 5 illustrates the idea. The process of growing feature regions in this manner from each seed is repeated iteratively until all the vertices of the mesh have been labeled. Our region growing method, though inspired by the watershed technique, is different in that the latter labels regions with the names of the seeds themselves, while our method adds one layer of growth in every possible direction. This idea suggested itself from experimentation with various models and seems to actually work better than the straight watershed scheme in practice. 3.3 Region Merging Vertices having like labels form a feature region, but there is likely great over-segmentation at this point, so we begin a third stage of region merging. In thisfinal stage, the feature region with the smallest number of vertices is iterativelymerged with a neighboring region. We choose the neighboring region to mergewith as the one – borrowing a heuristic from Chen and Georganas [3] – that
  • 6. International Journal of Computer Graphics & Animation (IJCGA) Vol.5, No.2, April 2015 42 Fig. 5. Region growing. shares the longest border with the candidate for merging. Figure 6 shows the idea. Region merging continues until a preset threshold is reached in the number of segments. Fig. 6. Region merging. 3.4 Complexity It is still fairly straightforward to see that the complexity of our segmentation procedure is linear in the size of the mesh, because: (a) the classification of vertices as convex/concave/hyperbolic requires examination only of each vertex’s link, and, moreover, each edge of a surface mesh can appear in the link of at most two vertices, for a total cost linear in the number of edges; (b) region growing is a breadth-first procedure requiring time linear in the number of vertices; (c) region merging costs O(1) at most per vertex for a total linear cost as well. 4 EXPERIMENTAL RESULTS We have implemented our segmentation algorithm, coding it in C++ with the STL on an Intel platform with 2Ghz CPU and 1GB RAM. We used several pre- packaged routines from the CGAL library [2], the Qt toolkit [20] to build the GUI, and the libQGLViewer [6] as a rendering engine. Figures 7-11 show experimental results on fairly large meshes. The quality of the output compares well with that of existing methods. 5 CONCLUSIONS AND FUTURE WORK We have proposed a novel algorithm for segmenting meshed surfaces into smaller visually meaningful parts. We apply a discrete and local characterization, itself new, of vertices intohyperbolic, convex and concave, to find region boundaries.This method seems a more natural fit for a mesh structure than the popu-lar Gaussian curvature estimation method, the latter being a transplant fromsmooth surfaces. Our method of region growing is a novel modification as wellof the watershed method.
  • 7. International Journal of Computer Graphics & Animation (IJCGA) Vol.5, No.2, April 2015 43 There are specific improvements that might be made. For example, the re-gion growing method is not robust and is sensitive to the initial labeling of theboundary vertices. A way to address this problem may be to “invert” the la-beling procedure so that it starts from the non-boundary vertices, each suchfinding a nearest (according to an appropriate distance metric) boundary ver- tex and adopting the latter’s label. Additionally, it would be useful to be ableto replace the user- set threshold for the number of regions at which the merg-ing process stops with automatictermination based upon some measure of thequality of the current segmentation. Another important direction for future work is to extend the algorithm toprocess point cloud data, where there is no connectivity information. ACKNOWLEDGEMENTS We would like to thank Chansophea Chuon for helping develop our software andcollaborating on preliminary results announced in Chuon and Guha [4]. We aregrateful to the AIM@SHAPE Project for the mesh models that we used. Wethank Nguyen Tan Khoa for initial contributions. REFERENCES [1] M. Attene, S. Katz, M. Mortara, G. Patane, M. Spagnuolo, and A. Tal. Meshsegmentation - a comparative study. In SMI ’06: Proceedings of the IEEE Inter-national Conference on Shape Modeling and Applications 2006 (SMI’06), page 7,Washington, DC, USA, 2006. IEEE Computer Society. [2] http://www.cgal.org/. [3] L. Chen and N. D. Georganas. An efficient and robust algorithm for 3d meshsegmentation. Springer Science + Business Media, LLC, 2006. [4] C. Chuon and S. Guha. Surface mesh segmentation using local geometry. In Pro-ceedings of the 6th International Conference on Computer Graphics, Imaging andVisualization (CGIV ’09), pages 250– 254, Tianjin, China, 2009. IEEE ComputerSociety. [5] D. Cohen-Steiner, P. Alliez, and M. Desbrun. Variational shape approximation. InSIGGRAPH ’04: ACM SIGGRAPH 2004 Papers, pages 905–914, New York, NY,USA, 2004. ACM Press. [6] G. Debunnes. http://artis.imag.fr/ËśGilles.Debunne/QGLViewer/. [7] M. Eck, T. DeRose, T. Duchamp, H. Hoppe, M. Lounsbery, and W. Stuetzle.Multiresolution analysis of arbitrary meshes. In SIGGRAPH ’95: Proceedings ofthe 22nd annual conference on Computer graphics and interactive techniques, pages173–182, New York, NY, USA, 1995. ACM Press. [8] A. D. Gregory, A. State, M. C. Lin, D. Manocha, and M. A. Livingston. Interactivesurface decomposition for polyhedral morphing. The Visual Computer, 15(9):453–470, 1999. [9] D. D. Hoffman and W. Richards. Parts of recognition. Technical Report AIM-732,Massachusetts Institute of Technology - Artificial Intelligence Laboratory, 1983. [10] E. Kalogerakis, A. Hertzmann, and K. Singh. Learning 3d mesh segmentation andlabeling. In ACM Transactions on Graphics - Proceedings of ACM SIGGRAPH2010. ACM, 2010. [11] B. Levy, S. Petitjean, N. Ray, and J. Maillot. Least squares conformal maps forautomatic texture atlas generation. ACM Trans. Graph., 21(3):362–371, 2002. [12] X. Li, T. W. Toon, and Z. Huang. Decomposing polygon meshes for interactive applications. In I3D ’01: Proceedings of the 2001 symposium on Interactive 3D graphics, pages 35–42, New York, NY, USA, 2001. ACM Press. [13] J. Lv, X. Chen, J. Huang, and H. Bao. Semi-supervised mesh segmentation andlabeling. In Computer Graphics Forum - Proceedings of Pacific Graphics 2012,pages 2241–2246. ACM, 2012.
  • 8. International Journal of Computer Graphics & Animation (IJCGA) Vol.5, No.2, April 2015 44 [14] A. P. Mangan and R. T. Whitaker. Partitioning 3d surface meshes using watershed segmentation. IEEE Transactions on Visualization and Computer Graphics, 5(4):308–321, 1999. [15] D. L. Page, A. F. Koschan, and M. A. Abidi. Perception-based 3d triangle meshsegmentation using fast marching perception-based 3d triangle mesh segmentationusing fast marching watersheds. Proceedings of International Conference onComputer Vision and Pattern Recognition, II:27–32, June 2003. [16] H. Rom and G. Medioni. Part decomposition and description of 3d shapes. InPattern Recognition, pages 629–632, 1994. [17] R. Sacchi, J. F. Poliakoff, P. D. Thomas, and K. H. Hafele. Curvature estimationfor segmentation of triangulated surfaces. In Digital Imageing and Modeling, pages536–543, 1999. [18] A. Shamir. A formulation of boundary mesh segmentation. In 3DPVT ’04: Pro-ceedings of the 3D Data Processing, Visualization, and Transmission, 2nd Inter-national Symposium on (3DPVT’04), pages 82–89, Washington, DC, USA, 2004.IEEE Computer Society. [19] A. Sheffer. Model simplification for meshing using face clustering. In ComputerAided Desgin, pages 925–934, 2001. [20] TrollTech. Qt 4.2.2 community version http://www.trolltech.com. [21] Y. Zhang, J. Paik, A. Koschan, M. A. Abidi, and D. Gorsich. A simple and efficientalgorithm for part decomposition of 3-d triangulated models based on curvature analysis. IEEE ICIP, 2002. [22] E. Zuckerberger, A. Tal, and S. Shlafman. Polyhedral surface decomposition withapplications. In Computer & Graphics, pages 733 – 743, 2002. Fig. 7. Mushroom model (240 triangles) segmented to 2 regions. Fig. 8. Goblet model (510 triangles) segmented to 4 regions.
  • 9. International Journal of Computer Graphics & Animation (IJCGA) Vol.5, No.2, April 2015 45 Fig. 9. Elk model (10K triangles) segmented to 7 regions. Fig. 10. Hand model (50K triangles) segmented to 8 regions. Fig. 11. Octopus model (34K triangles) segmented to 15 regions.