Skip to content
New issue

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

Inconsistency between ITKImageProcessing vector images and DREAM3D vector images #141

Open
fbudin69500 opened this issue Jan 31, 2017 · 0 comments

Comments

@fbudin69500
Copy link
Collaborator

fbudin69500 commented Jan 31, 2017

ITKImageProcessing encodes RGB(A) and vector images in Dream3D data container differently whereas DREAM3D encodes them the same way.

In DREAM3D,
RGB(A) and vector images: QVector<size_t> cDims(1, nb_components);

In ITKImageProcessing:
Vector images components: QVector<size_t> cDims(nb_components, 1);
RGB images: QVector<size_t> cDims(1, 3);

ITKImageProcessing uses this implementation difference to differentiate between RGB(A) images and vector images. A solution for ITKImageProcessing to differentiate between RGB(A) and vector images could be with additional input from the user (check box). This additional input would be selected at the filter level.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant