Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stramek committed Feb 12, 2017
1 parent a6209af commit aef0828
Show file tree
Hide file tree
Showing 58 changed files with 1,423 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,6 @@
*.exe
*.out
*.app

# Build files
build/SISW_Projekt.build
345 changes: 345 additions & 0 deletions SISW_Projekt.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,345 @@
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {

/* Begin PBXBuildFile section */
7E2DF8531E11652200D33A26 /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7E2DF8521E11652200D33A26 /* main.cpp */; };
7E2DF85D1E11802C00D33A26 /* utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7E2DF85B1E11802C00D33A26 /* utils.cpp */; };
7E2DF8601E11847F00D33A26 /* OutputModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7E2DF85E1E11847F00D33A26 /* OutputModel.cpp */; };
7E39B1491E1468B00012E76F /* processUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7E39B1471E1468B00012E76F /* processUtils.cpp */; };
/* End PBXBuildFile section */

/* Begin PBXCopyFilesBuildPhase section */
7E2DF84D1E11652100D33A26 /* CopyFiles */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = /usr/share/man/man1/;
dstSubfolderSpec = 0;
files = (
);
runOnlyForDeploymentPostprocessing = 1;
};
/* End PBXCopyFilesBuildPhase section */

/* Begin PBXFileReference section */
7E2DF84F1E11652200D33A26 /* SISW_Projekt */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = SISW_Projekt; sourceTree = BUILT_PRODUCTS_DIR; };
7E2DF8521E11652200D33A26 /* main.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = "<group>"; };
7E2DF8591E11659600D33A26 /* main.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = main.hpp; sourceTree = "<group>"; };
7E2DF85A1E116C3900D33A26 /* constants.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = constants.hpp; sourceTree = "<group>"; };
7E2DF85B1E11802C00D33A26 /* utils.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = utils.cpp; sourceTree = "<group>"; };
7E2DF85C1E11802C00D33A26 /* utils.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = utils.hpp; sourceTree = "<group>"; };
7E2DF85E1E11847F00D33A26 /* OutputModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = OutputModel.cpp; sourceTree = "<group>"; };
7E2DF85F1E11847F00D33A26 /* OutputModel.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = OutputModel.hpp; sourceTree = "<group>"; };
7E39B1471E1468B00012E76F /* processUtils.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = processUtils.cpp; sourceTree = "<group>"; };
7E39B1481E1468B00012E76F /* processUtils.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = processUtils.hpp; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
7E2DF84C1E11652100D33A26 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
7E2DF8461E11652100D33A26 = {
isa = PBXGroup;
children = (
7E2DF8511E11652200D33A26 /* SISW_Projekt */,
7E2DF8501E11652200D33A26 /* Products */,
);
sourceTree = "<group>";
};
7E2DF8501E11652200D33A26 /* Products */ = {
isa = PBXGroup;
children = (
7E2DF84F1E11652200D33A26 /* SISW_Projekt */,
);
name = Products;
sourceTree = "<group>";
};
7E2DF8511E11652200D33A26 /* SISW_Projekt */ = {
isa = PBXGroup;
children = (
7E2DF8631E12D03400D33A26 /* main */,
7E2DF8621E12D01A00D33A26 /* models */,
7E2DF8611E12CFFC00D33A26 /* utils */,
);
path = SISW_Projekt;
sourceTree = "<group>";
};
7E2DF8611E12CFFC00D33A26 /* utils */ = {
isa = PBXGroup;
children = (
7E2DF85A1E116C3900D33A26 /* constants.hpp */,
7E2DF85C1E11802C00D33A26 /* utils.hpp */,
7E2DF85B1E11802C00D33A26 /* utils.cpp */,
7E39B1471E1468B00012E76F /* processUtils.cpp */,
7E39B1481E1468B00012E76F /* processUtils.hpp */,
);
name = utils;
sourceTree = "<group>";
};
7E2DF8621E12D01A00D33A26 /* models */ = {
isa = PBXGroup;
children = (
7E2DF85E1E11847F00D33A26 /* OutputModel.cpp */,
7E2DF85F1E11847F00D33A26 /* OutputModel.hpp */,
);
name = models;
sourceTree = "<group>";
};
7E2DF8631E12D03400D33A26 /* main */ = {
isa = PBXGroup;
children = (
7E2DF8521E11652200D33A26 /* main.cpp */,
7E2DF8591E11659600D33A26 /* main.hpp */,
);
name = main;
sourceTree = "<group>";
};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
7E2DF84E1E11652100D33A26 /* SISW_Projekt */ = {
isa = PBXNativeTarget;
buildConfigurationList = 7E2DF8561E11652200D33A26 /* Build configuration list for PBXNativeTarget "SISW_Projekt" */;
buildPhases = (
7E2DF84B1E11652100D33A26 /* Sources */,
7E2DF84C1E11652100D33A26 /* Frameworks */,
7E2DF84D1E11652100D33A26 /* CopyFiles */,
);
buildRules = (
);
dependencies = (
);
name = SISW_Projekt;
productName = SISW_Projekt;
productReference = 7E2DF84F1E11652200D33A26 /* SISW_Projekt */;
productType = "com.apple.product-type.tool";
};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
7E2DF8471E11652100D33A26 /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0820;
ORGANIZATIONNAME = "Marcin Stramowski";
TargetAttributes = {
7E2DF84E1E11652100D33A26 = {
CreatedOnToolsVersion = 8.2.1;
DevelopmentTeam = YTTQGQ9BBE;
ProvisioningStyle = Automatic;
};
};
};
buildConfigurationList = 7E2DF84A1E11652100D33A26 /* Build configuration list for PBXProject "SISW_Projekt" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
);
mainGroup = 7E2DF8461E11652100D33A26;
productRefGroup = 7E2DF8501E11652200D33A26 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
7E2DF84E1E11652100D33A26 /* SISW_Projekt */,
);
};
/* End PBXProject section */

/* Begin PBXSourcesBuildPhase section */
7E2DF84B1E11652100D33A26 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
7E2DF8531E11652200D33A26 /* main.cpp in Sources */,
7E39B1491E1468B00012E76F /* processUtils.cpp in Sources */,
7E2DF8601E11847F00D33A26 /* OutputModel.cpp in Sources */,
7E2DF85D1E11802C00D33A26 /* utils.cpp in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */

/* Begin XCBuildConfiguration section */
7E2DF8541E11652200D33A26 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "-";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MACOSX_DEPLOYMENT_TARGET = 10.12;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = macosx;
};
name = Debug;
};
7E2DF8551E11652200D33A26 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "-";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MACOSX_DEPLOYMENT_TARGET = 10.12;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = macosx;
};
name = Release;
};
7E2DF8571E11652200D33A26 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
DEVELOPMENT_TEAM = YTTQGQ9BBE;
HEADER_SEARCH_PATHS = "/usr/local/Cellar/opencv3/HEAD-7dd3723_4/include";
LIBRARY_SEARCH_PATHS = "/usr/local/Cellar/opencv3/HEAD-7dd3723_4/lib";
OTHER_LDFLAGS = (
"-lopencv_core",
"-lopencv_flann",
"-lopencv_imgproc",
"-lopencv_ml",
"-lopencv_photo",
"-lopencv_video",
"-lopencv_imgcodecs",
"-lopencv_videoio",
"-lopencv_highgui",
"-lopencv_features2d",
"-lopencv_calib3d",
"-lopencv_videostab",
"-lopencv_superres",
"-lopencv_objdetect",
"-lopencv_stitching",
"-lopencv_shape",
"-lopencv_xfeatures2d",
);
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Debug;
};
7E2DF8581E11652200D33A26 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
DEVELOPMENT_TEAM = YTTQGQ9BBE;
HEADER_SEARCH_PATHS = "/usr/local/Cellar/opencv3/HEAD-7dd3723_4/include";
LIBRARY_SEARCH_PATHS = "/usr/local/Cellar/opencv3/HEAD-7dd3723_4/lib";
OTHER_LDFLAGS = (
"-lopencv_core",
"-lopencv_flann",
"-lopencv_imgproc",
"-lopencv_ml",
"-lopencv_photo",
"-lopencv_video",
"-lopencv_imgcodecs",
"-lopencv_videoio",
"-lopencv_highgui",
"-lopencv_features2d",
"-lopencv_calib3d",
"-lopencv_videostab",
"-lopencv_superres",
"-lopencv_objdetect",
"-lopencv_stitching",
"-lopencv_shape",
"-lopencv_xfeatures2d",
);
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Release;
};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
7E2DF84A1E11652100D33A26 /* Build configuration list for PBXProject "SISW_Projekt" */ = {
isa = XCConfigurationList;
buildConfigurations = (
7E2DF8541E11652200D33A26 /* Debug */,
7E2DF8551E11652200D33A26 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
7E2DF8561E11652200D33A26 /* Build configuration list for PBXNativeTarget "SISW_Projekt" */ = {
isa = XCConfigurationList;
buildConfigurations = (
7E2DF8571E11652200D33A26 /* Debug */,
7E2DF8581E11652200D33A26 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 7E2DF8471E11652100D33A26 /* Project object */;
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<Bucket
type = "1"
version = "2.0">
</Bucket>
Loading

0 comments on commit aef0828

Please sign in to comment.