Search:

Type: Posts; User: pattop

Search: Search took 0.01 seconds.

  1. Replies
    6
    Views
    1,476

    This method is been great help, thanks!

    This method is been great help, thanks!
  2. Replies
    6
    Views
    1,476

    Sorry, I forgot to mention in the first post that...

    Sorry, I forgot to mention in the first post that the class library "picture.h" allows "pel"'s to use negative indices for neighbourhood operators, i.e. buf[-1][-1] is the top left corner of the...
  3. Replies
    6
    Views
    1,476

    char array[9]; array[0]=buf[-1][-1];...

    char array[9];
    array[0]=buf[-1][-1];
    array[1]=buf[-1][0];
    array[2]=buf[-1][1];
    array[3]=buf[0][-1];
    array[4]=buf[0][0];
    array[5]=buf[0][1];
    array[6]=buf[1][-1];...
  4. Replies
    6
    Views
    1,476

    Thanks so much for pointing that out, I've been...

    Thanks so much for pointing that out, I've been spending hours on that, but couldn't spot that out.
  5. Replies
    6
    Views
    1,476

    Need help to solve program errors

    I am trying to create a median filter program under C++ with the use of a image procesing class library, calls picture.h, so I've written my code, but the compiler keep giving me a error message that...
  6. Replies
    1
    Views
    1,511

    ha, problem solved I have forgotten to declare...

    ha, problem solved

    I have forgotten to declare the "*former" pointer at the adding function. :rolleyes:
  7. Replies
    1
    Views
    1,511

    Linked list pointer error

    :confused: I have a linked list written up, am trying to make the "delete current record" function, for somehow it seem not working properly, I believe it is to do with my point structure, I checked...
  8. Replies
    11
    Views
    7,685

    Thanks Swoopy, I guess I didn't realize that 'lf'...

    Thanks Swoopy, I guess I didn't realize that 'lf' can use it on its own without specific length, "School Boy Error", lol, Thanks again!
  9. Replies
    11
    Views
    7,685

    Thanks

    Thanks Kip Neuhart, just finished the edit function, as you say it pretty simple, cheers
  10. Replies
    11
    Views
    7,685

    After programming the del function, did a...

    After programming the del function, did a compling of the codes, it seems fine on the compling, but everytime that the 'del_data' function runs, it tend to crash. Can someone figure out why, I have...
  11. Replies
    11
    Views
    7,685

    Thanks for the reply of codse. :) I am kind of...

    Thanks for the reply of codse. :) I am kind of understanding how the delete function work, so I have adapted your code for my program in order to get it working.
  12. I have a post about link list as well, please...

    I have a post about link list as well, please refer to http://cboard.cprogramming.com/showthread.php?t=52158
  13. Replies
    11
    Views
    7,685

    Link list code

    Just finished writing the first part of the program. This is the database of the sine wave program basic on LINKED LIST, it is partially working, but for some reasons the program would crash while...
  14. Replies
    11
    Views
    7,685

    C Programming for sine waves drawing

    I am writing a C program to display the summation of a number of sine waves, which may be of differing phase, amplitude and frequency. The characteristics of each component wave should be supplied...
Results 1 to 14 of 16