Multithreaded image processing in C++

后端 未结 16 705
既然无缘
既然无缘 2020-12-29 12:16

I am working on a program which manipulates images of different sizes. Many of these manipulations read pixel data from an input and write to a separate output (e.g. blur).

16条回答
  •  时光说笑
    2020-12-29 12:52

    I think map/reduce framework will be the ideal thing to use in this situation. You can use Hadoop streaming to use your existing C++ application.

    Just implement the map and reduce jobs.

    As you said, you can use row-level maniputations as a map task and combine the row level manipulations to the final image in the reduce task.

    Hope this is useful.

提交回复
热议问题