Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
A

Arrun

@Arrun
About
Posts
31
Topics
20
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • problem with &
    A Arrun

    It works fine for & but not for other special charaters like > , < etc I need a solution to parse special characters other than & I will get data like >&lt, where I have to set the exact value to that node.

    C / C++ / MFC help xml tutorial

  • problem with &amp;amp;
    A Arrun

    No its not converting > and < its converting only & If I pass > then only & gets converted and resultant node value is &gt;

    C / C++ / MFC help xml tutorial

  • problem with &amp;amp;
    A Arrun

    I am creating a XML file by using IXMLDOMNode and I am setting value to the node by using the function put_nodeValue(). But whenever I pass & it gets converted to &amp; Similarly if I pass &gt it gets converted to &gt; How to overcome this problem Is there any escape seqeuence that should be added before passing value to the put_nodeValue(). Pls help

    C / C++ / MFC help xml tutorial

  • Yet another special character problem
    A Arrun

    Actually my problem is I am reading a CSV file and conveting it into XML, when one of the comma seperated value is &. I read it and set the value to the XML using IXMLDomNode's put_nodeValue() function in VC++. But the resulting output is &amp;. Similarly when I pass > its converted to &gt; How to over come this problem, the put_nodeValue() function is converting & to & Is there any escape sequence to be added so that & is read as & Thanks in Advance

    XML / XSL help tutorial

  • Yet another special character problem
    A Arrun

    Hi When I pass & to the function putnodeValue() under the IXMLDom, its converting it to &. The same thing happens for &gr; also, when &gr; is passed the value set is &gr. How to avoid this, I want the exact value to be set which I am passing. Pls help

    XML / XSL help tutorial

  • Problem Writing & URGENT PLS HELP
    A Arrun

    I have downloaded a XML_PARSER code from this site but whenever a & is found its automatically converting it into & even if > its converting to &gt; How to avoid this Pls help me

    XML / XSL help xml tutorial

  • Problem with windows 98 and MFC
    A Arrun

    I did a project in VC++ 6.0 in windows XP but when I run the same exe in windows 98, the default font type and size of the modal dialog box changes. (The font in the caption bar of the main frame and child frame is the default) Wut is the problem? Should i give default font type and size in DoModal() function?

    C / C++ / MFC c++ help question

  • Is child frame present
    A Arrun

    How to check whether a child frame is opened or not from CMainFrame class I want to display a message while closing the main frame if any child frame is opened. I used "GetActiveView()->GetDocument()" but it throws an assertion failure error.

    C / C++ / MFC help tutorial

  • Dynamic double dimension
    A Arrun

    so how should I allocate and delete dynamic memory when the width and height are different. help me with some code.

    C / C++ / MFC help data-structures

  • Dynamic double dimension
    A Arrun

    It works fine when the height and width are equal or if the height is less than width The error occurs only when the height is greater than the width. BoundsChecker displays an error message "Dynamic memory overrun"

    C / C++ / MFC help data-structures

  • Dynamic double dimension
    A Arrun

    delete[] ImagePro is not working I get assertion in "delete ImagePro;"

    C / C++ / MFC help data-structures

  • Dynamic double dimension
    A Arrun

    I am using the following code to allocate dynamic double dimensional array double **ImagePro; try { ImagePro = new double*[width]; for(int i = 0; i < height; i++) { ImagePro[i] = new double[width]; } } catch(CMemoryException* ex) { ImagePro = NULL; ex->ReportError(); return FALSE; } and for deletion for(int i = 0; i < height; i++) { delete ImagePro[i]; } delete ImagePro; return TRUE; My problem is whenever the height is greater than width I get assertion error message Pls Help

    C / C++ / MFC help data-structures

  • Intensity problem
    A Arrun

    Thanx for ur reply I checked it with 8 bit bmp but when I reduce or increase the pixel values the color change not the intensity eg: If I use yellow color square and stretch it by two units and divide the pixel value by 2, the color changes to green and not to light yellow. Pls help

    C / C++ / MFC help algorithms tutorial

  • Density sampling
    A Arrun

    What is density sampling? How can it be used in image resizing? Pls help

    C / C++ / MFC question help

  • Intensity problem
    A Arrun

    Thanx for ur reply Intensity means value of each pixel eg: If I stretch a yellow color square of one unit to two units then after stretching it should be light yellow and if I stretch further more it should me even more lighter. Is there any density filter which can be used instead of bilinear interpolation?

    C / C++ / MFC help algorithms tutorial

  • Intensity problem
    A Arrun

    How to get the same intensity after stretching an image eg: Let intensity of a square of 1 unit = 1 x I1 If I stretch the square to 2 units then the intensity = 2 x I2 Both these intensities should be equal 1xI1 = 2xI2 = k(constant) It should work ways (ie) the intensity should decrease while stretching and increase while shrinking. I am using bilinear interpolation for stretching but the intensities aren;t equal. Is there any algorithm or filter to alter the intensity of an image. Pls Help

    C / C++ / MFC help algorithms tutorial

  • Bilinear interpolation
    A Arrun

    Thanks a lot Is there any algorithm or filter which I could use to reduce the intensity? It should work both ways (stretching and shrinking).

    C / C++ / MFC help tutorial

  • Bilinear interpolation
    A Arrun

    How to get the same intensity after stretching an image eg: Let intensity of a square of 1 unit = 1 x I1 If I stretch the square to 2 units then the intensity = 2 x I2 Both these intensities should be equal 1xI1 = 2xI2 = k(constant) I am using bilinear interpolation for stretching but the intensities arent equal. Is there some other method for stretching so that I ll get same intensity in both the images. Pls Help

    C / C++ / MFC help tutorial

  • Problem in stretching an image
    A Arrun

    Thanks for ur reply Yes I am calculating it with floating point numbers and translating it back to integers. Is there a problem with that? or should I use density filter to get the same intensity

    C / C++ / MFC help c++

  • Problem in stretching an image
    A Arrun

    Hi I am doing a image prcessing project in VC++, I am using bilinear interpolation for stretching the images but the image intensity varies before stretching and after stretching. for eg: If the image intensity for a square of 1 unit = 1xI1. If I stretch the image to 2 units then the intensity should be 2xI2 both the intensities should be equal ie 1xI1 = 2xI2 = k(constant) Pls help

    C / C++ / MFC help c++
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups