Feature Based Panoramic Image Stitching

9 次查看(过去 30 天)
Hi everybody
I would like to do the same work but I also need functions that are supported for C and C++. For some of them in the example, they are not supported by Matlab Coder.
I am looking for alternative for this functions: - Fullfile - SetImage - read - step
if you have any idea do not hesitate.
Thank you
  1 个评论
Axel veillon
Axel veillon 2016-3-4
编辑:Axel veillon 2016-3-4
Hi
I have an other issue, as I want a vertical stitching (it's an horizontal in the example), I want to modify the parameter TransformType of EstimateGeometricTransform. I have three possibilties, 'Similarity', 'Projective' and 'Affine'. I know that similarity contains the rotation, translation and uniform scaling transformations.
For my work I need only the 'translation' transformation.
Is threre any way to get just the translation transformation with estimateGeometricTransform ?
if you have any idea do not hesitate.
Thank you

请先登录,再进行评论。

采纳的回答

Dima Lisin
Dima Lisin 2016-2-29
Hi Alex,
fullfile is a function to create a path to your image folder. It simply concatenates the strings you give it with the OS-appropriate separator. You can easily write your own code to do that.
imageSet is an object, which manages a collection of image files, and read is one of its methods, which ultimately calls imread. Unfortunately, imread does not yet support code generation. So you would need to refactor the code in the example to separate reading of the image files from the actual stitching, and handle the reading of the files yourself.
The only step method used in this example belongs to the vision.AlphaBlender system object, and that is supported by MATLAB Coder.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Computer Vision with Simulink 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by