python 实现12bit灰度图像映射到8bit显示的方法
作者:帅气的弟八哥 时间:2022-11-22 01:37:32
图像显示和打印面临的一个问题是:图像的亮度和对比度能否充分突出关键部分。这里所指的“关键部分”在 CT 里的例子有软组织、骨头、脑组织、肺、腹部等等。
技术问题
1、显示器往往只有 8-bit, 而数据有 12- 至 16-bits。
2、如果将数据的 min 和 max 间 (dynamic range) 的之间转换到 8-bit 0-255 去,过程是个有损转换, 而且出来的图像往往突出的是些噪音。
算法分析
12-bit 到 8-bit 直接转换:
computeMinMax(pixel_val, min, max); // 先算图像的最大和最小值
for (i = 0; i < nNumPixels; i++)
disp_pixel_val[i] = (pixel_val[i] - min)*255.0/(double)(max-min);
这个算法必须有,对不少种类的图像是很有效的:如 8-bit 图像,MRI, ECT, CR 等等。
python实现
def matrix2uint8(matrix):
'''
matrix must be a numpy array NXN
Returns uint8 version
'''
m_min= np.min(matrix)
m_max= np.max(matrix)
matrix = matrix-m_min
return(np.array(np.rint( (matrix-m_min)/float(m_max-m_min) * 255.0),dtype=np.uint8))
#np.rint, Round elements of the array to the nearest integer.
def preprocess(img, crop=True, resize=True, dsize=(224, 224)):
if img.dtype == np.uint8:
img = img / 255.0
if crop:
short_edge = min(img.shape[:2])
yy = int((img.shape[0] - short_edge) / 2)
xx = int((img.shape[1] - short_edge) / 2)
crop_img = img[yy: yy + short_edge, xx: xx + short_edge]
else:
crop_img = img
if resize:
norm_img = imresize(crop_img, dsize, preserve_range=True)
else:
norm_img = crop_img
return (norm_img).astype(np.float32)
def deprocess(img):
return np.clip(img * 255, 0, 255).astype(np.uint8)
来源:https://blog.csdn.net/jiandanjinxin/article/details/78365183
标签:python,12bit,灰度,8bit
0
投稿
猜你喜欢
Python tkinter库绘制春联和福字的示例详解
2022-03-05 06:29:04
Sublime Text4 配置 Python3 环境、代码提示、编译报错的解决方案
2021-09-24 12:00:03
python中remove函数的踩坑记录
2022-10-25 18:32:50
js中函数声明与函数表达式
2024-04-25 13:08:35
解决golang 关于全局变量的坑
2024-02-17 05:46:02
Python使用matplotlib绘图无法显示中文问题的解决方法
2023-07-30 22:16:30
Python使用pylab库实现画线功能的方法详解
2021-02-03 18:26:07
python爬虫增加访问量的方法
2021-08-23 06:32:23
浅谈JavaScript中的parseInt()的妙用
2024-04-19 10:47:52
Apache部署Django项目图文详解
2023-12-17 06:51:05
asp如何刪除客户端的Cookies?
2010-05-18 18:25:00
初衷和结果
2009-02-23 12:52:00
Python实现的随机森林算法与简单总结
2021-07-10 20:59:54
Python2.x版本中基本的中文编码问题解决
2021-01-06 14:02:16
pandas中DataFrame重置索引的几种方法
2023-06-10 00:26:45
PHP登录环节防止sql注入的方法浅析
2023-07-21 06:41:01
基于Python正确读取资源文件
2022-04-10 11:34:18
python实现网站微信登录的示例代码
2021-08-28 21:34:09
数据库备份过程中经常遇到的九种情况
2008-12-26 16:38:00
IE和Firefox的js兼容性整理
2007-11-21 19:40:00