Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
otb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Antoine Belvire
otb
Commits
fb8a803a
"README.md" did not exist on "2b1b06452664ff75fd2448a3ae40fcb3c0038d39"
Commit
fb8a803a
authored
16 years ago
by
Emmanuel Christophe
Browse files
Options
Downloads
Patches
Plain Diff
ENH: Adding lidar to image example
parent
435b93cd
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Examples/IO/CMakeLists.txt
+5
-0
5 additions, 0 deletions
Examples/IO/CMakeLists.txt
Examples/IO/LidarToImageExample.cxx
+131
-0
131 additions, 0 deletions
Examples/IO/LidarToImageExample.cxx
with
136 additions
and
0 deletions
Examples/IO/CMakeLists.txt
+
5
−
0
View file @
fb8a803a
...
...
@@ -61,6 +61,11 @@ TARGET_LINK_LIBRARIES(DEMToImageGenerator OTBProjections OTBIO OTBCommon ITKComm
ADD_EXECUTABLE
(
DEMToOrthoImageGenerator DEMToOrthoImageGenerator.cxx
)
TARGET_LINK_LIBRARIES
(
DEMToOrthoImageGenerator OTBProjections OTBIO OTBCommon ITKCommon ITKIO otbossim
)
IF
(
ITK_USE_REVIEW
)
ADD_EXECUTABLE
(
LidarToImageExample LidarToImageExample.cxx
)
TARGET_LINK_LIBRARIES
(
LidarToImageExample OTBIO OTBCommon ITKCommon ITKIO otbossim
)
ENDIF
(
ITK_USE_REVIEW
)
#ADD_EXECUTABLE(ImageReadExportVTK ImageReadExportVTK.cxx )
#TARGET_LINK_LIBRARIES(ImageReadExportVTK ITKCommon ITKIO)
...
...
This diff is collapsed.
Click to expand it.
Examples/IO/LidarToImageExample.cxx
0 → 100644
+
131
−
0
View file @
fb8a803a
/*=========================================================================
Program: ORFEO Toolbox
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Centre National d'Etudes Spatiales. All rights reserved.
See OTBCopyright.txt for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#if defined(_MSC_VER)
#pragma warning ( disable : 4786 )
#endif
#include
"itkPointSet.h"
#include
"otbImage.h"
#include
"otbPointSetFileReader.h"
#include
"itkBSplineScatteredDataPointSetToImageFilter.h"
#include
"otbImageFileWriter.h"
// 1 5 12
int
main
(
int
argc
,
char
*
argv
[]
)
{
if
(
argc
!=
3
)
{
std
::
cout
<<
argv
[
0
]
<<
" <input_lidar_filename> <output_image_filename>"
<<
" <output_resolution> <upper_left_corner_latitude>"
<<
" <size_x> <sizee_y> <number_of_stream_divisions>"
<<
std
::
endl
;
return
EXIT_FAILURE
;
}
typedef
double
RealType
;
typedef
itk
::
Vector
<
RealType
,
1
>
VectorType
;
typedef
itk
::
PointSet
<
VectorType
,
2
>
PointSetType
;
typedef
otb
::
PointSetFileReader
<
PointSetType
>
PointSetFileReaderType
;
PointSetFileReaderType
::
Pointer
reader
=
PointSetFileReaderType
::
New
();
reader
->
SetFileName
(
argv
[
1
]);
reader
->
Update
();
typedef
double
PixelType
;
typedef
otb
::
Image
<
PixelType
,
2
>
ImageType
;
typedef
itk
::
Image
<
VectorType
,
2
>
VectorImageType
;
double
resolution
=
atof
(
argv
[
3
]);
int
splineOrder
=
atoi
(
argv
[
4
]);
int
level
=
atoi
(
argv
[
5
]);
ImageType
::
IndexType
start
;
start
[
0
]
=
0
;
start
[
1
]
=
0
;
ImageType
::
SizeType
size
;
size
[
0
]
=
static_cast
<
long
int
>
(
ceil
((
reader
->
GetMaxX
()
-
reader
->
GetMinX
()
+
1
)
/
resolution
));
size
[
1
]
=
static_cast
<
long
int
>
(
ceil
((
reader
->
GetMaxY
()
-
reader
->
GetMinY
()
+
1
)
/
resolution
));
ImageType
::
PointType
origin
;
origin
[
0
]
=
0
;
//minX;
origin
[
1
]
=
0
;
//maxY;
ImageType
::
SpacingType
spacing
;
spacing
[
0
]
=
resolution
;
spacing
[
1
]
=
-
resolution
;
typedef
itk
::
BSplineScatteredDataPointSetToImageFilter
<
PointSetType
,
VectorImageType
>
FilterType
;
FilterType
::
Pointer
filter
=
FilterType
::
New
();
filter
->
SetSplineOrder
(
splineOrder
);
FilterType
::
ArrayType
ncps
;
ncps
.
Fill
(
6
);
filter
->
SetNumberOfControlPoints
(
ncps
);
filter
->
SetNumberOfLevels
(
level
);
// Define the parametric domain.
filter
->
SetOrigin
(
origin
);
filter
->
SetSpacing
(
spacing
);
filter
->
SetSize
(
size
);
filter
->
SetInput
(
reader
->
GetOutput
()
);
filter
->
Update
();
// Write the output to an image.
typedef
otb
::
Image
<
RealType
,
2
>
RealImageType
;
RealImageType
::
Pointer
image
=
RealImageType
::
New
();
ImageType
::
RegionType
region
;
region
.
SetSize
(
size
);
region
.
SetIndex
(
start
);
image
->
SetRegions
(
region
);
image
->
Allocate
();
itk
::
ImageRegionIteratorWithIndex
<
RealImageType
>
Itt
(
image
,
image
->
GetLargestPossibleRegion
()
);
for
(
Itt
.
GoToBegin
();
!
Itt
.
IsAtEnd
();
++
Itt
)
{
Itt
.
Set
(
filter
->
GetOutput
()
->
GetPixel
(
Itt
.
GetIndex
()
)[
0
]
);
}
typedef
otb
::
ImageFileWriter
<
ImageType
>
WriterType
;
WriterType
::
Pointer
writer
=
WriterType
::
New
();
writer
->
SetInput
(
image
);
writer
->
SetFileName
(
argv
[
2
]
);
writer
->
Update
();
return
EXIT_SUCCESS
;
}
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