Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8419433
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T02:36:34+00:00 2026-06-10T02:36:34+00:00

I’m new to image processing, but I’m using EMGU for C# image analysis. However,

  • 0

I’m new to image processing, but I’m using EMGU for C# image analysis. However, I know the homography matrix isn’t unique to EMGU, and so perhaps someone with knowledge of another language can explain better.

Please (in as simplified as can be) can someone explain what each element does. I’ve looked this up online but can’t find an answer that I can properly understand (as I said, I’m kinda new to all this!)

I analyse 2 images, both 2 dimensional. Therefore a 3×3 matrix is needed to account for the rotation / translation of the image. If no movement is detected, the homography matrix is:
100,
010,
001

I know from research (eg OpenCV Homography, Transform a point, what is this code doing?) that:
10Tx,
01Ty,
XXX

The 10,01 bit is the rotation of the x and y coordinates. The Tx and Ty bits are the translational movement, but what is the XXX bit? This is what I don’t understand? Is it something to do with affine transformations? Please can someone explain:
1. If I’m currently right in what I say above.
2. what the XXX bit means

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T02:36:36+00:00Added an answer on June 10, 2026 at 2:36 am

    It’s not that difficult to understand if you have a grasp of matrix multiplication. Assume you point x is

    /a\
    \b/,
    

    and you want to rotate the coordinate system by A:

    /3 4\
    \5 6/
    

    and and “move it” it by t

    /2\
    \2/.
    

    The latter matrices are the components of the affine transformation to get the new point y:

    y = A*x + t = <a'; b'>T //(T means transposed).
    

    As you know, to get that, one can construct a 3d matrix B and a vector x' looking like

        /3 4 2\         /a\
    B = |5 6 2| ,  x' = |b|
        \0 0 1/         \1/
    

    such that

         /a'\
    y' = |b'| = B*x'
         \ 1/ 
    

    from which you can extract y. Let’s see how that works. In the original transformation (using addition), the first step would be to carry out the multiplication, ie. the rotating part y_r:

    y_r = A*x = <3a+4b; 5a+6b>T
    

    then you add the “absolute” part:

    y = y_r + t = <3a+4b+2; 5a+6b+2>T
    

    Now look at how B works. I’ll calculate y' row by row:

    1) a' = 3*a + 4*b + 2*1
    
    2) b' = 5*a + 6*b + 2*1
    
    3) the rest: 0*a + 0*b + 1*1 = 1
    

    Just what we expected. First, the rotation part gets calculated–addition and multiplication. Then, the x-part of the translational part gets added, multiplied by 1–it stays the same. The same thing for the second row.

    In the third row, a and b are dropped (multiplied by 0). The last part is kept the same, and happens to be 1. So, all about that last line is to “drop” the values of the point and keep the 1.


    It could be argued, then, that a 2×3 matrix would be enough for that. That’s partially true, but has one significant disadvantage: you loose composability. Suppose you are basically satisfied with B, but want to mirror one coordinate. Then you can choose another transformation matrix

        /-1 0 0\
    C = | 0 1 0|
        \ 0 0 1/
    

    and have a result

    y'' = C*B*x' = <-3a+4b+2; 5a+6b+2; 1>T
    

    This simple multiplication could not be done that easily with 2×3 matrices, simply because of the properties of matrix multiplication.

    In principle, in the above, the last row (the XXX) could also be anything else of the form <0;0;x>. It was there just to drop the point values. It is however necessary exactly like this to make composition by multiplication work.

    Finally, wikipedia seems quite informative to me in this case.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm new to using the Perl treebuilder module for HTML parsing and can't figure
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I want to count how many characters a certain string has in PHP, but
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I am reading a book about Javascript and jQuery and using one of the
I want use html5's new tag to play a wav file (currently only supported
I have a French site that I want to parse, but am running into
I'm using v2.0 of ClassTextile.php, with the following call: $testimonial_text = $textile->TextileRestricted($_POST['testimonial']); ... and
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.