Inverse convolution of image

前端 未结 5 833
半阙折子戏
半阙折子戏 2020-12-24 04:33

I have source and result image. I know, that some convolution matrix has been used on source to get result. Can this convolution matrix be computed ? Or at least not exact o

5条回答
  •  眼角桃花
    2020-12-24 05:10

    Well, an estimate can be produced if an upper bound for the convolution matrix size is known. If it's N, select N*N points and attempt to solve a linear equation system against convolution coefficients, based on the data of source and destination. Given the rounding of color components, the system won't solve, but with linear programming you will be able to minimize the total offset from expected values by small alterations of those coefficients.

提交回复
热议问题