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
~1K People Reached
Favorite Forums
Favorite Tags
c++ x 9
Member Avatar for Kosithc

Hello, I have class named cTPS, there are 3 member functions called matrixP_2, matrixP_3 and matrixP_4 for calculating matrixP in three different ways. In constructor of this class I want to initialize a pointer declared in cTPS.h like this: [CODE]cMatrixBase *(cTPS::*matrixP)(void) //pointer MatrixP returning object cMatrixBase[/CODE] I initialize it for …

Member Avatar for Narue
0
145
Member Avatar for Kosithc

Hello, I have 2D matrix with greyscale image data, in particular point I have computed vector, which contains gradient in this point (via Sobel operator, it has 2 values - difference in x and in y axis), and I store this gradient vector like perpendicular vector to this gradient, so …

Member Avatar for spetro3387
0
163
Member Avatar for Kosithc

Hello, I am using this piece of code for allocating 3D array in memory by my dimensions HEIGHT, WIDTH, DEPTH which are variables. [CODE]p2DArray = new double**[HEIGHT]; for (int i = 0; i < HEIGHT; ++i) { p2DArray[i] = new double*[WIDTH]; for (int j = 0; j < WIDTH; ++j) …

Member Avatar for Ancient Dragon
0
198
Member Avatar for Kosithc

Hello, I am a totally newbie and I would be pleased, if you could help me. Here is the problem: I have created VS 2008 project and configured it for using the ITK (toolkit for medical image analysis - in my case for reading Dicom images). Everything worked OK until …

Member Avatar for Kosithc
0
622