Skip to content

Commit

Permalink
ENH: Add 4D support to wasm
Browse files Browse the repository at this point in the history
  • Loading branch information
thewtex committed Apr 16, 2024
1 parent d4df8ff commit 1f5f597
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wasm/morphological-contour-interpolation.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -121,5 +121,5 @@ main( int argc, char* argv[] )
{
itk::wasm::Pipeline pipeline( "morphological-contour-interpolation", "Interpolates contours between slices.", argc, argv );

return itk::wasm::SupportInputImageTypes< PipelineFunctor, uint8_t, int8_t, uint16_t, int16_t, uint32_t, int32_t, uint64_t, int64_t >::Dimensions< 3U >( "input-image", pipeline );
return itk::wasm::SupportInputImageTypes< PipelineFunctor, uint8_t, int8_t, uint16_t, int16_t, uint32_t, int32_t, uint64_t, int64_t >::Dimensions< 3U, 4U >( "input-image", pipeline );
}

0 comments on commit 1f5f597

Please sign in to comment.