Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
ogs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Özgür Ozan Sen
ogs
Commits
493f979a
Commit
493f979a
authored
8 years ago
by
Dmitri Naumov
Browse files
Options
Downloads
Patches
Plain Diff
[MeL] Add missing parameter documentation.
parent
df54b9c8
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
MeshLib/MeshGenerators/RasterToMesh.h
+22
-7
22 additions, 7 deletions
MeshLib/MeshGenerators/RasterToMesh.h
with
22 additions
and
7 deletions
MeshLib/MeshGenerators/RasterToMesh.h
+
22
−
7
View file @
493f979a
...
...
@@ -35,9 +35,13 @@ class RasterToMesh
{
public:
/**
* Converts greyscale raster into a mesh
* \param elem_type defines if elements of the new mesh should be triangles or quads (or hexes for 3D)
* \param intensity_type defines how image intensities are interpreted
* Converts greyscale raster into a mesh.
* \param raster input raster.
* \param elem_type defines if elements of the new mesh should be
* triangles or quads (or hexes for 3D).
* \param intensity_type defines how image intensities are interpreted.
* \param array_name mesh property name, defaults to "Colour" if not
* given.
*/
static
MeshLib
::
Mesh
*
convert
(
GeoLib
::
Raster
const
&
raster
,
MeshElemType
elem_type
,
...
...
@@ -46,8 +50,14 @@ public:
/**
* Converts a vtkImageData into a mesh.
* \param elem_type defines if elements of the new mesh should be triangles or quads (or hexes for 3D)
* \param intensity_type defines how image intensities are interpreted
* \param img input image.
* \param origin coordinates of image's origin, lower left corner.
* \param scalingFactor edge length of each pixel
* \param elem_type defines if elements of the new mesh should be
* triangles or quads (or hexes for 3D).
* \param intensity_type defines how image intensities are interpreted.
* \param array_name mesh property name, defaults to "Colour" if not
* given.
*/
static
MeshLib
::
Mesh
*
convert
(
vtkImageData
*
img
,
const
double
origin
[
3
],
...
...
@@ -58,8 +68,13 @@ public:
/**
* Converts double array with raster values into a mesh.
* \param elem_type defines if elements of the new mesh should be triangles or quads (or hexes for 3D)
* \param intensity_type defines how image intensities are interpreted
* \param img input image.
* \param header raster header information.
* \param elem_type defines if elements of the new mesh should be
* triangles or quads (or hexes for 3D).
* \param intensity_type defines how image intensities are interpreted.
* \param array_name mesh property name, defaults to "Colour" if not
* given.
*/
static
MeshLib
::
Mesh
*
convert
(
const
double
*
img
,
GeoLib
::
RasterHeader
const
&
header
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment