与matlab里面 imcomplement 函数(负片函数)相同的python代码

Posted 雾恋过往

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了与matlab里面 imcomplement 函数(负片函数)相同的python代码相关的知识,希望对你有一定的参考价值。

import cv2
import numpy as np

def imcomplement(img):  # 负片函数,相当于对图片取反 0<->255, 10<->245, 21<->234
    table = np.array([255 - i for i in np.arange(0, 256)]).astype("uint8")
    return cv2.LUT(img, table)  # 使用OpenCV的查找表函数

        输入时一个灰度图片,每个像素点的灰度值取了个反(0<->255, 10<->245, 21<->234)这种类型的取反

以上是关于与matlab里面 imcomplement 函数(负片函数)相同的python代码的主要内容,如果未能解决你的问题,请参考以下文章

与matlab里面 imadjust 函数相同的python代码

imcomplement

[MATLAB]金字塔扩展公式DLL与MATLAB交互

matlab里面缺少自带函数怎么办?

matlab差分基础问题?!

matlab里面的function的输入参数有函数怎么调用?