细化算法的C++代码(EVG-thin)

C++ code of thinning algorithm (EVG-thin)

我正在尝试使用此 program,它实现了基于像素的 "thinning" 算法的扩展,可找到位图的骨架。

自述文件中告诉我应该先执行 'make' 命令,然后再执行“./test -image-file test1.pgm”,但我在'make'阶段。我猜 ImageHelper.hh 文件有问题,但我不明白到底是什么。谁能帮我解决这个问题?

sourcecode is here

我发现了问题。我需要添加以下内容:

#include <string.h>
#include <stdlib.h>

到test.cc和ImageHelper.cc