├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── FindEigen3.cmake ├── GrabCut.h ├── GrabCut.hpp ├── GrabCutExample.cpp ├── GrabCutInteractorStyle.h ├── README.md ├── block.h ├── data ├── soldier.png ├── soldier_selection.fbmask └── soldier_selection.png ├── form.cpp ├── form.h ├── form.ui ├── legacy.cxx ├── vtkMemberFunctionCommand.h └── working.cxx /.gitignore: -------------------------------------------------------------------------------- 1 | *.user 2 | *~ -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddoria/GrabCut/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddoria/GrabCut/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /FindEigen3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddoria/GrabCut/HEAD/FindEigen3.cmake -------------------------------------------------------------------------------- /GrabCut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddoria/GrabCut/HEAD/GrabCut.h -------------------------------------------------------------------------------- /GrabCut.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddoria/GrabCut/HEAD/GrabCut.hpp -------------------------------------------------------------------------------- /GrabCutExample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddoria/GrabCut/HEAD/GrabCutExample.cpp -------------------------------------------------------------------------------- /GrabCutInteractorStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddoria/GrabCut/HEAD/GrabCutInteractorStyle.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddoria/GrabCut/HEAD/README.md -------------------------------------------------------------------------------- /block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddoria/GrabCut/HEAD/block.h -------------------------------------------------------------------------------- /data/soldier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddoria/GrabCut/HEAD/data/soldier.png -------------------------------------------------------------------------------- /data/soldier_selection.fbmask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddoria/GrabCut/HEAD/data/soldier_selection.fbmask -------------------------------------------------------------------------------- /data/soldier_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddoria/GrabCut/HEAD/data/soldier_selection.png -------------------------------------------------------------------------------- /form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddoria/GrabCut/HEAD/form.cpp -------------------------------------------------------------------------------- /form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddoria/GrabCut/HEAD/form.h -------------------------------------------------------------------------------- /form.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddoria/GrabCut/HEAD/form.ui -------------------------------------------------------------------------------- /legacy.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddoria/GrabCut/HEAD/legacy.cxx -------------------------------------------------------------------------------- /vtkMemberFunctionCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddoria/GrabCut/HEAD/vtkMemberFunctionCommand.h -------------------------------------------------------------------------------- /working.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddoria/GrabCut/HEAD/working.cxx --------------------------------------------------------------------------------