此程序为基于图的图像分割提供了更新版本,支持彩色图像。使用方法如下:

  1. 编译:GraphSeg_compile
  2. 读取图像:img = imread('图片/rice.jpg')
  3. 分割:[L, 轮廓] = graph_segment(img, 1, 3, 100)
  4. 显示结果:
  5. 原始图像:imshow(img), title('原始图像')
  6. 分割结果:imshow(label2rgb(L)), title('分段结果')