How to use MATLAB code in mapper (Hadoop)?

后端 未结 4 1529
暖寄归人
暖寄归人 2021-02-01 08:48

I have a matlab code that processes images. I want to create a Hadoop mapper that uses that code. I came across the following solutions but not sure which one is best (as it is

4条回答
  •  灰色年华
    2021-02-01 09:11

    With respect to your first option: The Matlab Coder now supports many image processing functions (partly via system objects) to automatically generate C-code of your algorithm, which is basically platform independent and needs no runtime environment. From my experience this code is about a factor 2..3 slower than "hand-coded" OpenCV (strongly depends on your algorithm and cpu). The main drawback is, you need a Matlab Coder license ($$$).

提交回复
热议问题