├── .gitignore ├── README.md ├── Refooormat.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── Retargeting ├── AppDelegate.h ├── AppDelegate.m ├── CVXGenRangeSolver25x25 │ ├── CVXGenRangeSolver25x25+Ldl.h │ ├── CVXGenRangeSolver25x25+Ldl.m │ ├── CVXGenRangeSolver25x25+MatrixSupport.h │ ├── CVXGenRangeSolver25x25+MatrixSupport.m │ ├── CVXGenRangeSolver25x25+TestSolver.h │ ├── CVXGenRangeSolver25x25+TestSolver.m │ ├── CVXGenRangeSolver25x25+Util.h │ ├── CVXGenRangeSolver25x25+Util.m │ ├── CVXGenRangeSolver25x25.h │ └── CVXGenRangeSolver25x25.m ├── Controller │ ├── ExportRenderer.h │ ├── ExportRenderer.m │ ├── LibraryViewController.h │ ├── LibraryViewController.m │ ├── ProjectController.h │ ├── ProjectController.m │ ├── RatioPicker.h │ ├── RatioPicker.m │ ├── RetargetingViewController.h │ ├── RetargetingViewController.m │ ├── SettingsViewController.h │ ├── SettingsViewController.m │ ├── WebViewController.h │ └── WebViewController.m ├── Documentation │ ├── help.html │ ├── info.html │ ├── jquery.js │ └── resize.js ├── Helper │ ├── DeviceType.h │ ├── DeviceType.m │ ├── Grid.h │ ├── Grid.m │ ├── LayoutHelper.h │ ├── LayoutHelper.m │ ├── OpenGLCommon.h │ ├── RetargetingContext.h │ ├── RetargetingContext.m │ ├── Types.h │ ├── UIApplication+DeviceSize.h │ └── UIApplication+DeviceSize.m ├── Icons │ ├── apple-touch-icon-114x114-precomposed.png │ ├── apple-touch-icon-120x120-precomposed.png │ ├── apple-touch-icon-144x144-precomposed.png │ ├── apple-touch-icon-152x152-precomposed.png │ ├── apple-touch-icon-57x57-precomposed.png │ ├── apple-touch-icon-72x72-precomposed.png │ └── apple-touch-icon-76x76-precomposed.png ├── Images │ ├── LinenBackground.png │ ├── LinenBackground@2x.png │ ├── editor.jpg │ └── gallery.jpg ├── LaunchImages │ ├── Default-568h@2x.png │ ├── Default-Landscape@2x~ipad-full.png │ ├── Default-Landscape@2x~ipad.png │ ├── Default-Landscape~ipad-full.png │ ├── Default-Landscape~ipad.png │ ├── Default-Portrait@2x~ipad-full.png │ ├── Default-Portrait@2x~ipad.png │ ├── Default-Portrait~ipad-full.png │ ├── Default-Portrait~ipad.png │ ├── Default.png │ └── Default@2x.png ├── Model │ ├── Project.h │ ├── Project.m │ ├── RetargetingImage.h │ ├── RetargetingImage.m │ ├── RetargetingSolver.h │ ├── RetargetingSolver.m │ ├── RetargetingState.h │ ├── RetargetingState.m │ ├── RetargetingTask.h │ └── RetargetingTask.m ├── Numerics │ ├── FastCCSMatrix.h │ ├── FastCCSMatrix.m │ ├── Matrix.h │ ├── Matrix.m │ ├── SparseMatrix.h │ └── SparseMatrix.m ├── Refooormat-Info.plist ├── Refooormat-Prefix.pch ├── ToolbarIcons │ ├── combined.png │ ├── combined@2x.png │ ├── eraser.png │ ├── eraser@2x.png │ ├── help.png │ ├── help@2x.png │ ├── hide.png │ ├── hide@2x.png │ ├── info.png │ ├── info@2x.png │ ├── library.png │ ├── library@2x.png │ ├── pen.png │ ├── pen@2x.png │ ├── ratio.png │ ├── ratio@2x.png │ ├── settings.png │ ├── settings@2x.png │ ├── show.png │ ├── show@2x.png │ ├── split.png │ ├── split@2x.png │ ├── wizard.png │ └── wizard@2x.png ├── Videos │ ├── Refooormat-Introduction-Poster.jpg │ ├── Refooormat-Introduction.mp4 │ ├── Refooormat-Technology-Poster.jpg │ └── Refooormat-Technology.mp4 ├── View │ ├── CombinedContainerView.h │ ├── CombinedContainerView.m │ ├── CombinedPictureView.h │ ├── CombinedPictureView.m │ ├── CombinedSaliencyView.h │ ├── CombinedSaliencyView.m │ ├── CombinedView.h │ ├── CombinedView.m │ ├── GalleryView.h │ ├── GalleryView.m │ ├── LibraryToolbar.h │ ├── LibraryToolbar.m │ ├── PictureFrameView.h │ ├── PictureFrameView.m │ ├── RetargetingToolbar.h │ ├── RetargetingToolbar.m │ ├── RetargetingView.h │ ├── RetargetingView.m │ ├── RoundedRectView.h │ ├── RoundedRectView.m │ ├── SaliencyImageView.h │ ├── SaliencyImageView.m │ ├── SplitContainerView.h │ ├── SplitContainerView.m │ ├── ThumbnailView.h │ ├── ThumbnailView.m │ ├── WarpImageView.h │ └── WarpImageView.m ├── en.lproj │ └── InfoPlist.strings └── main.m ├── RetargetingTests ├── MatrixTests.h ├── MatrixTests.m ├── RefooormatTests-Info.plist ├── RetargetingTests.h ├── RetargetingTests.m ├── SolverTests.h ├── SolverTests.m └── en.lproj │ └── InfoPlist.strings └── license.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/README.md -------------------------------------------------------------------------------- /Refooormat.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Refooormat.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Refooormat.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Refooormat.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Retargeting/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/AppDelegate.h -------------------------------------------------------------------------------- /Retargeting/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/AppDelegate.m -------------------------------------------------------------------------------- /Retargeting/CVXGenRangeSolver25x25/CVXGenRangeSolver25x25+Ldl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/CVXGenRangeSolver25x25/CVXGenRangeSolver25x25+Ldl.h -------------------------------------------------------------------------------- /Retargeting/CVXGenRangeSolver25x25/CVXGenRangeSolver25x25+Ldl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/CVXGenRangeSolver25x25/CVXGenRangeSolver25x25+Ldl.m -------------------------------------------------------------------------------- /Retargeting/CVXGenRangeSolver25x25/CVXGenRangeSolver25x25+MatrixSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/CVXGenRangeSolver25x25/CVXGenRangeSolver25x25+MatrixSupport.h -------------------------------------------------------------------------------- /Retargeting/CVXGenRangeSolver25x25/CVXGenRangeSolver25x25+MatrixSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/CVXGenRangeSolver25x25/CVXGenRangeSolver25x25+MatrixSupport.m -------------------------------------------------------------------------------- /Retargeting/CVXGenRangeSolver25x25/CVXGenRangeSolver25x25+TestSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/CVXGenRangeSolver25x25/CVXGenRangeSolver25x25+TestSolver.h -------------------------------------------------------------------------------- /Retargeting/CVXGenRangeSolver25x25/CVXGenRangeSolver25x25+TestSolver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/CVXGenRangeSolver25x25/CVXGenRangeSolver25x25+TestSolver.m -------------------------------------------------------------------------------- /Retargeting/CVXGenRangeSolver25x25/CVXGenRangeSolver25x25+Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/CVXGenRangeSolver25x25/CVXGenRangeSolver25x25+Util.h -------------------------------------------------------------------------------- /Retargeting/CVXGenRangeSolver25x25/CVXGenRangeSolver25x25+Util.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/CVXGenRangeSolver25x25/CVXGenRangeSolver25x25+Util.m -------------------------------------------------------------------------------- /Retargeting/CVXGenRangeSolver25x25/CVXGenRangeSolver25x25.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/CVXGenRangeSolver25x25/CVXGenRangeSolver25x25.h -------------------------------------------------------------------------------- /Retargeting/CVXGenRangeSolver25x25/CVXGenRangeSolver25x25.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/CVXGenRangeSolver25x25/CVXGenRangeSolver25x25.m -------------------------------------------------------------------------------- /Retargeting/Controller/ExportRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Controller/ExportRenderer.h -------------------------------------------------------------------------------- /Retargeting/Controller/ExportRenderer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Controller/ExportRenderer.m -------------------------------------------------------------------------------- /Retargeting/Controller/LibraryViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Controller/LibraryViewController.h -------------------------------------------------------------------------------- /Retargeting/Controller/LibraryViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Controller/LibraryViewController.m -------------------------------------------------------------------------------- /Retargeting/Controller/ProjectController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Controller/ProjectController.h -------------------------------------------------------------------------------- /Retargeting/Controller/ProjectController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Controller/ProjectController.m -------------------------------------------------------------------------------- /Retargeting/Controller/RatioPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Controller/RatioPicker.h -------------------------------------------------------------------------------- /Retargeting/Controller/RatioPicker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Controller/RatioPicker.m -------------------------------------------------------------------------------- /Retargeting/Controller/RetargetingViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Controller/RetargetingViewController.h -------------------------------------------------------------------------------- /Retargeting/Controller/RetargetingViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Controller/RetargetingViewController.m -------------------------------------------------------------------------------- /Retargeting/Controller/SettingsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Controller/SettingsViewController.h -------------------------------------------------------------------------------- /Retargeting/Controller/SettingsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Controller/SettingsViewController.m -------------------------------------------------------------------------------- /Retargeting/Controller/WebViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Controller/WebViewController.h -------------------------------------------------------------------------------- /Retargeting/Controller/WebViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Controller/WebViewController.m -------------------------------------------------------------------------------- /Retargeting/Documentation/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Documentation/help.html -------------------------------------------------------------------------------- /Retargeting/Documentation/info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Documentation/info.html -------------------------------------------------------------------------------- /Retargeting/Documentation/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Documentation/jquery.js -------------------------------------------------------------------------------- /Retargeting/Documentation/resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Documentation/resize.js -------------------------------------------------------------------------------- /Retargeting/Helper/DeviceType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Helper/DeviceType.h -------------------------------------------------------------------------------- /Retargeting/Helper/DeviceType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Helper/DeviceType.m -------------------------------------------------------------------------------- /Retargeting/Helper/Grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Helper/Grid.h -------------------------------------------------------------------------------- /Retargeting/Helper/Grid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Helper/Grid.m -------------------------------------------------------------------------------- /Retargeting/Helper/LayoutHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Helper/LayoutHelper.h -------------------------------------------------------------------------------- /Retargeting/Helper/LayoutHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Helper/LayoutHelper.m -------------------------------------------------------------------------------- /Retargeting/Helper/OpenGLCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Helper/OpenGLCommon.h -------------------------------------------------------------------------------- /Retargeting/Helper/RetargetingContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Helper/RetargetingContext.h -------------------------------------------------------------------------------- /Retargeting/Helper/RetargetingContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Helper/RetargetingContext.m -------------------------------------------------------------------------------- /Retargeting/Helper/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Helper/Types.h -------------------------------------------------------------------------------- /Retargeting/Helper/UIApplication+DeviceSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Helper/UIApplication+DeviceSize.h -------------------------------------------------------------------------------- /Retargeting/Helper/UIApplication+DeviceSize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Helper/UIApplication+DeviceSize.m -------------------------------------------------------------------------------- /Retargeting/Icons/apple-touch-icon-114x114-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Icons/apple-touch-icon-114x114-precomposed.png -------------------------------------------------------------------------------- /Retargeting/Icons/apple-touch-icon-120x120-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Icons/apple-touch-icon-120x120-precomposed.png -------------------------------------------------------------------------------- /Retargeting/Icons/apple-touch-icon-144x144-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Icons/apple-touch-icon-144x144-precomposed.png -------------------------------------------------------------------------------- /Retargeting/Icons/apple-touch-icon-152x152-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Icons/apple-touch-icon-152x152-precomposed.png -------------------------------------------------------------------------------- /Retargeting/Icons/apple-touch-icon-57x57-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Icons/apple-touch-icon-57x57-precomposed.png -------------------------------------------------------------------------------- /Retargeting/Icons/apple-touch-icon-72x72-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Icons/apple-touch-icon-72x72-precomposed.png -------------------------------------------------------------------------------- /Retargeting/Icons/apple-touch-icon-76x76-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Icons/apple-touch-icon-76x76-precomposed.png -------------------------------------------------------------------------------- /Retargeting/Images/LinenBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Images/LinenBackground.png -------------------------------------------------------------------------------- /Retargeting/Images/LinenBackground@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Images/LinenBackground@2x.png -------------------------------------------------------------------------------- /Retargeting/Images/editor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Images/editor.jpg -------------------------------------------------------------------------------- /Retargeting/Images/gallery.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Images/gallery.jpg -------------------------------------------------------------------------------- /Retargeting/LaunchImages/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/LaunchImages/Default-568h@2x.png -------------------------------------------------------------------------------- /Retargeting/LaunchImages/Default-Landscape@2x~ipad-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/LaunchImages/Default-Landscape@2x~ipad-full.png -------------------------------------------------------------------------------- /Retargeting/LaunchImages/Default-Landscape@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/LaunchImages/Default-Landscape@2x~ipad.png -------------------------------------------------------------------------------- /Retargeting/LaunchImages/Default-Landscape~ipad-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/LaunchImages/Default-Landscape~ipad-full.png -------------------------------------------------------------------------------- /Retargeting/LaunchImages/Default-Landscape~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/LaunchImages/Default-Landscape~ipad.png -------------------------------------------------------------------------------- /Retargeting/LaunchImages/Default-Portrait@2x~ipad-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/LaunchImages/Default-Portrait@2x~ipad-full.png -------------------------------------------------------------------------------- /Retargeting/LaunchImages/Default-Portrait@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/LaunchImages/Default-Portrait@2x~ipad.png -------------------------------------------------------------------------------- /Retargeting/LaunchImages/Default-Portrait~ipad-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/LaunchImages/Default-Portrait~ipad-full.png -------------------------------------------------------------------------------- /Retargeting/LaunchImages/Default-Portrait~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/LaunchImages/Default-Portrait~ipad.png -------------------------------------------------------------------------------- /Retargeting/LaunchImages/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/LaunchImages/Default.png -------------------------------------------------------------------------------- /Retargeting/LaunchImages/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/LaunchImages/Default@2x.png -------------------------------------------------------------------------------- /Retargeting/Model/Project.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Model/Project.h -------------------------------------------------------------------------------- /Retargeting/Model/Project.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Model/Project.m -------------------------------------------------------------------------------- /Retargeting/Model/RetargetingImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Model/RetargetingImage.h -------------------------------------------------------------------------------- /Retargeting/Model/RetargetingImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Model/RetargetingImage.m -------------------------------------------------------------------------------- /Retargeting/Model/RetargetingSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Model/RetargetingSolver.h -------------------------------------------------------------------------------- /Retargeting/Model/RetargetingSolver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Model/RetargetingSolver.m -------------------------------------------------------------------------------- /Retargeting/Model/RetargetingState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Model/RetargetingState.h -------------------------------------------------------------------------------- /Retargeting/Model/RetargetingState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Model/RetargetingState.m -------------------------------------------------------------------------------- /Retargeting/Model/RetargetingTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Model/RetargetingTask.h -------------------------------------------------------------------------------- /Retargeting/Model/RetargetingTask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Model/RetargetingTask.m -------------------------------------------------------------------------------- /Retargeting/Numerics/FastCCSMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Numerics/FastCCSMatrix.h -------------------------------------------------------------------------------- /Retargeting/Numerics/FastCCSMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Numerics/FastCCSMatrix.m -------------------------------------------------------------------------------- /Retargeting/Numerics/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Numerics/Matrix.h -------------------------------------------------------------------------------- /Retargeting/Numerics/Matrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Numerics/Matrix.m -------------------------------------------------------------------------------- /Retargeting/Numerics/SparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Numerics/SparseMatrix.h -------------------------------------------------------------------------------- /Retargeting/Numerics/SparseMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Numerics/SparseMatrix.m -------------------------------------------------------------------------------- /Retargeting/Refooormat-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Refooormat-Info.plist -------------------------------------------------------------------------------- /Retargeting/Refooormat-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Refooormat-Prefix.pch -------------------------------------------------------------------------------- /Retargeting/ToolbarIcons/combined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/ToolbarIcons/combined.png -------------------------------------------------------------------------------- /Retargeting/ToolbarIcons/combined@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/ToolbarIcons/combined@2x.png -------------------------------------------------------------------------------- /Retargeting/ToolbarIcons/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/ToolbarIcons/eraser.png -------------------------------------------------------------------------------- /Retargeting/ToolbarIcons/eraser@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/ToolbarIcons/eraser@2x.png -------------------------------------------------------------------------------- /Retargeting/ToolbarIcons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/ToolbarIcons/help.png -------------------------------------------------------------------------------- /Retargeting/ToolbarIcons/help@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/ToolbarIcons/help@2x.png -------------------------------------------------------------------------------- /Retargeting/ToolbarIcons/hide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/ToolbarIcons/hide.png -------------------------------------------------------------------------------- /Retargeting/ToolbarIcons/hide@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/ToolbarIcons/hide@2x.png -------------------------------------------------------------------------------- /Retargeting/ToolbarIcons/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/ToolbarIcons/info.png -------------------------------------------------------------------------------- /Retargeting/ToolbarIcons/info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/ToolbarIcons/info@2x.png -------------------------------------------------------------------------------- /Retargeting/ToolbarIcons/library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/ToolbarIcons/library.png -------------------------------------------------------------------------------- /Retargeting/ToolbarIcons/library@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/ToolbarIcons/library@2x.png -------------------------------------------------------------------------------- /Retargeting/ToolbarIcons/pen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/ToolbarIcons/pen.png -------------------------------------------------------------------------------- /Retargeting/ToolbarIcons/pen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/ToolbarIcons/pen@2x.png -------------------------------------------------------------------------------- /Retargeting/ToolbarIcons/ratio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/ToolbarIcons/ratio.png -------------------------------------------------------------------------------- /Retargeting/ToolbarIcons/ratio@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/ToolbarIcons/ratio@2x.png -------------------------------------------------------------------------------- /Retargeting/ToolbarIcons/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/ToolbarIcons/settings.png -------------------------------------------------------------------------------- /Retargeting/ToolbarIcons/settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/ToolbarIcons/settings@2x.png -------------------------------------------------------------------------------- /Retargeting/ToolbarIcons/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/ToolbarIcons/show.png -------------------------------------------------------------------------------- /Retargeting/ToolbarIcons/show@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/ToolbarIcons/show@2x.png -------------------------------------------------------------------------------- /Retargeting/ToolbarIcons/split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/ToolbarIcons/split.png -------------------------------------------------------------------------------- /Retargeting/ToolbarIcons/split@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/ToolbarIcons/split@2x.png -------------------------------------------------------------------------------- /Retargeting/ToolbarIcons/wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/ToolbarIcons/wizard.png -------------------------------------------------------------------------------- /Retargeting/ToolbarIcons/wizard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/ToolbarIcons/wizard@2x.png -------------------------------------------------------------------------------- /Retargeting/Videos/Refooormat-Introduction-Poster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Videos/Refooormat-Introduction-Poster.jpg -------------------------------------------------------------------------------- /Retargeting/Videos/Refooormat-Introduction.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Videos/Refooormat-Introduction.mp4 -------------------------------------------------------------------------------- /Retargeting/Videos/Refooormat-Technology-Poster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Videos/Refooormat-Technology-Poster.jpg -------------------------------------------------------------------------------- /Retargeting/Videos/Refooormat-Technology.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/Videos/Refooormat-Technology.mp4 -------------------------------------------------------------------------------- /Retargeting/View/CombinedContainerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/View/CombinedContainerView.h -------------------------------------------------------------------------------- /Retargeting/View/CombinedContainerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/View/CombinedContainerView.m -------------------------------------------------------------------------------- /Retargeting/View/CombinedPictureView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/View/CombinedPictureView.h -------------------------------------------------------------------------------- /Retargeting/View/CombinedPictureView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/View/CombinedPictureView.m -------------------------------------------------------------------------------- /Retargeting/View/CombinedSaliencyView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/View/CombinedSaliencyView.h -------------------------------------------------------------------------------- /Retargeting/View/CombinedSaliencyView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/View/CombinedSaliencyView.m -------------------------------------------------------------------------------- /Retargeting/View/CombinedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/View/CombinedView.h -------------------------------------------------------------------------------- /Retargeting/View/CombinedView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/View/CombinedView.m -------------------------------------------------------------------------------- /Retargeting/View/GalleryView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/View/GalleryView.h -------------------------------------------------------------------------------- /Retargeting/View/GalleryView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/View/GalleryView.m -------------------------------------------------------------------------------- /Retargeting/View/LibraryToolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/View/LibraryToolbar.h -------------------------------------------------------------------------------- /Retargeting/View/LibraryToolbar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/View/LibraryToolbar.m -------------------------------------------------------------------------------- /Retargeting/View/PictureFrameView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/View/PictureFrameView.h -------------------------------------------------------------------------------- /Retargeting/View/PictureFrameView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/View/PictureFrameView.m -------------------------------------------------------------------------------- /Retargeting/View/RetargetingToolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/View/RetargetingToolbar.h -------------------------------------------------------------------------------- /Retargeting/View/RetargetingToolbar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/View/RetargetingToolbar.m -------------------------------------------------------------------------------- /Retargeting/View/RetargetingView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/View/RetargetingView.h -------------------------------------------------------------------------------- /Retargeting/View/RetargetingView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/View/RetargetingView.m -------------------------------------------------------------------------------- /Retargeting/View/RoundedRectView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/View/RoundedRectView.h -------------------------------------------------------------------------------- /Retargeting/View/RoundedRectView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/View/RoundedRectView.m -------------------------------------------------------------------------------- /Retargeting/View/SaliencyImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/View/SaliencyImageView.h -------------------------------------------------------------------------------- /Retargeting/View/SaliencyImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/View/SaliencyImageView.m -------------------------------------------------------------------------------- /Retargeting/View/SplitContainerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/View/SplitContainerView.h -------------------------------------------------------------------------------- /Retargeting/View/SplitContainerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/View/SplitContainerView.m -------------------------------------------------------------------------------- /Retargeting/View/ThumbnailView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/View/ThumbnailView.h -------------------------------------------------------------------------------- /Retargeting/View/ThumbnailView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/View/ThumbnailView.m -------------------------------------------------------------------------------- /Retargeting/View/WarpImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/View/WarpImageView.h -------------------------------------------------------------------------------- /Retargeting/View/WarpImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/View/WarpImageView.m -------------------------------------------------------------------------------- /Retargeting/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Retargeting/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/Retargeting/main.m -------------------------------------------------------------------------------- /RetargetingTests/MatrixTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/RetargetingTests/MatrixTests.h -------------------------------------------------------------------------------- /RetargetingTests/MatrixTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/RetargetingTests/MatrixTests.m -------------------------------------------------------------------------------- /RetargetingTests/RefooormatTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/RetargetingTests/RefooormatTests-Info.plist -------------------------------------------------------------------------------- /RetargetingTests/RetargetingTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/RetargetingTests/RetargetingTests.h -------------------------------------------------------------------------------- /RetargetingTests/RetargetingTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/RetargetingTests/RetargetingTests.m -------------------------------------------------------------------------------- /RetargetingTests/SolverTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/RetargetingTests/SolverTests.h -------------------------------------------------------------------------------- /RetargetingTests/SolverTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/RetargetingTests/SolverTests.m -------------------------------------------------------------------------------- /RetargetingTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafdan/retargeting/HEAD/license.txt --------------------------------------------------------------------------------