File tree Expand file tree Collapse file tree 7 files changed +10
-11
lines changed
src/Filtering/ImageIntensity Expand file tree Collapse file tree 7 files changed +10
-11
lines changed Original file line number Diff line number Diff line change 1
- add_example ( RescaleAnImage )
2
- compare_to_baseline ( EXAMPLE_NAME RescaleAnImage BASELINE_PREFIX OutputBaseline )
1
+ add_example ( RescaleIntensity )
2
+ compare_to_baseline ( EXAMPLE_NAME RescaleIntensity BASELINE_PREFIX OutputBaseline )
3
3
4
4
add_example ( ApplySinImageFilter )
5
5
compare_to_baseline ( EXAMPLE_NAME ApplySinImageFilter BASELINE_PREFIX OutputBaseline OPTIONS --tolerance-intensity 1.0e-6 )
@@ -123,4 +123,3 @@ compare_to_baseline(EXAMPLE_NAME SubtractTwoImages
123
123
)
124
124
125
125
endif ()
126
-
Original file line number Diff line number Diff line change 1
1
cmake_minimum_required (VERSION 3.10.2 )
2
2
3
- project ( RescaleAnImage )
3
+ project ( RescaleIntensity )
4
4
5
5
find_package ( ITK REQUIRED )
6
6
include ( ${ITK_USE_FILE} )
7
7
8
- add_executable ( RescaleAnImage Code.cxx )
9
- target_link_libraries ( RescaleAnImage ${ITK_LIBRARIES} )
8
+ add_executable ( RescaleIntensity Code.cxx )
9
+ target_link_libraries ( RescaleIntensity ${ITK_LIBRARIES} )
10
10
11
- install ( TARGETS RescaleAnImage
11
+ install ( TARGETS RescaleIntensity
12
12
DESTINATION bin/ITKSphinxExamples/Filtering/ImageIntensity
13
13
COMPONENT Runtime
14
14
)
15
15
16
16
install ( FILES Code.cxx CMakeLists.txt
17
- DESTINATION share/ITKSphinxExamples/Code/Filtering/ImageIntensity/RescaleAnImage
17
+ DESTINATION share/ITKSphinxExamples/Code/Filtering/ImageIntensity/RescaleIntensity
18
18
COMPONENT Code
19
19
)
20
20
21
21
enable_testing ()
22
- add_test ( NAME RescaleAnImageTest
23
- COMMAND ${CMAKE_RUNTIME_OUTPUT_DIRECTORY} /RescaleAnImage
22
+ add_test ( NAME RescaleIntensityTest
23
+ COMMAND ${CMAKE_RUNTIME_OUTPUT_DIRECTORY} /RescaleIntensity
24
24
${CMAKE_CURRENT_BINARY_DIR} /Gourds.png
25
25
Output .png
26
26
0
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ ImageIntensity
30
30
MultiplyTwoImages/Documentation.rst
31
31
NormalizeImage/Documentation.rst
32
32
PixelDivisionOfTwoImages/Documentation.rst
33
- RescaleAnImage /Documentation.rst
33
+ RescaleIntensity /Documentation.rst
34
34
ScalePixelSumToConstant/Documentation.rst
35
35
SquareEveryPixel/Documentation.rst
36
36
SubtractConstantFromEveryPixel/Documentation.rst
You can’t perform that action at this time.
0 commit comments