Divide the image into 1cm squares

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Arnab das

    Divide the image into 1cm squares

    I am working on C# image processing. I have to divide an image into 1
    cm squares and then I have to calculate the no of pixel in each of the
    square.How can I do this?
    Thanks in advance
  • Cowboy \(Gregory A. Beamer\)

    #2
    Re: Divide the image into 1cm squares

    There is a property on images called dpi (dots per inch). It is really
    designed for print work, but equates roughly to pixels per inch with
    electronic graphics. I would use this property rather than carve out a cm on
    the screen, as different resolutions will make a literal cm different.

    --
    Gregory A. Beamer
    MVP, MCP: +I, SE, SD, DBA

    Subscribe to my blog


    or just read it:


    *************** *************** **************
    | Think outside the box! |
    *************** *************** **************
    "Arnab das" <arnabit@gmail. comwrote in message
    news:3a69b26c-bd47-4ceb-a407-fc91cf70db5f@a1 g2000hsb.google groups.com...
    >I am working on C# image processing. I have to divide an image into 1
    cm squares and then I have to calculate the no of pixel in each of the
    square.How can I do this?
    Thanks in advance

    Comment

    Working...