文件名称:SobelFilterHPC:Sobel滤镜在.pgm图像上的实现
文件大小:46.26MB
文件格式:ZIP
更新时间:2024-04-05 21:07:25
hpc openmp image-processing edge-detection software-optimisation
SobelFilterHPC Sobel滤波器或Sobel运算符是用于边缘检测的内核卷积算法。 它基于用小滤波器垂直和水平对图像进行卷积,然后使用欧氏距离合并两个输出。 在该项目中,主要目标是比较使用OpenMP并行化计算时和不使用并行化时程序的执行时间。 使用命令完成分析: $perf stat ./sobel_filter images/img0001.pgm images/img0001_new.pgm 比较结果如下所示:
【文件预览】:
SobelFilterHPC-main
----pgm.h(562B)
----images()
--------img0008.pgm(6MB)
--------img0009.pgm(6MB)
--------img0007.pgm(6MB)
--------img0004.pgm(6MB)
--------img0002.pgm(6MB)
--------img0003.pgm(6MB)
--------img0011.pgm(6MB)
--------img0001.pgm(6MB)
--------img0010.pgm(6MB)
--------lena.pgm(256KB)
--------img0012.pgm(6MB)
--------img0005.pgm(6MB)
--------img0006.pgm(6MB)
----sobel_filter.c(2KB)
----LICENSE(1KB)
----pgm.c(2KB)
----README.md(608B)
----Makefile(1KB)