We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After npm run test with this pipeline: https://github.com/PaulHax/itk-wasm-vector-image-example
npm run test
the attached output image has only 1 component. I expected 2 after the ComposeImageFilter.
Could be doing something silly in the VectorImageTest.cxx file.
The text was updated successfully, but these errors were encountered:
If I change this line in the example: https://github.com/PaulHax/itk-wasm-vector-image-example/blob/a8d2c9626d2c1eb225b7b5510f90ee9fe165b0db/VectorImageTest.cxx#L49
From using PipelineOutputType = typename itk::VectorImage<typename ImageType::PixelType, ImageType::ImageDimension>;
using PipelineOutputType = typename itk::VectorImage<typename ImageType::PixelType, ImageType::ImageDimension>;
To using PipelineOutputType = itk::Image<itk::Vector<uint8_t, 2>, ImageType::ImageDimension>;
using PipelineOutputType = itk::Image<itk::Vector<uint8_t, 2>, ImageType::ImageDimension>;
Output image has 2 components! 🎉
Sorry, something went wrong.
No branches or pull requests
After
npm run test
with this pipeline:https://github.com/PaulHax/itk-wasm-vector-image-example
the attached output image has only 1 component. I expected 2 after the ComposeImageFilter.
Could be doing something silly in the VectorImageTest.cxx file.
The text was updated successfully, but these errors were encountered: