corefiles.cmake 969 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. SET(nice_segmentation_SRC
  2. ./RSGraphBased.cpp
  3. ./RegionSegmentationMethod.cpp
  4. ./RSMeanShift.cpp
  5. ./RegionGraph.cpp
  6. ./edisonSegm/RAList.cpp
  7. ./edisonSegm/msImageProcessor.cpp
  8. ./edisonSegm/msSys.cpp
  9. ./edisonSegm/rlist.cpp
  10. ./edisonSegm/ms.cpp
  11. ./SLIC/SLIC.cpp
  12. ./math/NodeCentricRepMatrix.cpp
  13. ./RSMarkovCluster.cpp
  14. ./RSSlic.cpp
  15. ./RSCache.cpp
  16. )
  17. SET(nice_segmentation_HDR
  18. ./RegionSegmentationMethod.h
  19. ./GenericRegionSegmentationMethodSelection.h
  20. ./RSCache.h
  21. ./RSSlic.h
  22. ./RSMeanShift.h
  23. ./RSMarkovCluster.h
  24. ./RSGraphBased.h
  25. ./edisonSegm/RAList.h
  26. ./edisonSegm/msSys.h
  27. ./edisonSegm/ms.h
  28. ./edisonSegm/tdef.h
  29. ./edisonSegm/msImageProcessor.h
  30. ./edisonSegm/rlist.h
  31. ./SLIC/SLIC.h
  32. ./math/NodeCentricRepMatrix.h
  33. ./felzenszwalb/imconv.h
  34. ./felzenszwalb/segment-graph.h
  35. ./felzenszwalb/filter.h
  36. ./felzenszwalb/pnmfile.h
  37. ./felzenszwalb/segment-image.h
  38. ./felzenszwalb/image.h
  39. ./felzenszwalb/misc.h
  40. ./felzenszwalb/imutil.h
  41. ./felzenszwalb/disjoint-set.h
  42. ./felzenszwalb/convolve.h
  43. ./RegionGraph.h
  44. )