CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: swetha.bsharma

Page 1 of 9 1 2 3 4

Search: Search took 0.05 seconds.

  1. Replies
    2
    Views
    464

    Re: Refining my program

    Hello Paul,

    Thank you for your comments.I appreciate it.
    -swetha
  2. Replies
    2
    Views
    464

    Refining my program

    Hello,
    I have developed a class Matrix which provides interface for matrix operations.I would like to know
    a more refined way of writing the program.


    Matrix.h file



    #pragma once
  3. Need to access scanners and camera folder in control panel

    Hello,

    I have to access the control panel,specifically camera and scanners folder from a program.Is there any way i can do it?
    -swetha
  4. Accessing a Protected member of base class from derived class

    Hello,

    I have a base class



    class base
    {
    protected :
    int x;
  5. Re: A doubt in design of a class-BMP file extraction

    Hi,
    Ok, so when an image has a RGB data format a query to the Channel type will return Red,green and blue.
    I will make the necessary changes and repost the design.
    Thankyou
    -swetha
  6. Re: A doubt in design of a class-BMP file extraction

    Hi,

    Thankyou for your comments.




    class RGB : public DataFormatBase
    {
    public:
  7. Re: A doubt in design of a class-BMP file extraction

    Hi,

    This is my design .




    class Header
    {
    protected:
  8. Re: A doubt in design of a class-BMP file extraction

    Hi


    I am trying it myself with the information you gave. I will post my design soon.
    -swetha
  9. Re: A doubt in design of a class-BMP file extraction

    Hi,

    I understand is vector is a Standard library class template which can be used instead of arrays.



    I am confused because we are passing a enumerated data type,i dont understand the...
  10. Re: A doubt in design of a class-BMP file extraction

    Hi,
    Thankyou guys.PredicateNormative I do understand what you are saying,but the code is frighitening . I feel a bit confused. i would like to know the following for the start.

    i understand...
  11. A doubt in design of a class-BMP file extraction

    Hi,

    I am writing a program to read a BMP image file.These are the things which i want the program to do:

    1. Read an image file
    2. extract the Height ,width,noof bits...
  12. Replies
    0
    Views
    932

    Data structures to store images

    Hello,

    I am developing a application to be ported on a windows mobile. I want to know the best way to do manipulations like finding a value in an array,edge detection ,connected component...
  13. problem displaying a bitmap width not divisible by 4

    Hello,


    I am trying to display a bitmap truecolor image with a width not divisible by 4.



    #include <iostream.h>
    #include <stdio.h>
    #include<stdlib.h>
  14. Replies
    2
    Views
    716

    Windows mutimedia library

    Hello,

    How do i load windows multimedia library? It gives an error:
    Cannot load windows multimedia library. How can it be solved?
    rgds
    swetha
  15. Replies
    4
    Views
    604

    Problem in delete

    Hello,

    I have a class



    class A
    {
    Public:
  16. Replies
    0
    Views
    519

    Reading from a file

    Hello,
    I am trying read an image . The following is my code. In a Bitmap image the 18 byte gives the height and the 22 nd byte gives the width of the image.The image values starts from the 54 th...
  17. Replies
    49
    Views
    5,388

    Re: ? Deriving Formula of a Plane

    Hello,

    Please tell me whether i have understood the problem correctly! You are giving as input R and G component OR G and B component OR R and B component then find the resulting color value. In...
  18. Replies
    49
    Views
    5,388

    Re: ? Deriving Formula of a Plane

    Why do u need such large numbers? Anyway your calculation will be in terms of screen coordinates rght? can u explain?
    rgds
    swetha
  19. Replies
    4
    Views
    837

    i want rgb details from .bmp

    Hello,

    I am reading the values of r,g,b from a .bmp file.




    ifstream fin;

    fin.open("deer256.bmp",ios::binary);
  20. Replies
    1
    Views
    989

    Animation software library

    Hello,

    I want to develop an software library which helps in animation,something very similar to Renderman of Pixar. I do not know where to start,are there any tutorials for such things.Can anyone...
  21. Replies
    1
    Views
    500

    Doubt on COM and DCOM

    Hello,

    wht is COM and DCOM? Any links to learn it
    rgds
    swetha
  22. Replies
    7
    Views
    1,440

    Re: Not Working

    I have a class controldetails which stores information about the controls stored in the dialog box.

    ptr is a pointer to the Controldetails.

    i Used ...
  23. Replies
    7
    Views
    1,440

    Not Working

    Hello,

    ::CheckDlgButton(ptr->parentwindow->m_hWnd,ptr->nId,BST_CHECKED)

    I used this and it is not working.Can anyone tell me wht is wrong?
  24. Replies
    5
    Views
    1,085

    Re: Is a dialog portion occupied?

    The Windowfrompoint() is not working any other method?
  25. Replies
    3
    Views
    2,516

    Re: why is a CTempwnd created

    thankyou.
Results 1 to 25 of 207
Page 1 of 9 1 2 3 4





Click Here to Expand Forum to Full Width

Featured