Skip to content

Commit

Permalink
Merge pull request ANTsX#245 from ignatenkobrain/sa_rename
Browse files Browse the repository at this point in the history
rename 'sa' to 'adaBoostSegmentationRefinement'
  • Loading branch information
stnava committed Nov 2, 2015
2 parents 8eeb6de + 3003e1c commit df095dd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions ExternalApplications/MALF/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ project(PICSL_MALF)
include_directories(${CMAKE_CURRENT_BINARY_DIR})

add_executable(jointfusion ./JointFusion/LabelFusion.cxx)
add_executable(sa ./CorrectiveLearning/segAdapter.cxx)
add_executable(adaBoostSegmentationRefinement ./CorrectiveLearning/segAdapter.cxx)
add_executable(bl ./CorrectiveLearning/BiasLearn.cxx)

target_link_libraries(jointfusion antsUtilities ${ITK_LIBRARIES} )
target_link_libraries(sa ${ITK_LIBRARIES} )
target_link_libraries(adaBoostSegmentationRefinement ${ITK_LIBRARIES} )
target_link_libraries(bl ${ITK_LIBRARIES} )


install(TARGETS jointfusion sa bl
install(TARGETS jointfusion adaBoostSegmentationRefinement bl
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib)
6 changes: 3 additions & 3 deletions ExternalApplications/MALF/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ make
to complie and build the executable files. Our program uses ITK's I/O functions to handle image input
and output. Hence, it requries prebuilt ITK. The following three executable files will be built,

jointfusion : joint label fusion
bl : learning classifiers for correcting systematic errors
sa : apply the learned classifiers to correct systematic segmentation errors on testing images
jointfusion : joint label fusion
bl : learning classifiers for correcting systematic errors
adaBoostSegmentationRefinement : apply the learned classifiers to correct systematic segmentation errors on testing images

Type each command to see details on how to use them.

Expand Down

0 comments on commit df095dd

Please sign in to comment.