Search found 13 matches
- 2015-03-22T15:58:35-07:00
- Forum: Developers
- Topic: Offering new feature: Image registration
- Replies: 20
- Views: 18352
Re: Offering new feature: Image registration
Details about the planned adaption of my Image Registration code for subimage-searches. http://embedded-software-architecture.com/?p=183 Unfortunately the API has to be changed heavily. https://raw.githubusercontent.com/RoelofBerg/limereg/master/lib/export/limereg.h I will provide an example code in ...
- 2015-03-10T14:31:13-07:00
- Forum: Developers
- Topic: Offering new feature: Image registration
- Replies: 20
- Views: 18352
Re: Offering new feature: Image registration
Hi fmw42, Regarding the grid-search: The 'magick' of the algorithm is that it is iterative and automagically proceeds comparing into the right direction. This is done by analytically (!) solving an optimization problem, where shift/rotation are the parameters to be optimized. To say it a bit rough ...
- 2015-03-10T14:16:34-07:00
- Forum: Developers
- Topic: Offering new feature: Image registration
- Replies: 20
- Views: 18352
Re: Offering new feature: Image registration
First version based on autotools for a sneek peak:
http://embedded-software-architecture.c ... 9.3.tar.gz
Better, however, wait for 1.0.0 before starting the integration.
http://embedded-software-architecture.c ... 9.3.tar.gz
Better, however, wait for 1.0.0 before starting the integration.
- 2015-03-03T15:26:34-07:00
- Forum: Developers
- Topic: Offering new feature: Image registration
- Replies: 20
- Views: 18352
Re: Offering new feature: Image registration
Note: I'm dumping my makefile and move to GNU autotools (configure). Makes life easier for people using the lib, I guess.
- 2015-02-28T17:03:00-07:00
- Forum: Developers
- Topic: Offering new feature: Image registration
- Replies: 20
- Views: 18352
Re: Offering new feature: Image registration
(x,y: Gridsize smaller than the Imagesize. E.g. every 50 pixels for a 100 pixel subimage. Has to be found out ...)
- 2015-02-28T16:56:38-07:00
- Forum: Developers
- Topic: Offering new feature: Image registration
- Replies: 20
- Views: 18352
Re: Offering new feature: Image registration
Ok. I just noticed that you have > 15000 posts. Dear, who am I e-mailing to ? And magick also has so many, many posts. Such an honor :) I'm currently busy with bringing limereg and liblimereg into Debian. Which also means to do get rid of some limitations (square image size). Feature work can be ...
- 2015-02-25T13:26:45-07:00
- Forum: Developers
- Topic: Offering new feature: Image registration
- Replies: 20
- Views: 18352
Re: Offering new feature: Image registration
Extending rigid registration to affine would be pretty easy. (In fact one has to ADD more math to the affine registration to get a rigid one - which we did.) This aproach would allow more flexibility (like magnification or shearing) when needed. Even more easily I could allow a smaller template ...
- 2015-02-24T17:17:43-07:00
- Forum: Developers
- Topic: Offering new feature: Image registration
- Replies: 20
- Views: 18352
Re: Offering new feature: Image registration
Note for the tryout: Usually images for image registration have content in the middle that is surrounded by a black background, like in the .pdf mentioned in the original post. The current algorithm works best with this types of images. I'm working on a way to be more tolerant to image edges with ...
- 2015-02-24T17:04:27-07:00
- Forum: Developers
- Topic: Offering new feature: Image registration
- Replies: 20
- Views: 18352
Re: Offering new feature: Image registration
Hi fmw42, thanks for noting about the demand for a solution :) The algorithm operates on equisized images. The result of the (rigid, 2D) image registration is an angle and an x-shift, y-shift. So the rigid transformation parameters needed to align the images. The example images on the .pdf in the ...
- 2015-02-24T16:53:57-07:00
- Forum: Developers
- Topic: Offering new feature: Image registration
- Replies: 20
- Views: 18352
Re: Offering new feature: Image registration
Great ! I extracted the sole library to: https://github.com/RoelofBerg/liblimereg . If make sudo make install-dev doesn't work, please let me know. Note: 'make lib' can be used instead of 'make all' to avoid the dependency to doxygen. Calling example see folder named 'test' (make test). Another ...
- 2015-02-17T15:33:51-07:00
- Forum: Developers
- Topic: Offering new feature: Image registration
- Replies: 20
- Views: 18352
Re: Offering new feature: Image registration
Ok, now I have a library 'liblimereg' that can be called from C and processes byte-stream-images. I'm also busy with packaging the library for Debian (the official repo, if they allow me to). API so far (simplified): int Limereg_RegisterImage( unsigned char* imgRef, //input buffer unsigned char ...
- 2015-01-25T13:53:50-07:00
- Forum: Developers
- Topic: Offering new feature: Image registration
- Replies: 20
- Views: 18352
Re: Offering new feature: Image registration
I see, thanks, so I will extract the tool's features into a library. I'm not sure yet which method I will use for extracting code of an executable-project into a library. a) Use a makefile that has a special make target for a library-only-version (instead of an executable), like 'make lib' and 'make ...
- 2014-11-13T06:43:41-07:00
- Forum: Developers
- Topic: Offering new feature: Image registration
- Replies: 20
- Views: 18352
Offering new feature: Image registration
Hello, recently I developed a simple and fast algorihm for rigid image registration. I wonder if it could be interesting for Imagemagick. Example: mogrify -register reference.jpg template.jpg Would shift/rotate template.jpg in a way that it is aligned to reference.jpg (best possible overlay). Read ...