文件名称:SSIM-PIL:结构相似性图像比较,并兼容python图像库PIL
文件大小:10KB
文件格式:ZIP
更新时间:2024-03-15 23:28:19
SSIM-PIL 使用结构相似性算法(SSIM)比较两个图像。 对于相同的图像,结果值在1.0和完全不同的图像之间为0.0。 它基于PIL,还通过pyopencl支持GPU加速。 安装 python3 -m pip install SSIM-PIL 确保安装pyopencl的工作版本,以从GPU上更快的并行执行中受益。 (该代码已通过OpenCl 1.2版进行了测试。) 使用范例 from SSIM_PIL import compare_ssim from PIL import Image image1 = Image . open ( path ) image2 = Image . open ( path ) value = compare_ssim ( image1 , image2 ) # Compare images using OpenCL by default print
【文件预览】:
SSIM-PIL-master
----test_src()
--------test__gpu_strategy.py(230B)
--------test__cpu_strategy.py(70B)
--------test_strategies.py(1KB)
--------test___main__.py(825B)
----SSIM_PIL()
--------_gpu_strategy.py(7KB)
--------__init__.py(108B)
--------__main__.py(2KB)
--------_cpu_strategy.py(2KB)
--------CL_SOURCE.c(2KB)
----LICENSE(1KB)
----setup.py(678B)
----README.md(893B)