Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~130 People Reached
Favorite Forums
Favorite Tags
c++ x 2
Member Avatar for richyvr

I am new to templates and trying to implement Templates for creating ITK images: template <class T,int D> itk::Image< T, D>:: Pointer CreateITKImage(int *pnSize, double *pdSpacing = NULL) { typedef itk::Image< T, D> ImageType; ImageType:: Pointer image = ImageType::New(); : : return image; } void main() { int Size[2] = …

Member Avatar for richyvr
0
130