0

我有一个格式如下的图像数据:

200406011215.goes12ir

print im.format, im.size, im.mode

MCIDAS (1732, 2600) L

这些图像由具有相应亮度值的线条和元素组成( 0 -255)。我正在尝试制作一个针对具有某些属性的区域的脚本。

脚本:

import Image
im = Image.open("/home/mcidas/Documents/datos/200404031215.goes12ir")
im.show()

如何定位显示图像的亮度值为 的区域> 205

任何人都知道我如何识别并在符合指定值的图像区域上绘制标记(可能是圆形))

4

1 回答 1

1

您可以使用numpy' 广播过滤掉高于阈值的像素。如果您事先模糊图像,这会更好。下面给出了一个完整的工作示例(没有模糊),只需适应您的需要:

import numpy as np
from pylab import *

# Generate random data with a "bright spot"
N = 100
line = np.linspace(-3,3,N)
X, Y = meshgrid(line,line)
Z  = np.exp(-((X+1)**2+(Y-1)**2)) 
Z += np.random.random(Z.shape)*.5

subplot(121)
imshow(Z,cmap=gray(), origin="lower", extent=[-3,3,-3,3])

Z2 = Z.copy()
# Identify regions that are brighter than threshold on z_scale
threshold = .8
idx = Z2>threshold

Z2[~idx] = None
Z2[idx ] = 1

subplot(122)
imshow(Z2,cmap=gray(), origin="lower", extent=[-3,3,-3,3])

# Place a dot at the "center" of the pixels found
CM = [X[idx].mean(), Y[idx].mean()]
scatter(*CM, s=100,color='red')

show()

在此处输入图像描述

于 2012-04-20T16:15:50.227 回答