Jump to content

How to know the available function's parameter list?


Recommended Posts

Hii everyone,

I want to perform image stitching on a set of four images taken from 4 camera (mounted 90° apart), for image stitching.

For this, I found an algorithm on internet (pano tools, Pano12.dll). Now the problem is, as there is not enough documentation/examples available, I'm unable to use the dll.

I tried using DLL Export Viewer by NirSoft to list all of the exported functions, but still unaware of parameter lists.

And also I'm new to 'calling external code' in LabVIEW.frusty.gif

Please help in this regard.

Thank you.biggrin.gif

Link to comment

Hii everyone,

I want to perform image stitching on a set of four images taken from 4 camera (mounted 90° apart), for image stitching.

For this, I found an algorithm on internet (pano tools, Pano12.dll). Now the problem is, as there is not enough documentation/examples available, I'm unable to use the dll.

I tried using DLL Export Viewer by NirSoft to list all of the exported functions, but still unaware of parameter lists.

And also I'm new to 'calling external code' in LabVIEW.frusty.gif

Please help in this regard.

Thank you.biggrin.gif

We can't help you with this. Without documentation for a particular function it's not possible to deduce its parameter list other than by trial and error and disassembling the function in question. Disassembling code is however in some jurisdiction a crime punishable to quite some extend, and it also doesn't guarantee that you find out everything about the possible parameters either.

So go and find the creator of that component and get better documentation from them. Failing that, look for a different component that is better documented. Sorry for the sad news but that is how this works and I can't perform magic.

Link to comment

Hi,

You could perform all the calculations yourself though. It's a matter of calculating for each pixel in the image at which pan & tilt angle it actually is, doing that for multiple images, then combine them and then calculating them back to a single picture. Most lenses are rectilinear (by approximation). It means a rectangular plane is projected as a rectangle on the sensor. You can use the arctangent function to calculate the angle. You'll need the pan & tilt angles to be able to do the combination. It's not without problems though, because no lens is perfect. But it can be done in an acceptable way (I did once manage to get it done a few years ago).

Joris

Link to comment

Hii everyone,

I want to perform image stitching on a set of four images taken from 4 camera (mounted 90° apart), for image stitching.

For this, I found an algorithm on internet (pano tools, Pano12.dll). Now the problem is, as there is not enough documentation/examples available, I'm unable to use the dll.

I tried using DLL Export Viewer by NirSoft to list all of the exported functions, but still unaware of parameter lists.

And also I'm new to 'calling external code' in LabVIEW.frusty.gif

Please help in this regard.

Thank you.biggrin.gif

Well. It's open source is it not? You only need to download the source and look at the function prototypes. It will also give you all the header files that you will need for passing structures.

Link to comment

Well. It's open source is it not? You only need to download the source and look at the function prototypes. It will also give you all the header files that you will need for passing structures.

Ohh dear a sourceforge project! :worshippy:

Well I simply assumed that someone resorting to API export applications for a DLL would certainly not do that for an open source library. Talk about hiring an expensive detective to find out about "secrets" that are in the public domain!!! :rolleyes:

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.