Search:

Type: Posts; User: vasanth

Page 1 of 20 1 2 3 4

Search: Search took 0.22 seconds.

  1. Replies
    27
    Views
    8,317

    well actually the core duo itself uses certain...

    well actually the core duo itself uses certain super scalar techniques.. so yes it has certain advantages and disadvantages of a super scalar processor...

    and one more thing to consider in single...
  2. Replies
    27
    Views
    8,317

    I would highly recommend that you go for the core...

    I would highly recommend that you go for the core duo.. I have used it and performance seems good and even benchmarks seem to prove this...


    Though app which take advantage of this is required...
  3. Replies
    4
    Views
    4,006

    C++ Object heap stack

    I have a doubt .. consider the below situation



    object a;
    object b;
    b=a;
  4. Replies
    10
    Views
    4,958

    can you provide me details of the laptop model...

    can you provide me details of the laptop model number??
  5. Replies
    10
    Views
    4,958

    I have opened mine but I don't think you need to...

    I have opened mine but I don't think you need to open it to add RAM.. all laptops and VAIO included provide facilities to access the memory module by just opening a small latch with 4 screws...
  6. Replies
    7
    Views
    1,737

    void recursiveFunction(arguments){ ...

    void recursiveFunction(arguments){

    if(conditionMet)
    return;

    --- do something----
    recursiveFunction(arguments);
    }
  7. Replies
    5
    Views
    3,847

    thank you both.. i will try the novacain's...

    thank you both.. i will try the novacain's "reference" idea.




    I am building a human path maping and profile matching system for my fianl year university project. Which involves plotting...
  8. Replies
    5
    Views
    3,847

    thanx.. But i dont think I can acurately...

    thanx.. But i dont think I can acurately measure the distance from the head.. cant this be done by using the height of the person on image and and approx distance of the person from the camera...
  9. Replies
    5
    Views
    3,847

    Human Path Detection

    Hello Everyone,
    Long time since I came here... I require your valuable suggestion/ideas for the below propsed system.


    The purpose of the system is to detect/map the path of human/humans in a...
  10. Replies
    144
    Views
    84,308

    here's me with the pirates... I am the one in the...

    here's me with the pirates... I am the one in the middle
  11. Replies
    20
    Views
    8,189

    nice... more then the actual parser i liek...

    nice... more then the actual parser i liek the way the system works..
  12. Replies
    26
    Views
    9,140

    Poll: :( the program is a bit rough edged (created when...

    :( the program is a bit rough edged (created when I hardly had any good programming experience)..

    to solve the problem you will have to extract the project folder to C drive and then run the exe.....
  13. Replies
    26
    Views
    9,140

    Poll: I had posted my chess game here quite some time...

    I had posted my chess game here quite some time back... you can find it at http://geekpursuit.com/web/public_html/filemgmt/singlefile.php?lid=3

    screen shot...
  14. Replies
    8
    Views
    8,367

    (1

    (1<<check_bit) ==0
    needs to be changed to
    (1U<<check_bit) ==0


    as from the other thread i learnt that signed integer breaks when bitshifiting from one endian to the other...
  15. Thread: Setting bits

    by vasanth
    Replies
    15
    Views
    4,921

    thanx... that cleared it up.. had a look into...

    thanx... that cleared it up.. had a look into how it worked...
  16. Replies
    8
    Views
    8,367

    ok lets assume the machine is big-endian ...

    ok lets assume the machine is big-endian


    byte to check :- 00000010
    mask 1(big endian) :- 10000000

    now i want to check if the 1st bit is set which in the above case is yes
    1U << 1 :-...
  17. Thread: Setting bits

    by vasanth
    Replies
    15
    Views
    4,921

    ok lets assume the machine is big-endian ...

    ok lets assume the machine is big-endian


    byte to check :- 00000010
    mask 1(big endian) :- 10000000

    now i want to check if the 1st bit is set which in the above case is...
  18. Replies
    5
    Views
    6,881

    there is no standard function to do this.. You...

    there is no standard function to do this.. You could obtain the key press of the arrow keys and do further processing based on the selection..
  19. Replies
    12
    Views
    3,161

    I use gcc on linux.. and dev-c++ which comes...

    I use gcc on linux.. and dev-c++ which comes with a gcc port on windows
  20. Thread: Setting bits

    by vasanth
    Replies
    15
    Views
    4,921

    you assuming the architecture... what happnes...

    you assuming the architecture... what happnes when this code is run on a mac.
  21. Replies
    8
    Views
    8,367

    how abt something like bool...

    how abt something like


    bool is_bit_set(unsigned char byte,unsigned char check_bit)
    {
    if(check_bit>7 || (byte & (1<<check_bit)) ==0)
    return false;

    return true;
    }
  22. Replies
    4
    Views
    2,956

    i had seen some applications which use the mouse...

    i had seen some applications which use the mouse movement values as a seed... i guess those will give better random values..
  23. Replies
    12
    Views
    3,161

    Try this union REGS regs;...

    Try this



    union REGS regs;
    regs.h.ah=0x02; //video function 2 to move cursor
    regs.h.bh=0x00; //video screen
    regs.h.dh=col; //cursors column position
    regs.h.dl=row; //cursors row...
  24. Replies
    32
    Views
    11,010

    Java and C++ are intended for different kind of...

    Java and C++ are intended for different kind of problem solving... so any comparrision between them would not be fair.
  25. Replies
    37
    Views
    11,868

    yep you are some what correct... And for ppl...

    yep you are some what correct...

    And for ppl who dont know me.. I left this board some time back.. Decided to come back now.. :)
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4