Searching for a way to do Bitwise XOR on images

前端 未结 6 1635
Happy的楠姐
Happy的楠姐 2021-01-31 09:42

I am looking for a way to get the Bitwise XOR of two images on the command line(or in another way that can be implemented in a program or script).

This should result in

6条回答
  •  执笔经年
    2021-01-31 10:44

    OpenCV has all the logical operators on images and numpy images using bitwise_# Where # can be xor, and, and, not ... See OpenCV - Intersection between two binary images

提交回复
热议问题