• 大小: 1.14KB
    文件类型: .py
    金币: 1
    下载: 0 次
    发布日期: 2021-03-03
  • 语言: Python
  • 标签: 图像  计算  

资源简介

计算二维图像信息熵

资源截图

代码片段和文件信息

# -*- coding: utf-8 -*-
“““
Created on Sun Apr 28 10:12:20 2019

@author: 宣
“““

from skimage import iocolor
import numpy as np
import math

img = io.imread(‘E:\lena24__.bmp‘)
gray = color.rgb2gray(img)
#io.imshow(gray)
#print(img)
width = img.shape[0]
height = img.shape[1]
toll = img.size

print(‘图像的大小为:{}*{}‘.format(widthheight))

levelcount = []
psb = []

#计算概率保留小数n位
n=4

def plogp(count):
    add = []
    for i in range(len(count)):
        if count[i]==0:
            add.

评论

共有 条评论