diff --git a/VideoExampleSlitscan/bin/data/3.Mousetraps.mp4 b/VideoExampleSlitscan/bin/data/3.Mousetraps.mp4 deleted file mode 100644 index d69d176..0000000 --- a/VideoExampleSlitscan/bin/data/3.Mousetraps.mp4 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4793245ad33fa904ade435aa1173366e2d054c084bcf726cb59cd574f5e530a7 -size 43194499 diff --git a/VideoExampleSlitscan/config.make b/VideoExampleSlitscan/config.make deleted file mode 100644 index df10f64..0000000 --- a/VideoExampleSlitscan/config.make +++ /dev/null @@ -1,142 +0,0 @@ -################################################################################ -# CONFIGURE PROJECT MAKEFILE (optional) -# This file is where we make project specific configurations. -################################################################################ - -################################################################################ -# OF ROOT -# The location of your root openFrameworks installation -# (default) OF_ROOT = ../../.. -################################################################################ -# OF_ROOT = ../../.. - -################################################################################ -# PROJECT ROOT -# The location of the project - a starting place for searching for files -# (default) PROJECT_ROOT = . (this directory) -# -################################################################################ -# PROJECT_ROOT = . - -################################################################################ -# PROJECT SPECIFIC CHECKS -# This is a project defined section to create internal makefile flags to -# conditionally enable or disable the addition of various features within -# this makefile. For instance, if you want to make changes based on whether -# GTK is installed, one might test that here and create a variable to check. -################################################################################ -# None - -################################################################################ -# PROJECT EXTERNAL SOURCE PATHS -# These are fully qualified paths that are not within the PROJECT_ROOT folder. -# Like source folders in the PROJECT_ROOT, these paths are subject to -# exlclusion via the PROJECT_EXLCUSIONS list. -# -# (default) PROJECT_EXTERNAL_SOURCE_PATHS = (blank) -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_EXTERNAL_SOURCE_PATHS = - -################################################################################ -# PROJECT EXCLUSIONS -# These makefiles assume that all folders in your current project directory -# and any listed in the PROJECT_EXTERNAL_SOURCH_PATHS are are valid locations -# to look for source code. The any folders or files that match any of the -# items in the PROJECT_EXCLUSIONS list below will be ignored. -# -# Each item in the PROJECT_EXCLUSIONS list will be treated as a complete -# string unless teh user adds a wildcard (%) operator to match subdirectories. -# GNU make only allows one wildcard for matching. The second wildcard (%) is -# treated literally. -# -# (default) PROJECT_EXCLUSIONS = (blank) -# -# Will automatically exclude the following: -# -# $(PROJECT_ROOT)/bin% -# $(PROJECT_ROOT)/obj% -# $(PROJECT_ROOT)/%.xcodeproj -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_EXCLUSIONS = - -################################################################################ -# PROJECT LINKER FLAGS -# These flags will be sent to the linker when compiling the executable. -# -# (default) PROJECT_LDFLAGS = -Wl,-rpath=./libs -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ - -# Currently, shared libraries that are needed are copied to the -# $(PROJECT_ROOT)/bin/libs directory. The following LDFLAGS tell the linker to -# add a runtime path to search for those shared libraries, since they aren't -# incorporated directly into the final executable application binary. -# TODO: should this be a default setting? -# PROJECT_LDFLAGS=-Wl,-rpath=./libs - -################################################################################ -# PROJECT DEFINES -# Create a space-delimited list of DEFINES. The list will be converted into -# CFLAGS with the "-D" flag later in the makefile. -# -# (default) PROJECT_DEFINES = (blank) -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_DEFINES = - -################################################################################ -# PROJECT CFLAGS -# This is a list of fully qualified CFLAGS required when compiling for this -# project. These CFLAGS will be used IN ADDITION TO the PLATFORM_CFLAGS -# defined in your platform specific core configuration files. These flags are -# presented to the compiler BEFORE the PROJECT_OPTIMIZATION_CFLAGS below. -# -# (default) PROJECT_CFLAGS = (blank) -# -# Note: Before adding PROJECT_CFLAGS, note that the PLATFORM_CFLAGS defined in -# your platform specific configuration file will be applied by default and -# further flags here may not be needed. -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_CFLAGS = - -################################################################################ -# PROJECT OPTIMIZATION CFLAGS -# These are lists of CFLAGS that are target-specific. While any flags could -# be conditionally added, they are usually limited to optimization flags. -# These flags are added BEFORE the PROJECT_CFLAGS. -# -# PROJECT_OPTIMIZATION_CFLAGS_RELEASE flags are only applied to RELEASE targets. -# -# (default) PROJECT_OPTIMIZATION_CFLAGS_RELEASE = (blank) -# -# PROJECT_OPTIMIZATION_CFLAGS_DEBUG flags are only applied to DEBUG targets. -# -# (default) PROJECT_OPTIMIZATION_CFLAGS_DEBUG = (blank) -# -# Note: Before adding PROJECT_OPTIMIZATION_CFLAGS, please note that the -# PLATFORM_OPTIMIZATION_CFLAGS defined in your platform specific configuration -# file will be applied by default and further optimization flags here may not -# be needed. -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_OPTIMIZATION_CFLAGS_RELEASE = -# PROJECT_OPTIMIZATION_CFLAGS_DEBUG = - -################################################################################ -# PROJECT COMPILERS -# Custom compilers can be set for CC and CXX -# (default) PROJECT_CXX = (blank) -# (default) PROJECT_CC = (blank) -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_CXX = -# PROJECT_CC = diff --git a/VideoExampleSlitscan/openFrameworks-Info.plist b/VideoExampleSlitscan/openFrameworks-Info.plist deleted file mode 100644 index 8d64d2b..0000000 --- a/VideoExampleSlitscan/openFrameworks-Info.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - cc.openFrameworks.ofapp - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - APPL - CFBundleSignature - ???? - CFBundleVersion - 1.0 - CFBundleIconFile - ${ICON} - - diff --git a/VideoExampleSlitscan/src/main.cpp b/VideoExampleSlitscan/src/main.cpp deleted file mode 100644 index e57370b..0000000 --- a/VideoExampleSlitscan/src/main.cpp +++ /dev/null @@ -1,13 +0,0 @@ -#include "ofMain.h" -#include "ofApp.h" - -//======================================================================== -int main( ){ - ofSetupOpenGL(1024,768,OF_WINDOW); // <-------- setup the GL context - - // this kicks off the running of my app - // can be OF_WINDOW or OF_FULLSCREEN - // pass in width and height too: - ofRunApp(new ofApp()); - -} diff --git a/VideoExampleSlitscan/src/ofApp.cpp b/VideoExampleSlitscan/src/ofApp.cpp deleted file mode 100644 index af69e5b..0000000 --- a/VideoExampleSlitscan/src/ofApp.cpp +++ /dev/null @@ -1,189 +0,0 @@ -#include "ofApp.h" - -//-------------------------------------------------------------- -void ofApp::setup(){ - player.load("3.Mousetraps.mp4"); - player.play(); - buttonColor = ofColor(255, 255, 255, 255); - ofSetFrameRate(120); -} - -//-------------------------------------------------------------- -void ofApp::update(){ - player.update(); - if(player.isFrameNew()){ - frames.push_front(player.getPixels()); - if(frames.size() > N ){ //if frames are greater than our max number - frames.pop_back(); //remove the last frame from the deque - } - } - //if our frames deque is not empty - if(!frames.empty()){ - //and imagePixels is not allocated - if(!imagePixels.isAllocated()){ - imagePixels = frames[0]; - } - - int w = frames[0].getWidth(); - int h = frames[0].getHeight(); - - for (int y=0; y< h; y++) { - for (int x=0; x < w; x++) { - //get the pixel color from our slit and assign to variable col - ofColor col = getSlitPixelColor(x,y); - - imagePixels.setColor(x, y, col); - } - } - image.setFromPixels(imagePixels); - } -} - -//-------------------------------------------------------------- -void ofApp::draw(){ - ofBackground(0); - ofSetColor(255, 255, 355); - if (player.isLoaded()) { - //aspect ratio is the proportional relationship between width and height - // float aspectRatio = player.getWidth() / player.getHeight(); - image.draw(0.0f, 0.0f); - } - //if the button color alpha is greater than 4 - //animate the button - if(buttonColor.a >= 4){ - animatePlayPause(); - } - - ofSetColor(255, 0, 0, 255); - ofFill(); - //draw our progress along the bottom of our screen - ofDrawRectangle(0.0f, ofGetHeight() - 10.0f, player.getPosition() * ofGetWidth(), 10.0f); -} - -//-------------------------------------------------------------- -void ofApp::keyPressed(int key){ - bool isPaused; - switch (key) { - case 'f': - ofToggleFullscreen(); - break; - case ' ': - buttonColor.a = 255; - //this is a ternary expression - // if the player is paused, return false, otherwise return true - isPaused = (player.isPaused()) ? false : true; - player.setPaused(isPaused); - break; - case OF_KEY_LEFT: - if (player.isPaused()) { - player.previousFrame(); - } - break; - case OF_KEY_RIGHT: - if (player.isPaused()) { - player.nextFrame(); - } - break; - case '0': - player.firstFrame(); - break; - default: - break; - } -} - -//-------------------------------------------------------------- -void ofApp::animatePlayPause(){ - ofSetColor(buttonColor); - if(player.isPaused()){ - ofPushMatrix(); - ofFill(); - ofDrawRectangle(ofGetWidth()/2.0, ofGetHeight()/2.0, 10.0, 50.0); - ofDrawRectangle(ofGetWidth()/2.0+25.0, ofGetHeight()/2.0, 10.0, 50.0); - ofPopMatrix(); - buttonColor.a-=4; - } - else{ - ofPushMatrix(); - ofDrawTriangle(ofGetWidth()/2.0, ofGetHeight()/2.0, ofGetWidth()/2.0+50.0, ofGetHeight()/2.0+25.0, ofGetWidth()/2.0, ofGetHeight()/2.0+50.0); - ofPopMatrix(); - buttonColor.a-=4; - } -} - -//-------------------------------------------------------------- -ofColor ofApp::getSlitPixelColor(int x, int y){ - float dist = ofDist(x, y, mouseX, mouseY); - float f = dist / 8.0f; - - int i0 = int(f); - int i1 = i0 + 1; - - //compute weights of the frames i0 and i1 - float weight0= i1 - f; - float weight1 = 1 - weight0; - - //make sure we limit out frames between 0 and frames.size() - 1 - i0= ofClamp(i0, 0, frames.size() - 1); - i1= ofClamp(i1, 0, frames.size() - 1); - - ofColor color0 = frames[i0].getColor(x, y); - ofColor color1 = frames[i1].getColor(x, y); - - //interpolate between colors 0 and 1 - // this is the meat of the algorithm! - ofColor interpolatedColor = color0 * weight0 + color1* weight1; - - return interpolatedColor; - -} - -//-------------------------------------------------------------- -void ofApp::keyReleased(int key){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseMoved(int x, int y ){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseDragged(int x, int y, int button){ - -} - -//-------------------------------------------------------------- -void ofApp::mousePressed(int x, int y, int button){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseReleased(int x, int y, int button){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseEntered(int x, int y){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseExited(int x, int y){ - -} - -//-------------------------------------------------------------- -void ofApp::windowResized(int w, int h){ - -} - -//-------------------------------------------------------------- -void ofApp::gotMessage(ofMessage msg){ - -} - -//-------------------------------------------------------------- -void ofApp::dragEvent(ofDragInfo dragInfo){ - -} diff --git a/VideoExampleSlitscan/src/ofApp.h b/VideoExampleSlitscan/src/ofApp.h deleted file mode 100644 index cc0c709..0000000 --- a/VideoExampleSlitscan/src/ofApp.h +++ /dev/null @@ -1,33 +0,0 @@ -#pragma once - -#include "ofMain.h" - -class ofApp : public ofBaseApp{ - - public: - void setup(); - void update(); - void draw(); - - void keyPressed(int key); - void keyReleased(int key); - void mouseMoved(int x, int y ); - void mouseDragged(int x, int y, int button); - void mousePressed(int x, int y, int button); - void mouseReleased(int x, int y, int button); - void mouseEntered(int x, int y); - void mouseExited(int x, int y); - void windowResized(int w, int h); - void dragEvent(ofDragInfo dragInfo); - void gotMessage(ofMessage msg); - - void animatePlayPause(); - ofVideoPlayer player; - ofImage image; - deque frames; // a deque is similar to a vector - ofPixels imagePixels; - ofColor buttonColor; - ofColor getSlitPixelColor(int x, int y); - int N = 150; - -}; diff --git a/VideoExampleSpeed/Makefile b/VideoExampleSpeed/Makefile deleted file mode 100644 index 7a7fe8b..0000000 --- a/VideoExampleSpeed/Makefile +++ /dev/null @@ -1,13 +0,0 @@ -# Attempt to load a config.make file. -# If none is found, project defaults in config.project.make will be used. -ifneq ($(wildcard config.make),) - include config.make -endif - -# make sure the the OF_ROOT location is defined -ifndef OF_ROOT - OF_ROOT=../../.. -endif - -# call the project makefile! -include $(OF_ROOT)/libs/openFrameworksCompiled/project/makefileCommon/compile.project.mk diff --git a/VideoExampleSpeed/Project.xcconfig b/VideoExampleSpeed/Project.xcconfig deleted file mode 100644 index e570b15..0000000 --- a/VideoExampleSpeed/Project.xcconfig +++ /dev/null @@ -1,17 +0,0 @@ -//THE PATH TO THE ROOT OF OUR OF PATH RELATIVE TO THIS PROJECT. -//THIS NEEDS TO BE DEFINED BEFORE CoreOF.xcconfig IS INCLUDED -OF_PATH = ../../.. - -//THIS HAS ALL THE HEADER AND LIBS FOR OF CORE -#include "../../../libs/openFrameworksCompiled/project/osx/CoreOF.xcconfig" - -//ICONS - NEW IN 0072 -ICON_NAME_DEBUG = icon-debug.icns -ICON_NAME_RELEASE = icon.icns -ICON_FILE_PATH = $(OF_PATH)/libs/openFrameworksCompiled/project/osx/ - -//IF YOU WANT AN APP TO HAVE A CUSTOM ICON - PUT THEM IN YOUR DATA FOLDER AND CHANGE ICON_FILE_PATH to: -//ICON_FILE_PATH = bin/data/ - -OTHER_LDFLAGS = $(OF_CORE_LIBS) $(OF_CORE_FRAMEWORKS) -HEADER_SEARCH_PATHS = $(OF_CORE_HEADERS) diff --git a/VideoExampleSpeed/VideoExampleSpeed.xcodeproj/project.pbxproj b/VideoExampleSpeed/VideoExampleSpeed.xcodeproj/project.pbxproj deleted file mode 100644 index 045fb98..0000000 --- a/VideoExampleSpeed/VideoExampleSpeed.xcodeproj/project.pbxproj +++ /dev/null @@ -1,661 +0,0 @@ - - - - archiveVersion - 1 - classes - - objectVersion - 46 - objects - - 6948EE371B920CB800B5AC1A - - children - - isa - PBXGroup - name - local_addons - sourceTree - <group> - - BB4B014C10F69532006C3DED - - children - - isa - PBXGroup - name - addons - sourceTree - <group> - - E4328143138ABC890047C5CB - - isa - PBXFileReference - lastKnownFileType - wrapper.pb-project - name - openFrameworksLib.xcodeproj - path - ../../../libs/openFrameworksCompiled/project/osx/openFrameworksLib.xcodeproj - sourceTree - SOURCE_ROOT - - E4328144138ABC890047C5CB - - children - - E4328148138ABC890047C5CB - - isa - PBXGroup - name - Products - sourceTree - <group> - - E4328147138ABC890047C5CB - - containerPortal - E4328143138ABC890047C5CB - isa - PBXContainerItemProxy - proxyType - 2 - remoteGlobalIDString - E4B27C1510CBEB8E00536013 - remoteInfo - openFrameworks - - E4328148138ABC890047C5CB - - fileType - archive.ar - isa - PBXReferenceProxy - path - openFrameworksDebug.a - remoteRef - E4328147138ABC890047C5CB - sourceTree - BUILT_PRODUCTS_DIR - - E4328149138ABC9F0047C5CB - - fileRef - E4328148138ABC890047C5CB - isa - PBXBuildFile - - E4B69B4A0A3A1720003C02F2 - - children - - E4B6FCAD0C3E899E008CF71C - E4EB6923138AFD0F00A09F29 - E4B69E1C0A3A1BDC003C02F2 - E4EEC9E9138DF44700A80321 - BB4B014C10F69532006C3DED - 6948EE371B920CB800B5AC1A - E4B69B5B0A3A1756003C02F2 - - isa - PBXGroup - sourceTree - <group> - - E4B69B4C0A3A1720003C02F2 - - attributes - - LastUpgradeCheck - 0600 - - buildConfigurationList - E4B69B4D0A3A1720003C02F2 - compatibilityVersion - Xcode 3.2 - developmentRegion - English - hasScannedForEncodings - 0 - isa - PBXProject - knownRegions - - English - Japanese - French - German - - mainGroup - E4B69B4A0A3A1720003C02F2 - productRefGroup - E4B69B4A0A3A1720003C02F2 - projectDirPath - - projectReferences - - - ProductGroup - E4328144138ABC890047C5CB - ProjectRef - E4328143138ABC890047C5CB - - - projectRoot - - targets - - E4B69B5A0A3A1756003C02F2 - - - E4B69B4D0A3A1720003C02F2 - - buildConfigurations - - E4B69B4E0A3A1720003C02F2 - E4B69B4F0A3A1720003C02F2 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - E4B69B4E0A3A1720003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - HEADER_SEARCH_PATHS - - $(OF_CORE_HEADERS) - src - - CONFIGURATION_BUILD_DIR - $(SRCROOT)/bin/ - COPY_PHASE_STRIP - NO - DEAD_CODE_STRIPPING - YES - GCC_AUTO_VECTORIZATION - YES - GCC_ENABLE_SSE3_EXTENSIONS - YES - GCC_ENABLE_SUPPLEMENTAL_SSE3_INSTRUCTIONS - YES - GCC_INLINES_ARE_PRIVATE_EXTERN - NO - GCC_OPTIMIZATION_LEVEL - 0 - GCC_SYMBOLS_PRIVATE_EXTERN - NO - GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS - YES - GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO - NO - GCC_WARN_ALLOW_INCOMPLETE_PROTOCOL - NO - GCC_WARN_UNINITIALIZED_AUTOS - NO - GCC_WARN_UNUSED_VALUE - NO - GCC_WARN_UNUSED_VARIABLE - NO - MACOSX_DEPLOYMENT_TARGET - 10.8 - ONLY_ACTIVE_ARCH - YES - OTHER_CPLUSPLUSFLAGS - - -D__MACOSX_CORE__ - -mtune=native - - SDKROOT - macosx - - isa - XCBuildConfiguration - name - Debug - - E4B69B4F0A3A1720003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - HEADER_SEARCH_PATHS - - $(OF_CORE_HEADERS) - src - - CONFIGURATION_BUILD_DIR - $(SRCROOT)/bin/ - COPY_PHASE_STRIP - YES - DEAD_CODE_STRIPPING - YES - GCC_AUTO_VECTORIZATION - YES - GCC_ENABLE_SSE3_EXTENSIONS - YES - GCC_ENABLE_SUPPLEMENTAL_SSE3_INSTRUCTIONS - YES - GCC_INLINES_ARE_PRIVATE_EXTERN - NO - GCC_OPTIMIZATION_LEVEL - 3 - GCC_SYMBOLS_PRIVATE_EXTERN - NO - GCC_UNROLL_LOOPS - YES - GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS - YES - GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO - NO - GCC_WARN_ALLOW_INCOMPLETE_PROTOCOL - NO - GCC_WARN_UNINITIALIZED_AUTOS - NO - GCC_WARN_UNUSED_VALUE - NO - GCC_WARN_UNUSED_VARIABLE - NO - MACOSX_DEPLOYMENT_TARGET - 10.8 - OTHER_CPLUSPLUSFLAGS - - -D__MACOSX_CORE__ - -mtune=native - - SDKROOT - macosx - - isa - XCBuildConfiguration - name - Release - - E4B69B580A3A1756003C02F2 - - buildActionMask - 2147483647 - files - - E4B69E200A3A1BDC003C02F2 - E4B69E210A3A1BDC003C02F2 - - isa - PBXSourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - E4B69B590A3A1756003C02F2 - - buildActionMask - 2147483647 - files - - E4328149138ABC9F0047C5CB - - isa - PBXFrameworksBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - E4B69B5A0A3A1756003C02F2 - - buildConfigurationList - E4B69B5F0A3A1757003C02F2 - buildPhases - - E4B69B580A3A1756003C02F2 - E4B69B590A3A1756003C02F2 - E4B6FFFD0C3F9AB9008CF71C - E4C2427710CC5ABF004149E2 - - buildRules - - dependencies - - E4EEB9AC138B136A00A80321 - - isa - PBXNativeTarget - name - VideoExampleSpeed - productName - myOFApp - productReference - E4B69B5B0A3A1756003C02F2 - productType - com.apple.product-type.application - - E4B69B5B0A3A1756003C02F2 - - explicitFileType - wrapper.application - includeInIndex - 0 - isa - PBXFileReference - path - VideoExampleSpeedDebug.app - sourceTree - BUILT_PRODUCTS_DIR - - E4B69B5F0A3A1757003C02F2 - - buildConfigurations - - E4B69B600A3A1757003C02F2 - E4B69B610A3A1757003C02F2 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - E4B69B600A3A1757003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - HEADER_SEARCH_PATHS - - $(OF_CORE_HEADERS) - src - - COMBINE_HIDPI_IMAGES - YES - COPY_PHASE_STRIP - NO - FRAMEWORK_SEARCH_PATHS - - $(inherited) - $(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1) - - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 - "$(SRCROOT)/../../../libs/glut/lib/osx" - GCC_DYNAMIC_NO_PIC - NO - GCC_GENERATE_DEBUGGING_SYMBOLS - YES - GCC_MODEL_TUNING - NONE - ICON - $(ICON_NAME_DEBUG) - ICON_FILE - $(ICON_FILE_PATH)$(ICON) - INFOPLIST_FILE - openFrameworks-Info.plist - INSTALL_PATH - /Applications - LIBRARY_SEARCH_PATHS - $(inherited) - PRODUCT_NAME - $(TARGET_NAME)Debug - WRAPPER_EXTENSION - app - - isa - XCBuildConfiguration - name - Debug - - E4B69B610A3A1757003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - HEADER_SEARCH_PATHS - - $(OF_CORE_HEADERS) - src - - COMBINE_HIDPI_IMAGES - YES - COPY_PHASE_STRIP - YES - FRAMEWORK_SEARCH_PATHS - - $(inherited) - $(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1) - - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 - "$(SRCROOT)/../../../libs/glut/lib/osx" - GCC_GENERATE_DEBUGGING_SYMBOLS - YES - GCC_MODEL_TUNING - NONE - ICON - $(ICON_NAME_RELEASE) - ICON_FILE - $(ICON_FILE_PATH)$(ICON) - INFOPLIST_FILE - openFrameworks-Info.plist - INSTALL_PATH - /Applications - LIBRARY_SEARCH_PATHS - $(inherited) - PRODUCT_NAME - $(TARGET_NAME) - WRAPPER_EXTENSION - app - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - - isa - XCBuildConfiguration - name - Release - - E4B69E1C0A3A1BDC003C02F2 - - children - - E4B69E1D0A3A1BDC003C02F2 - E4B69E1E0A3A1BDC003C02F2 - E4B69E1F0A3A1BDC003C02F2 - - isa - PBXGroup - path - src - sourceTree - SOURCE_ROOT - - E4B69E1D0A3A1BDC003C02F2 - - fileEncoding - 30 - isa - PBXFileReference - lastKnownFileType - sourcecode.cpp.cpp - name - main.cpp - path - src/main.cpp - sourceTree - SOURCE_ROOT - - E4B69E1E0A3A1BDC003C02F2 - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofApp.cpp - path - src/ofApp.cpp - sourceTree - SOURCE_ROOT - - E4B69E1F0A3A1BDC003C02F2 - - fileEncoding - 30 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - name - ofApp.h - path - src/ofApp.h - sourceTree - SOURCE_ROOT - - E4B69E200A3A1BDC003C02F2 - - fileRef - E4B69E1D0A3A1BDC003C02F2 - isa - PBXBuildFile - - E4B69E210A3A1BDC003C02F2 - - fileRef - E4B69E1E0A3A1BDC003C02F2 - isa - PBXBuildFile - - E4B6FCAD0C3E899E008CF71C - - fileEncoding - 30 - isa - PBXFileReference - lastKnownFileType - text.plist.xml - path - openFrameworks-Info.plist - sourceTree - <group> - - E4B6FFFD0C3F9AB9008CF71C - - buildActionMask - 2147483647 - files - - inputPaths - - isa - PBXShellScriptBuildPhase - outputPaths - - runOnlyForDeploymentPostprocessing - 0 - shellPath - /bin/sh - shellScript - mkdir -p "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Resources/" -# Copy default icon file into App/Resources -rsync -aved "$ICON_FILE" "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Resources/" -# Copy libfmod and change install directory for fmod to run -rsync -aved ../../../libs/fmodex/lib/osx/libfmodex.dylib "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Frameworks/"; -install_name_tool -change @executable_path/libfmodex.dylib @executable_path/../Frameworks/libfmodex.dylib "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/MacOS/$PRODUCT_NAME"; -# Copy GLUT framework (must remove for AppStore submissions) -rsync -aved ../../../libs/glut/lib/osx/GLUT.framework "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Frameworks/" - - - E4C2427710CC5ABF004149E2 - - buildActionMask - 2147483647 - dstPath - - dstSubfolderSpec - 10 - files - - isa - PBXCopyFilesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - E4EB691F138AFCF100A09F29 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - name - CoreOF.xcconfig - path - ../../../libs/openFrameworksCompiled/project/osx/CoreOF.xcconfig - sourceTree - SOURCE_ROOT - - E4EB6923138AFD0F00A09F29 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - path - Project.xcconfig - sourceTree - <group> - - E4EEB9AB138B136A00A80321 - - containerPortal - E4328143138ABC890047C5CB - isa - PBXContainerItemProxy - proxyType - 1 - remoteGlobalIDString - E4B27C1410CBEB8E00536013 - remoteInfo - openFrameworks - - E4EEB9AC138B136A00A80321 - - isa - PBXTargetDependency - name - openFrameworks - targetProxy - E4EEB9AB138B136A00A80321 - - E4EEC9E9138DF44700A80321 - - children - - E4EB691F138AFCF100A09F29 - E4328143138ABC890047C5CB - - isa - PBXGroup - name - openFrameworks - sourceTree - <group> - - - rootObject - E4B69B4C0A3A1720003C02F2 - - diff --git a/VideoExampleSpeed/VideoExampleSpeed.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/VideoExampleSpeed/VideoExampleSpeed.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 919434a..0000000 --- a/VideoExampleSpeed/VideoExampleSpeed.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/VideoExampleSpeed/VideoExampleSpeed.xcodeproj/project.xcworkspace/xcuserdata/kevinsiwoff.xcuserdatad/UserInterfaceState.xcuserstate b/VideoExampleSpeed/VideoExampleSpeed.xcodeproj/project.xcworkspace/xcuserdata/kevinsiwoff.xcuserdatad/UserInterfaceState.xcuserstate deleted file mode 100644 index 8b2c554..0000000 Binary files a/VideoExampleSpeed/VideoExampleSpeed.xcodeproj/project.xcworkspace/xcuserdata/kevinsiwoff.xcuserdatad/UserInterfaceState.xcuserstate and /dev/null differ diff --git a/VideoExampleSpeed/VideoExampleSpeed.xcodeproj/xcshareddata/xcschemes/VideoExampleSpeed Debug.xcscheme b/VideoExampleSpeed/VideoExampleSpeed.xcodeproj/xcshareddata/xcschemes/VideoExampleSpeed Debug.xcscheme deleted file mode 100644 index fa5a6ca..0000000 --- a/VideoExampleSpeed/VideoExampleSpeed.xcodeproj/xcshareddata/xcschemes/VideoExampleSpeed Debug.xcscheme +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/VideoExampleSpeed/VideoExampleSpeed.xcodeproj/xcshareddata/xcschemes/VideoExampleSpeed Release.xcscheme b/VideoExampleSpeed/VideoExampleSpeed.xcodeproj/xcshareddata/xcschemes/VideoExampleSpeed Release.xcscheme deleted file mode 100644 index 4787722..0000000 --- a/VideoExampleSpeed/VideoExampleSpeed.xcodeproj/xcshareddata/xcschemes/VideoExampleSpeed Release.xcscheme +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/VideoExampleSpeed/VideoExampleSpeed.xcodeproj/xcuserdata/kevinsiwoff.xcuserdatad/xcschemes/xcschememanagement.plist b/VideoExampleSpeed/VideoExampleSpeed.xcodeproj/xcuserdata/kevinsiwoff.xcuserdatad/xcschemes/xcschememanagement.plist deleted file mode 100644 index 4fc82f9..0000000 --- a/VideoExampleSpeed/VideoExampleSpeed.xcodeproj/xcuserdata/kevinsiwoff.xcuserdatad/xcschemes/xcschememanagement.plist +++ /dev/null @@ -1,19 +0,0 @@ - - - - - SchemeUserState - - VideoExampleSpeed Debug.xcscheme_^#shared#^_ - - orderHint - 0 - - VideoExampleSpeed Release.xcscheme_^#shared#^_ - - orderHint - 1 - - - - diff --git a/VideoExampleSpeed/addons.make b/VideoExampleSpeed/addons.make deleted file mode 100644 index e69de29..0000000 diff --git a/VideoExampleSpeed/bin/data/.gitkeep b/VideoExampleSpeed/bin/data/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/VideoExampleSpeed/bin/data/3.Mousetraps.mp4 b/VideoExampleSpeed/bin/data/3.Mousetraps.mp4 deleted file mode 100644 index d69d176..0000000 --- a/VideoExampleSpeed/bin/data/3.Mousetraps.mp4 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4793245ad33fa904ade435aa1173366e2d054c084bcf726cb59cd574f5e530a7 -size 43194499 diff --git a/VideoExampleSpeed/config.make b/VideoExampleSpeed/config.make deleted file mode 100644 index df10f64..0000000 --- a/VideoExampleSpeed/config.make +++ /dev/null @@ -1,142 +0,0 @@ -################################################################################ -# CONFIGURE PROJECT MAKEFILE (optional) -# This file is where we make project specific configurations. -################################################################################ - -################################################################################ -# OF ROOT -# The location of your root openFrameworks installation -# (default) OF_ROOT = ../../.. -################################################################################ -# OF_ROOT = ../../.. - -################################################################################ -# PROJECT ROOT -# The location of the project - a starting place for searching for files -# (default) PROJECT_ROOT = . (this directory) -# -################################################################################ -# PROJECT_ROOT = . - -################################################################################ -# PROJECT SPECIFIC CHECKS -# This is a project defined section to create internal makefile flags to -# conditionally enable or disable the addition of various features within -# this makefile. For instance, if you want to make changes based on whether -# GTK is installed, one might test that here and create a variable to check. -################################################################################ -# None - -################################################################################ -# PROJECT EXTERNAL SOURCE PATHS -# These are fully qualified paths that are not within the PROJECT_ROOT folder. -# Like source folders in the PROJECT_ROOT, these paths are subject to -# exlclusion via the PROJECT_EXLCUSIONS list. -# -# (default) PROJECT_EXTERNAL_SOURCE_PATHS = (blank) -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_EXTERNAL_SOURCE_PATHS = - -################################################################################ -# PROJECT EXCLUSIONS -# These makefiles assume that all folders in your current project directory -# and any listed in the PROJECT_EXTERNAL_SOURCH_PATHS are are valid locations -# to look for source code. The any folders or files that match any of the -# items in the PROJECT_EXCLUSIONS list below will be ignored. -# -# Each item in the PROJECT_EXCLUSIONS list will be treated as a complete -# string unless teh user adds a wildcard (%) operator to match subdirectories. -# GNU make only allows one wildcard for matching. The second wildcard (%) is -# treated literally. -# -# (default) PROJECT_EXCLUSIONS = (blank) -# -# Will automatically exclude the following: -# -# $(PROJECT_ROOT)/bin% -# $(PROJECT_ROOT)/obj% -# $(PROJECT_ROOT)/%.xcodeproj -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_EXCLUSIONS = - -################################################################################ -# PROJECT LINKER FLAGS -# These flags will be sent to the linker when compiling the executable. -# -# (default) PROJECT_LDFLAGS = -Wl,-rpath=./libs -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ - -# Currently, shared libraries that are needed are copied to the -# $(PROJECT_ROOT)/bin/libs directory. The following LDFLAGS tell the linker to -# add a runtime path to search for those shared libraries, since they aren't -# incorporated directly into the final executable application binary. -# TODO: should this be a default setting? -# PROJECT_LDFLAGS=-Wl,-rpath=./libs - -################################################################################ -# PROJECT DEFINES -# Create a space-delimited list of DEFINES. The list will be converted into -# CFLAGS with the "-D" flag later in the makefile. -# -# (default) PROJECT_DEFINES = (blank) -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_DEFINES = - -################################################################################ -# PROJECT CFLAGS -# This is a list of fully qualified CFLAGS required when compiling for this -# project. These CFLAGS will be used IN ADDITION TO the PLATFORM_CFLAGS -# defined in your platform specific core configuration files. These flags are -# presented to the compiler BEFORE the PROJECT_OPTIMIZATION_CFLAGS below. -# -# (default) PROJECT_CFLAGS = (blank) -# -# Note: Before adding PROJECT_CFLAGS, note that the PLATFORM_CFLAGS defined in -# your platform specific configuration file will be applied by default and -# further flags here may not be needed. -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_CFLAGS = - -################################################################################ -# PROJECT OPTIMIZATION CFLAGS -# These are lists of CFLAGS that are target-specific. While any flags could -# be conditionally added, they are usually limited to optimization flags. -# These flags are added BEFORE the PROJECT_CFLAGS. -# -# PROJECT_OPTIMIZATION_CFLAGS_RELEASE flags are only applied to RELEASE targets. -# -# (default) PROJECT_OPTIMIZATION_CFLAGS_RELEASE = (blank) -# -# PROJECT_OPTIMIZATION_CFLAGS_DEBUG flags are only applied to DEBUG targets. -# -# (default) PROJECT_OPTIMIZATION_CFLAGS_DEBUG = (blank) -# -# Note: Before adding PROJECT_OPTIMIZATION_CFLAGS, please note that the -# PLATFORM_OPTIMIZATION_CFLAGS defined in your platform specific configuration -# file will be applied by default and further optimization flags here may not -# be needed. -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_OPTIMIZATION_CFLAGS_RELEASE = -# PROJECT_OPTIMIZATION_CFLAGS_DEBUG = - -################################################################################ -# PROJECT COMPILERS -# Custom compilers can be set for CC and CXX -# (default) PROJECT_CXX = (blank) -# (default) PROJECT_CC = (blank) -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_CXX = -# PROJECT_CC = diff --git a/VideoExampleSpeed/openFrameworks-Info.plist b/VideoExampleSpeed/openFrameworks-Info.plist deleted file mode 100644 index 8d64d2b..0000000 --- a/VideoExampleSpeed/openFrameworks-Info.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - cc.openFrameworks.ofapp - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - APPL - CFBundleSignature - ???? - CFBundleVersion - 1.0 - CFBundleIconFile - ${ICON} - - diff --git a/VideoExampleSpeed/src/main.cpp b/VideoExampleSpeed/src/main.cpp deleted file mode 100644 index e57370b..0000000 --- a/VideoExampleSpeed/src/main.cpp +++ /dev/null @@ -1,13 +0,0 @@ -#include "ofMain.h" -#include "ofApp.h" - -//======================================================================== -int main( ){ - ofSetupOpenGL(1024,768,OF_WINDOW); // <-------- setup the GL context - - // this kicks off the running of my app - // can be OF_WINDOW or OF_FULLSCREEN - // pass in width and height too: - ofRunApp(new ofApp()); - -} diff --git a/VideoExampleSpeed/src/ofApp.cpp b/VideoExampleSpeed/src/ofApp.cpp deleted file mode 100644 index b248325..0000000 --- a/VideoExampleSpeed/src/ofApp.cpp +++ /dev/null @@ -1,133 +0,0 @@ -/** - ** VideoExampleSpeed by Kevin Siwoff - ** @indefinit -**/ - -#include "ofApp.h" - -//-------------------------------------------------------------- -void ofApp::setup(){ - - player.load("3.Mousetraps.mp4"); - player.play(); - buttonColor = ofColor(255, 255, 255, 255); -} - -//-------------------------------------------------------------- -void ofApp::update(){ - player.update(); -} - -//-------------------------------------------------------------- -void ofApp::draw(){ - ofBackground(0); - ofSetColor(255, 255, 255); - if (player.isLoaded()) { - //aspect ratio is the proportional relationship between width and height - float aspectRatio = player.getWidth() / player.getHeight(); - player.draw(0.0f, 0.0f, ofGetWidth(), ofGetWidth() / aspectRatio); - } - //if the button color alpha is greater than 4 - //animate the button - if(buttonColor.a >= 4){ - animatePlayPause(); - } - - ofSetColor(255, 0, 0, 255); - ofFill(); - //draw our progress along the bottom of our screen - ofDrawRectangle(0.0f, ofGetHeight() - 10.0f, player.getPosition() * ofGetWidth(), 10.0f); -} - -//-------------------------------------------------------------- -void ofApp::keyPressed(int key){ - bool isPaused; - switch (key) { - case 'f': - ofToggleFullscreen(); - break; - case ' ': - buttonColor.a = 255; - //this is a ternary expression - // if the player is paused, return false, otherwise return true - isPaused = (player.isPaused()) ? false : true; - player.setPaused(isPaused); - break; - case OF_KEY_LEFT: - if (player.isPaused()) { - player.previousFrame(); - } - break; - case OF_KEY_RIGHT: - if (player.isPaused()) { - player.nextFrame(); - } - break; - case '0': - player.firstFrame(); - break; - default: - break; - } -} - -//-------------------------------------------------------------- -void ofApp::keyReleased(int key){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseMoved(int x, int y ){ - float mappedSpeed = ofMap(float(x), 0.0f, ofGetWidth(), -2.0f, 2.0f); - player.setSpeed(mappedSpeed); - -} - -//-------------------------------------------------------------- -void ofApp::mouseDragged(int x, int y, int button){ - -} - -//-------------------------------------------------------------- -void ofApp::mousePressed(int x, int y, int button){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseReleased(int x, int y, int button){ - -} - -//-------------------------------------------------------------- -void ofApp::windowResized(int w, int h){ - -} - -//-------------------------------------------------------------- -void ofApp::gotMessage(ofMessage msg){ - -} - -//-------------------------------------------------------------- -void ofApp::dragEvent(ofDragInfo dragInfo){ - -} - -//-------------------------------------------------------------- -void ofApp::animatePlayPause(){ - ofSetColor(buttonColor); - if(player.isPaused()){ - ofPushMatrix(); - ofFill(); - ofDrawRectangle(ofGetWidth()/2.0, ofGetHeight()/2.0, 10.0, 50.0); - ofDrawRectangle(ofGetWidth()/2.0+25.0, ofGetHeight()/2.0, 10.0, 50.0); - buttonColor.a-=4; - ofPopMatrix(); - } - else{ - ofPushMatrix(); - ofDrawTriangle(ofGetWidth()/2.0, ofGetHeight()/2.0, ofGetWidth()/2.0+50.0, ofGetHeight()/2.0+25.0, ofGetWidth()/2.0, ofGetHeight()/2.0+50.0); - ofPopMatrix(); - buttonColor.a-=4; - } -} diff --git a/VideoExampleSpeed/src/ofApp.h b/VideoExampleSpeed/src/ofApp.h deleted file mode 100644 index 10a96c7..0000000 --- a/VideoExampleSpeed/src/ofApp.h +++ /dev/null @@ -1,25 +0,0 @@ -#pragma once - -#include "ofMain.h" - -class ofApp : public ofBaseApp{ - - public: - void setup(); - void update(); - void draw(); - - void keyPressed(int key); - void keyReleased(int key); - void mouseMoved(int x, int y ); - void mouseDragged(int x, int y, int button); - void mousePressed(int x, int y, int button); - void mouseReleased(int x, int y, int button); - void windowResized(int w, int h); - void dragEvent(ofDragInfo dragInfo); - void gotMessage(ofMessage msg); - - void animatePlayPause(); - ofVideoPlayer player; - ofColor buttonColor; -}; diff --git a/VideoExampleZoom/Makefile b/VideoExampleZoom/Makefile deleted file mode 100644 index 7a7fe8b..0000000 --- a/VideoExampleZoom/Makefile +++ /dev/null @@ -1,13 +0,0 @@ -# Attempt to load a config.make file. -# If none is found, project defaults in config.project.make will be used. -ifneq ($(wildcard config.make),) - include config.make -endif - -# make sure the the OF_ROOT location is defined -ifndef OF_ROOT - OF_ROOT=../../.. -endif - -# call the project makefile! -include $(OF_ROOT)/libs/openFrameworksCompiled/project/makefileCommon/compile.project.mk diff --git a/VideoExampleZoom/Project.xcconfig b/VideoExampleZoom/Project.xcconfig deleted file mode 100644 index e570b15..0000000 --- a/VideoExampleZoom/Project.xcconfig +++ /dev/null @@ -1,17 +0,0 @@ -//THE PATH TO THE ROOT OF OUR OF PATH RELATIVE TO THIS PROJECT. -//THIS NEEDS TO BE DEFINED BEFORE CoreOF.xcconfig IS INCLUDED -OF_PATH = ../../.. - -//THIS HAS ALL THE HEADER AND LIBS FOR OF CORE -#include "../../../libs/openFrameworksCompiled/project/osx/CoreOF.xcconfig" - -//ICONS - NEW IN 0072 -ICON_NAME_DEBUG = icon-debug.icns -ICON_NAME_RELEASE = icon.icns -ICON_FILE_PATH = $(OF_PATH)/libs/openFrameworksCompiled/project/osx/ - -//IF YOU WANT AN APP TO HAVE A CUSTOM ICON - PUT THEM IN YOUR DATA FOLDER AND CHANGE ICON_FILE_PATH to: -//ICON_FILE_PATH = bin/data/ - -OTHER_LDFLAGS = $(OF_CORE_LIBS) $(OF_CORE_FRAMEWORKS) -HEADER_SEARCH_PATHS = $(OF_CORE_HEADERS) diff --git a/VideoExampleZoom/VideoExampleZoom.xcodeproj/project.pbxproj b/VideoExampleZoom/VideoExampleZoom.xcodeproj/project.pbxproj deleted file mode 100644 index 242805f..0000000 --- a/VideoExampleZoom/VideoExampleZoom.xcodeproj/project.pbxproj +++ /dev/null @@ -1,661 +0,0 @@ - - - - archiveVersion - 1 - classes - - objectVersion - 46 - objects - - 6948EE371B920CB800B5AC1A - - children - - isa - PBXGroup - name - local_addons - sourceTree - <group> - - BB4B014C10F69532006C3DED - - children - - isa - PBXGroup - name - addons - sourceTree - <group> - - E4328143138ABC890047C5CB - - isa - PBXFileReference - lastKnownFileType - wrapper.pb-project - name - openFrameworksLib.xcodeproj - path - ../../../libs/openFrameworksCompiled/project/osx/openFrameworksLib.xcodeproj - sourceTree - SOURCE_ROOT - - E4328144138ABC890047C5CB - - children - - E4328148138ABC890047C5CB - - isa - PBXGroup - name - Products - sourceTree - <group> - - E4328147138ABC890047C5CB - - containerPortal - E4328143138ABC890047C5CB - isa - PBXContainerItemProxy - proxyType - 2 - remoteGlobalIDString - E4B27C1510CBEB8E00536013 - remoteInfo - openFrameworks - - E4328148138ABC890047C5CB - - fileType - archive.ar - isa - PBXReferenceProxy - path - openFrameworksDebug.a - remoteRef - E4328147138ABC890047C5CB - sourceTree - BUILT_PRODUCTS_DIR - - E4328149138ABC9F0047C5CB - - fileRef - E4328148138ABC890047C5CB - isa - PBXBuildFile - - E4B69B4A0A3A1720003C02F2 - - children - - E4B6FCAD0C3E899E008CF71C - E4EB6923138AFD0F00A09F29 - E4B69E1C0A3A1BDC003C02F2 - E4EEC9E9138DF44700A80321 - BB4B014C10F69532006C3DED - 6948EE371B920CB800B5AC1A - E4B69B5B0A3A1756003C02F2 - - isa - PBXGroup - sourceTree - <group> - - E4B69B4C0A3A1720003C02F2 - - attributes - - LastUpgradeCheck - 0600 - - buildConfigurationList - E4B69B4D0A3A1720003C02F2 - compatibilityVersion - Xcode 3.2 - developmentRegion - English - hasScannedForEncodings - 0 - isa - PBXProject - knownRegions - - English - Japanese - French - German - - mainGroup - E4B69B4A0A3A1720003C02F2 - productRefGroup - E4B69B4A0A3A1720003C02F2 - projectDirPath - - projectReferences - - - ProductGroup - E4328144138ABC890047C5CB - ProjectRef - E4328143138ABC890047C5CB - - - projectRoot - - targets - - E4B69B5A0A3A1756003C02F2 - - - E4B69B4D0A3A1720003C02F2 - - buildConfigurations - - E4B69B4E0A3A1720003C02F2 - E4B69B4F0A3A1720003C02F2 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - E4B69B4E0A3A1720003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - HEADER_SEARCH_PATHS - - $(OF_CORE_HEADERS) - src - - CONFIGURATION_BUILD_DIR - $(SRCROOT)/bin/ - COPY_PHASE_STRIP - NO - DEAD_CODE_STRIPPING - YES - GCC_AUTO_VECTORIZATION - YES - GCC_ENABLE_SSE3_EXTENSIONS - YES - GCC_ENABLE_SUPPLEMENTAL_SSE3_INSTRUCTIONS - YES - GCC_INLINES_ARE_PRIVATE_EXTERN - NO - GCC_OPTIMIZATION_LEVEL - 0 - GCC_SYMBOLS_PRIVATE_EXTERN - NO - GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS - YES - GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO - NO - GCC_WARN_ALLOW_INCOMPLETE_PROTOCOL - NO - GCC_WARN_UNINITIALIZED_AUTOS - NO - GCC_WARN_UNUSED_VALUE - NO - GCC_WARN_UNUSED_VARIABLE - NO - MACOSX_DEPLOYMENT_TARGET - 10.8 - ONLY_ACTIVE_ARCH - YES - OTHER_CPLUSPLUSFLAGS - - -D__MACOSX_CORE__ - -mtune=native - - SDKROOT - macosx - - isa - XCBuildConfiguration - name - Debug - - E4B69B4F0A3A1720003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - HEADER_SEARCH_PATHS - - $(OF_CORE_HEADERS) - src - - CONFIGURATION_BUILD_DIR - $(SRCROOT)/bin/ - COPY_PHASE_STRIP - YES - DEAD_CODE_STRIPPING - YES - GCC_AUTO_VECTORIZATION - YES - GCC_ENABLE_SSE3_EXTENSIONS - YES - GCC_ENABLE_SUPPLEMENTAL_SSE3_INSTRUCTIONS - YES - GCC_INLINES_ARE_PRIVATE_EXTERN - NO - GCC_OPTIMIZATION_LEVEL - 3 - GCC_SYMBOLS_PRIVATE_EXTERN - NO - GCC_UNROLL_LOOPS - YES - GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS - YES - GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO - NO - GCC_WARN_ALLOW_INCOMPLETE_PROTOCOL - NO - GCC_WARN_UNINITIALIZED_AUTOS - NO - GCC_WARN_UNUSED_VALUE - NO - GCC_WARN_UNUSED_VARIABLE - NO - MACOSX_DEPLOYMENT_TARGET - 10.8 - OTHER_CPLUSPLUSFLAGS - - -D__MACOSX_CORE__ - -mtune=native - - SDKROOT - macosx - - isa - XCBuildConfiguration - name - Release - - E4B69B580A3A1756003C02F2 - - buildActionMask - 2147483647 - files - - E4B69E200A3A1BDC003C02F2 - E4B69E210A3A1BDC003C02F2 - - isa - PBXSourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - E4B69B590A3A1756003C02F2 - - buildActionMask - 2147483647 - files - - E4328149138ABC9F0047C5CB - - isa - PBXFrameworksBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - E4B69B5A0A3A1756003C02F2 - - buildConfigurationList - E4B69B5F0A3A1757003C02F2 - buildPhases - - E4B69B580A3A1756003C02F2 - E4B69B590A3A1756003C02F2 - E4B6FFFD0C3F9AB9008CF71C - E4C2427710CC5ABF004149E2 - - buildRules - - dependencies - - E4EEB9AC138B136A00A80321 - - isa - PBXNativeTarget - name - VideoExampleZoom - productName - myOFApp - productReference - E4B69B5B0A3A1756003C02F2 - productType - com.apple.product-type.application - - E4B69B5B0A3A1756003C02F2 - - explicitFileType - wrapper.application - includeInIndex - 0 - isa - PBXFileReference - path - VideoExampleZoomDebug.app - sourceTree - BUILT_PRODUCTS_DIR - - E4B69B5F0A3A1757003C02F2 - - buildConfigurations - - E4B69B600A3A1757003C02F2 - E4B69B610A3A1757003C02F2 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - E4B69B600A3A1757003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - HEADER_SEARCH_PATHS - - $(OF_CORE_HEADERS) - src - - COMBINE_HIDPI_IMAGES - YES - COPY_PHASE_STRIP - NO - FRAMEWORK_SEARCH_PATHS - - $(inherited) - $(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1) - - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 - "$(SRCROOT)/../../../libs/glut/lib/osx" - GCC_DYNAMIC_NO_PIC - NO - GCC_GENERATE_DEBUGGING_SYMBOLS - YES - GCC_MODEL_TUNING - NONE - ICON - $(ICON_NAME_DEBUG) - ICON_FILE - $(ICON_FILE_PATH)$(ICON) - INFOPLIST_FILE - openFrameworks-Info.plist - INSTALL_PATH - /Applications - LIBRARY_SEARCH_PATHS - $(inherited) - PRODUCT_NAME - $(TARGET_NAME)Debug - WRAPPER_EXTENSION - app - - isa - XCBuildConfiguration - name - Debug - - E4B69B610A3A1757003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - HEADER_SEARCH_PATHS - - $(OF_CORE_HEADERS) - src - - COMBINE_HIDPI_IMAGES - YES - COPY_PHASE_STRIP - YES - FRAMEWORK_SEARCH_PATHS - - $(inherited) - $(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1) - - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 - "$(SRCROOT)/../../../libs/glut/lib/osx" - GCC_GENERATE_DEBUGGING_SYMBOLS - YES - GCC_MODEL_TUNING - NONE - ICON - $(ICON_NAME_RELEASE) - ICON_FILE - $(ICON_FILE_PATH)$(ICON) - INFOPLIST_FILE - openFrameworks-Info.plist - INSTALL_PATH - /Applications - LIBRARY_SEARCH_PATHS - $(inherited) - PRODUCT_NAME - $(TARGET_NAME) - WRAPPER_EXTENSION - app - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - - isa - XCBuildConfiguration - name - Release - - E4B69E1C0A3A1BDC003C02F2 - - children - - E4B69E1D0A3A1BDC003C02F2 - E4B69E1E0A3A1BDC003C02F2 - E4B69E1F0A3A1BDC003C02F2 - - isa - PBXGroup - path - src - sourceTree - SOURCE_ROOT - - E4B69E1D0A3A1BDC003C02F2 - - fileEncoding - 30 - isa - PBXFileReference - lastKnownFileType - sourcecode.cpp.cpp - name - main.cpp - path - src/main.cpp - sourceTree - SOURCE_ROOT - - E4B69E1E0A3A1BDC003C02F2 - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofApp.cpp - path - src/ofApp.cpp - sourceTree - SOURCE_ROOT - - E4B69E1F0A3A1BDC003C02F2 - - fileEncoding - 30 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - name - ofApp.h - path - src/ofApp.h - sourceTree - SOURCE_ROOT - - E4B69E200A3A1BDC003C02F2 - - fileRef - E4B69E1D0A3A1BDC003C02F2 - isa - PBXBuildFile - - E4B69E210A3A1BDC003C02F2 - - fileRef - E4B69E1E0A3A1BDC003C02F2 - isa - PBXBuildFile - - E4B6FCAD0C3E899E008CF71C - - fileEncoding - 30 - isa - PBXFileReference - lastKnownFileType - text.plist.xml - path - openFrameworks-Info.plist - sourceTree - <group> - - E4B6FFFD0C3F9AB9008CF71C - - buildActionMask - 2147483647 - files - - inputPaths - - isa - PBXShellScriptBuildPhase - outputPaths - - runOnlyForDeploymentPostprocessing - 0 - shellPath - /bin/sh - shellScript - mkdir -p "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Resources/" -# Copy default icon file into App/Resources -rsync -aved "$ICON_FILE" "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Resources/" -# Copy libfmod and change install directory for fmod to run -rsync -aved ../../../libs/fmodex/lib/osx/libfmodex.dylib "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Frameworks/"; -install_name_tool -change @executable_path/libfmodex.dylib @executable_path/../Frameworks/libfmodex.dylib "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/MacOS/$PRODUCT_NAME"; -# Copy GLUT framework (must remove for AppStore submissions) -rsync -aved ../../../libs/glut/lib/osx/GLUT.framework "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Frameworks/" - - - E4C2427710CC5ABF004149E2 - - buildActionMask - 2147483647 - dstPath - - dstSubfolderSpec - 10 - files - - isa - PBXCopyFilesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - E4EB691F138AFCF100A09F29 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - name - CoreOF.xcconfig - path - ../../../libs/openFrameworksCompiled/project/osx/CoreOF.xcconfig - sourceTree - SOURCE_ROOT - - E4EB6923138AFD0F00A09F29 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - path - Project.xcconfig - sourceTree - <group> - - E4EEB9AB138B136A00A80321 - - containerPortal - E4328143138ABC890047C5CB - isa - PBXContainerItemProxy - proxyType - 1 - remoteGlobalIDString - E4B27C1410CBEB8E00536013 - remoteInfo - openFrameworks - - E4EEB9AC138B136A00A80321 - - isa - PBXTargetDependency - name - openFrameworks - targetProxy - E4EEB9AB138B136A00A80321 - - E4EEC9E9138DF44700A80321 - - children - - E4EB691F138AFCF100A09F29 - E4328143138ABC890047C5CB - - isa - PBXGroup - name - openFrameworks - sourceTree - <group> - - - rootObject - E4B69B4C0A3A1720003C02F2 - - diff --git a/VideoExampleZoom/VideoExampleZoom.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/VideoExampleZoom/VideoExampleZoom.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 919434a..0000000 --- a/VideoExampleZoom/VideoExampleZoom.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/VideoExampleZoom/VideoExampleZoom.xcodeproj/project.xcworkspace/xcuserdata/kevinsiwoff.xcuserdatad/UserInterfaceState.xcuserstate b/VideoExampleZoom/VideoExampleZoom.xcodeproj/project.xcworkspace/xcuserdata/kevinsiwoff.xcuserdatad/UserInterfaceState.xcuserstate deleted file mode 100644 index b3ef409..0000000 Binary files a/VideoExampleZoom/VideoExampleZoom.xcodeproj/project.xcworkspace/xcuserdata/kevinsiwoff.xcuserdatad/UserInterfaceState.xcuserstate and /dev/null differ diff --git a/VideoExampleZoom/VideoExampleZoom.xcodeproj/xcshareddata/xcschemes/VideoExampleZoom Debug.xcscheme b/VideoExampleZoom/VideoExampleZoom.xcodeproj/xcshareddata/xcschemes/VideoExampleZoom Debug.xcscheme deleted file mode 100644 index f4df5e8..0000000 --- a/VideoExampleZoom/VideoExampleZoom.xcodeproj/xcshareddata/xcschemes/VideoExampleZoom Debug.xcscheme +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/VideoExampleZoom/VideoExampleZoom.xcodeproj/xcshareddata/xcschemes/VideoExampleZoom Release.xcscheme b/VideoExampleZoom/VideoExampleZoom.xcodeproj/xcshareddata/xcschemes/VideoExampleZoom Release.xcscheme deleted file mode 100644 index 787685e..0000000 --- a/VideoExampleZoom/VideoExampleZoom.xcodeproj/xcshareddata/xcschemes/VideoExampleZoom Release.xcscheme +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/VideoExampleZoom/VideoExampleZoom.xcodeproj/xcuserdata/kevinsiwoff.xcuserdatad/xcschemes/xcschememanagement.plist b/VideoExampleZoom/VideoExampleZoom.xcodeproj/xcuserdata/kevinsiwoff.xcuserdatad/xcschemes/xcschememanagement.plist deleted file mode 100644 index c5cb3a4..0000000 --- a/VideoExampleZoom/VideoExampleZoom.xcodeproj/xcuserdata/kevinsiwoff.xcuserdatad/xcschemes/xcschememanagement.plist +++ /dev/null @@ -1,19 +0,0 @@ - - - - - SchemeUserState - - VideoExampleZoom Debug.xcscheme_^#shared#^_ - - orderHint - 0 - - VideoExampleZoom Release.xcscheme_^#shared#^_ - - orderHint - 1 - - - - diff --git a/VideoExampleZoom/addons.make b/VideoExampleZoom/addons.make deleted file mode 100644 index e69de29..0000000 diff --git a/VideoExampleZoom/bin/data/.gitkeep b/VideoExampleZoom/bin/data/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/VideoExampleZoom/bin/data/3.Mousetraps.mp4 b/VideoExampleZoom/bin/data/3.Mousetraps.mp4 deleted file mode 100644 index d69d176..0000000 --- a/VideoExampleZoom/bin/data/3.Mousetraps.mp4 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4793245ad33fa904ade435aa1173366e2d054c084bcf726cb59cd574f5e530a7 -size 43194499 diff --git a/VideoExampleZoom/config.make b/VideoExampleZoom/config.make deleted file mode 100644 index df10f64..0000000 --- a/VideoExampleZoom/config.make +++ /dev/null @@ -1,142 +0,0 @@ -################################################################################ -# CONFIGURE PROJECT MAKEFILE (optional) -# This file is where we make project specific configurations. -################################################################################ - -################################################################################ -# OF ROOT -# The location of your root openFrameworks installation -# (default) OF_ROOT = ../../.. -################################################################################ -# OF_ROOT = ../../.. - -################################################################################ -# PROJECT ROOT -# The location of the project - a starting place for searching for files -# (default) PROJECT_ROOT = . (this directory) -# -################################################################################ -# PROJECT_ROOT = . - -################################################################################ -# PROJECT SPECIFIC CHECKS -# This is a project defined section to create internal makefile flags to -# conditionally enable or disable the addition of various features within -# this makefile. For instance, if you want to make changes based on whether -# GTK is installed, one might test that here and create a variable to check. -################################################################################ -# None - -################################################################################ -# PROJECT EXTERNAL SOURCE PATHS -# These are fully qualified paths that are not within the PROJECT_ROOT folder. -# Like source folders in the PROJECT_ROOT, these paths are subject to -# exlclusion via the PROJECT_EXLCUSIONS list. -# -# (default) PROJECT_EXTERNAL_SOURCE_PATHS = (blank) -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_EXTERNAL_SOURCE_PATHS = - -################################################################################ -# PROJECT EXCLUSIONS -# These makefiles assume that all folders in your current project directory -# and any listed in the PROJECT_EXTERNAL_SOURCH_PATHS are are valid locations -# to look for source code. The any folders or files that match any of the -# items in the PROJECT_EXCLUSIONS list below will be ignored. -# -# Each item in the PROJECT_EXCLUSIONS list will be treated as a complete -# string unless teh user adds a wildcard (%) operator to match subdirectories. -# GNU make only allows one wildcard for matching. The second wildcard (%) is -# treated literally. -# -# (default) PROJECT_EXCLUSIONS = (blank) -# -# Will automatically exclude the following: -# -# $(PROJECT_ROOT)/bin% -# $(PROJECT_ROOT)/obj% -# $(PROJECT_ROOT)/%.xcodeproj -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_EXCLUSIONS = - -################################################################################ -# PROJECT LINKER FLAGS -# These flags will be sent to the linker when compiling the executable. -# -# (default) PROJECT_LDFLAGS = -Wl,-rpath=./libs -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ - -# Currently, shared libraries that are needed are copied to the -# $(PROJECT_ROOT)/bin/libs directory. The following LDFLAGS tell the linker to -# add a runtime path to search for those shared libraries, since they aren't -# incorporated directly into the final executable application binary. -# TODO: should this be a default setting? -# PROJECT_LDFLAGS=-Wl,-rpath=./libs - -################################################################################ -# PROJECT DEFINES -# Create a space-delimited list of DEFINES. The list will be converted into -# CFLAGS with the "-D" flag later in the makefile. -# -# (default) PROJECT_DEFINES = (blank) -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_DEFINES = - -################################################################################ -# PROJECT CFLAGS -# This is a list of fully qualified CFLAGS required when compiling for this -# project. These CFLAGS will be used IN ADDITION TO the PLATFORM_CFLAGS -# defined in your platform specific core configuration files. These flags are -# presented to the compiler BEFORE the PROJECT_OPTIMIZATION_CFLAGS below. -# -# (default) PROJECT_CFLAGS = (blank) -# -# Note: Before adding PROJECT_CFLAGS, note that the PLATFORM_CFLAGS defined in -# your platform specific configuration file will be applied by default and -# further flags here may not be needed. -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_CFLAGS = - -################################################################################ -# PROJECT OPTIMIZATION CFLAGS -# These are lists of CFLAGS that are target-specific. While any flags could -# be conditionally added, they are usually limited to optimization flags. -# These flags are added BEFORE the PROJECT_CFLAGS. -# -# PROJECT_OPTIMIZATION_CFLAGS_RELEASE flags are only applied to RELEASE targets. -# -# (default) PROJECT_OPTIMIZATION_CFLAGS_RELEASE = (blank) -# -# PROJECT_OPTIMIZATION_CFLAGS_DEBUG flags are only applied to DEBUG targets. -# -# (default) PROJECT_OPTIMIZATION_CFLAGS_DEBUG = (blank) -# -# Note: Before adding PROJECT_OPTIMIZATION_CFLAGS, please note that the -# PLATFORM_OPTIMIZATION_CFLAGS defined in your platform specific configuration -# file will be applied by default and further optimization flags here may not -# be needed. -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_OPTIMIZATION_CFLAGS_RELEASE = -# PROJECT_OPTIMIZATION_CFLAGS_DEBUG = - -################################################################################ -# PROJECT COMPILERS -# Custom compilers can be set for CC and CXX -# (default) PROJECT_CXX = (blank) -# (default) PROJECT_CC = (blank) -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_CXX = -# PROJECT_CC = diff --git a/VideoExampleZoom/openFrameworks-Info.plist b/VideoExampleZoom/openFrameworks-Info.plist deleted file mode 100644 index 8d64d2b..0000000 --- a/VideoExampleZoom/openFrameworks-Info.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - cc.openFrameworks.ofapp - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - APPL - CFBundleSignature - ???? - CFBundleVersion - 1.0 - CFBundleIconFile - ${ICON} - - diff --git a/VideoExampleZoom/src/main.cpp b/VideoExampleZoom/src/main.cpp deleted file mode 100644 index e57370b..0000000 --- a/VideoExampleZoom/src/main.cpp +++ /dev/null @@ -1,13 +0,0 @@ -#include "ofMain.h" -#include "ofApp.h" - -//======================================================================== -int main( ){ - ofSetupOpenGL(1024,768,OF_WINDOW); // <-------- setup the GL context - - // this kicks off the running of my app - // can be OF_WINDOW or OF_FULLSCREEN - // pass in width and height too: - ofRunApp(new ofApp()); - -} diff --git a/VideoExampleZoom/src/ofApp.cpp b/VideoExampleZoom/src/ofApp.cpp deleted file mode 100644 index 68276b7..0000000 --- a/VideoExampleZoom/src/ofApp.cpp +++ /dev/null @@ -1,150 +0,0 @@ -/** - ** VideoExampleSpeed by Kevin Siwoff - ** @indefinit -**/ - -#include "ofApp.h" - -//-------------------------------------------------------------- -void ofApp::setup(){ - - player.load("3.Mousetraps.mp4"); - player.play(); - buttonColor = ofColor(255, 255, 255, 255); - ofSetRectMode(OF_RECTMODE_CENTER); -} - -//-------------------------------------------------------------- -void ofApp::update(){ - player.update(); -} - -//-------------------------------------------------------------- -void ofApp::draw(){ - ofBackground(0); - ofSetColor(255, 255, 255); - if (player.isLoaded()) { - //aspect ratio is the proportional relationship between width and height - float aspectRatio = player.getWidth() / player.getHeight(); - ofPushMatrix(); - ofTranslate(-ofGetMouseX(), -ofGetMouseY()); - ofScale(zoomFactor,zoomFactor); - player.draw(ofGetWidth()/2, ofGetHeight()/2, ofGetWidth(), ofGetWidth() / aspectRatio); - ofPopMatrix(); - } - //if the button color alpha is greater than 4 - //animate the button - if(buttonColor.a >= 4){ - animatePlayPause(); - } - - ofSetColor(255, 0, 0, 255); - ofFill(); - //draw our progress along the bottom of our screen - ofDrawRectangle(0.0f, ofGetHeight() - 10.0f, player.getPosition() * ofGetWidth(), 10.0f); -} - -//-------------------------------------------------------------- -void ofApp::keyPressed(int key){ - bool isPaused; - switch (key) { - case 'f': - ofToggleFullscreen(); - break; - case ' ': - buttonColor.a = 255; - //this is a ternary expression - // if the player is paused, return false, otherwise return true - isPaused = (player.isPaused()) ? false : true; - player.setPaused(isPaused); - break; - case OF_KEY_LEFT: - if (player.isPaused()) { - player.previousFrame(); - } - break; - case OF_KEY_RIGHT: - if (player.isPaused()) { - player.nextFrame(); - } - break; - case '0': - player.firstFrame(); - break; - case OF_KEY_DOWN: - if(zoomFactor >= 1.0f){ - zoomFactor -= 0.25f; - - } - break; - case OF_KEY_UP: - if(zoomFactor >= 5.0f){ - zoomFactor = 1.0f; - - } else { - zoomFactor += 0.25f; - } - break; - default: - break; - } -} - -//-------------------------------------------------------------- -void ofApp::keyReleased(int key){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseMoved(int x, int y ){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseDragged(int x, int y, int button){ - -} - -//-------------------------------------------------------------- -void ofApp::mousePressed(int x, int y, int button){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseReleased(int x, int y, int button){ - -} - -//-------------------------------------------------------------- -void ofApp::windowResized(int w, int h){ - -} - -//-------------------------------------------------------------- -void ofApp::gotMessage(ofMessage msg){ - -} - -//-------------------------------------------------------------- -void ofApp::dragEvent(ofDragInfo dragInfo){ - -} - -//-------------------------------------------------------------- -void ofApp::animatePlayPause(){ - ofSetColor(buttonColor); - if(player.isPaused()){ - ofPushMatrix(); - ofFill(); - ofDrawRectangle(ofGetWidth()/2.0, ofGetHeight()/2.0, 10.0, 50.0); - ofDrawRectangle(ofGetWidth()/2.0+25.0, ofGetHeight()/2.0, 10.0, 50.0); - buttonColor.a-=4; - ofPopMatrix(); - } - else{ - ofPushMatrix(); - ofDrawTriangle(ofGetWidth()/2.0, ofGetHeight()/2.0, ofGetWidth()/2.0+50.0, ofGetHeight()/2.0+25.0, ofGetWidth()/2.0, ofGetHeight()/2.0+50.0); - ofPopMatrix(); - buttonColor.a-=4; - } -} diff --git a/VideoExampleZoom/src/ofApp.h b/VideoExampleZoom/src/ofApp.h deleted file mode 100644 index 35d3354..0000000 --- a/VideoExampleZoom/src/ofApp.h +++ /dev/null @@ -1,26 +0,0 @@ -#pragma once - -#include "ofMain.h" - -class ofApp : public ofBaseApp{ - - public: - void setup(); - void update(); - void draw(); - - void keyPressed(int key); - void keyReleased(int key); - void mouseMoved(int x, int y ); - void mouseDragged(int x, int y, int button); - void mousePressed(int x, int y, int button); - void mouseReleased(int x, int y, int button); - void windowResized(int w, int h); - void dragEvent(ofDragInfo dragInfo); - void gotMessage(ofMessage msg); - - void animatePlayPause(); - ofVideoPlayer player; - ofColor buttonColor; - float zoomFactor = 1.0f; -}; diff --git a/VideoObjectOnVideo/Makefile b/VideoObjectOnVideo/Makefile deleted file mode 100644 index 8d8e4c0..0000000 --- a/VideoObjectOnVideo/Makefile +++ /dev/null @@ -1,13 +0,0 @@ -# Attempt to load a config.make file. -# If none is found, project defaults in config.project.make will be used. -ifneq ($(wildcard config.make),) - include config.make -endif - -# make sure the the OF_ROOT location is defined -ifndef OF_ROOT - OF_ROOT=$(realpath ../../..) -endif - -# call the project makefile! -include $(OF_ROOT)/libs/openFrameworksCompiled/project/makefileCommon/compile.project.mk diff --git a/VideoObjectOnVideo/Project.xcconfig b/VideoObjectOnVideo/Project.xcconfig deleted file mode 100644 index e570b15..0000000 --- a/VideoObjectOnVideo/Project.xcconfig +++ /dev/null @@ -1,17 +0,0 @@ -//THE PATH TO THE ROOT OF OUR OF PATH RELATIVE TO THIS PROJECT. -//THIS NEEDS TO BE DEFINED BEFORE CoreOF.xcconfig IS INCLUDED -OF_PATH = ../../.. - -//THIS HAS ALL THE HEADER AND LIBS FOR OF CORE -#include "../../../libs/openFrameworksCompiled/project/osx/CoreOF.xcconfig" - -//ICONS - NEW IN 0072 -ICON_NAME_DEBUG = icon-debug.icns -ICON_NAME_RELEASE = icon.icns -ICON_FILE_PATH = $(OF_PATH)/libs/openFrameworksCompiled/project/osx/ - -//IF YOU WANT AN APP TO HAVE A CUSTOM ICON - PUT THEM IN YOUR DATA FOLDER AND CHANGE ICON_FILE_PATH to: -//ICON_FILE_PATH = bin/data/ - -OTHER_LDFLAGS = $(OF_CORE_LIBS) $(OF_CORE_FRAMEWORKS) -HEADER_SEARCH_PATHS = $(OF_CORE_HEADERS) diff --git a/VideoObjectOnVideo/VideoObjectOnVideo.sln b/VideoObjectOnVideo/VideoObjectOnVideo.sln deleted file mode 100644 index 5dcf7b5..0000000 --- a/VideoObjectOnVideo/VideoObjectOnVideo.sln +++ /dev/null @@ -1,35 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 14 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "VideoObjectOnVideo", "VideoObjectOnVideo.vcxproj", "{7FD42DF7-442E-479A-BA76-D0022F99702A}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "openframeworksLib", "..\..\..\libs\openFrameworksCompiled\project\vs\openframeworksLib.vcxproj", "{5837595D-ACA9-485C-8E76-729040CE4B0B}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Debug|Win32.ActiveCfg = Debug|Win32 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Debug|Win32.Build.0 = Debug|Win32 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Debug|x64.ActiveCfg = Debug|x64 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Debug|x64.Build.0 = Debug|x64 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|Win32.ActiveCfg = Release|Win32 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|Win32.Build.0 = Release|Win32 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|x64.ActiveCfg = Release|x64 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|x64.Build.0 = Release|x64 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Debug|Win32.ActiveCfg = Debug|Win32 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Debug|Win32.Build.0 = Debug|Win32 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Debug|x64.ActiveCfg = Debug|x64 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Debug|x64.Build.0 = Debug|x64 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|Win32.ActiveCfg = Release|Win32 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|Win32.Build.0 = Release|Win32 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|x64.ActiveCfg = Release|x64 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/VideoObjectOnVideo/VideoObjectOnVideo.vcxproj b/VideoObjectOnVideo/VideoObjectOnVideo.vcxproj deleted file mode 100644 index 52c12e3..0000000 --- a/VideoObjectOnVideo/VideoObjectOnVideo.vcxproj +++ /dev/null @@ -1,198 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {7FD42DF7-442E-479A-BA76-D0022F99702A} - Win32Proj - VideoObjectOnVideo - - - - Application - Unicode - v140 - - - Application - Unicode - v140 - - - Application - Unicode - true - v140 - - - Application - Unicode - true - v140 - - - - - - - - - - - - - - - - - - - - - bin\ - obj\$(Configuration)\ - $(ProjectName)_debug - true - true - - - bin\ - obj\$(Configuration)\ - $(ProjectName)_debug - true - true - - - bin\ - obj\$(Configuration)\ - false - - - bin\ - obj\$(Configuration)\ - false - - - - Disabled - EnableFastChecks - %(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - %(AdditionalIncludeDirectories);src - CompileAsCpp - - - true - Console - false - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - - - - - - Disabled - EnableFastChecks - %(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - %(AdditionalIncludeDirectories);src - CompileAsCpp - true - - - true - Console - false - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - - - - - - false - %(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - %(AdditionalIncludeDirectories);src - CompileAsCpp - true - - - false - false - Console - true - true - false - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - - - - - - false - %(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - %(AdditionalIncludeDirectories);src - CompileAsCpp - - - false - false - Console - true - true - false - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - - - - - - - - - - - - - {5837595d-aca9-485c-8e76-729040ce4b0b} - - - - - /D_DEBUG %(AdditionalOptions) - /D_DEBUG %(AdditionalOptions) - $(OF_ROOT)\libs\openFrameworksCompiled\project\vs - - - - - - - - - diff --git a/VideoObjectOnVideo/VideoObjectOnVideo.vcxproj.filters b/VideoObjectOnVideo/VideoObjectOnVideo.vcxproj.filters deleted file mode 100644 index c532538..0000000 --- a/VideoObjectOnVideo/VideoObjectOnVideo.vcxproj.filters +++ /dev/null @@ -1,24 +0,0 @@ - - - - - src - - - src - - - - - {d8376475-7454-4a24-b08a-aac121d3ad6f} - - - - - src - - - - - - diff --git a/VideoObjectOnVideo/VideoObjectOnVideo.vcxproj.user b/VideoObjectOnVideo/VideoObjectOnVideo.vcxproj.user deleted file mode 100644 index 988b987..0000000 --- a/VideoObjectOnVideo/VideoObjectOnVideo.vcxproj.user +++ /dev/null @@ -1,19 +0,0 @@ - - - - $(ProjectDir)/bin - WindowsLocalDebugger - - - $(ProjectDir)/bin - WindowsLocalDebugger - - - $(ProjectDir)/bin - WindowsLocalDebugger - - - $(ProjectDir)/bin - WindowsLocalDebugger - - \ No newline at end of file diff --git a/VideoObjectOnVideo/VideoObjectOnVideo.xcodeproj/project.pbxproj b/VideoObjectOnVideo/VideoObjectOnVideo.xcodeproj/project.pbxproj deleted file mode 100644 index b6c752d..0000000 --- a/VideoObjectOnVideo/VideoObjectOnVideo.xcodeproj/project.pbxproj +++ /dev/null @@ -1,641 +0,0 @@ - - - - archiveVersion - 1 - classes - - objectVersion - 46 - objects - - 6948EE371B920CB800B5AC1A - - children - - isa - PBXGroup - name - local_addons - sourceTree - <group> - - BB4B014C10F69532006C3DED - - children - - isa - PBXGroup - name - addons - sourceTree - <group> - - E4328143138ABC890047C5CB - - isa - PBXFileReference - lastKnownFileType - wrapper.pb-project - name - openFrameworksLib.xcodeproj - path - ../../../libs/openFrameworksCompiled/project/osx/openFrameworksLib.xcodeproj - sourceTree - SOURCE_ROOT - - E4328144138ABC890047C5CB - - children - - E4328148138ABC890047C5CB - - isa - PBXGroup - name - Products - sourceTree - <group> - - E4328147138ABC890047C5CB - - containerPortal - E4328143138ABC890047C5CB - isa - PBXContainerItemProxy - proxyType - 2 - remoteGlobalIDString - E4B27C1510CBEB8E00536013 - remoteInfo - openFrameworks - - E4328148138ABC890047C5CB - - fileType - archive.ar - isa - PBXReferenceProxy - path - openFrameworksDebug.a - remoteRef - E4328147138ABC890047C5CB - sourceTree - BUILT_PRODUCTS_DIR - - E4328149138ABC9F0047C5CB - - fileRef - E4328148138ABC890047C5CB - isa - PBXBuildFile - - E4B69B4A0A3A1720003C02F2 - - children - - E4B6FCAD0C3E899E008CF71C - E4EB6923138AFD0F00A09F29 - E4B69E1C0A3A1BDC003C02F2 - E4EEC9E9138DF44700A80321 - BB4B014C10F69532006C3DED - 6948EE371B920CB800B5AC1A - E4B69B5B0A3A1756003C02F2 - - isa - PBXGroup - sourceTree - <group> - - E4B69B4C0A3A1720003C02F2 - - attributes - - LastUpgradeCheck - 0600 - - buildConfigurationList - E4B69B4D0A3A1720003C02F2 - compatibilityVersion - Xcode 3.2 - developmentRegion - English - hasScannedForEncodings - 0 - isa - PBXProject - knownRegions - - English - Japanese - French - German - - mainGroup - E4B69B4A0A3A1720003C02F2 - productRefGroup - E4B69B4A0A3A1720003C02F2 - projectDirPath - - projectReferences - - - ProductGroup - E4328144138ABC890047C5CB - ProjectRef - E4328143138ABC890047C5CB - - - projectRoot - - targets - - E4B69B5A0A3A1756003C02F2 - - - E4B69B4D0A3A1720003C02F2 - - buildConfigurations - - E4B69B4E0A3A1720003C02F2 - E4B69B4F0A3A1720003C02F2 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - E4B69B4E0A3A1720003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - CONFIGURATION_BUILD_DIR - $(SRCROOT)/bin/ - COPY_PHASE_STRIP - NO - DEAD_CODE_STRIPPING - YES - GCC_AUTO_VECTORIZATION - YES - GCC_ENABLE_SSE3_EXTENSIONS - YES - GCC_ENABLE_SUPPLEMENTAL_SSE3_INSTRUCTIONS - YES - GCC_INLINES_ARE_PRIVATE_EXTERN - NO - GCC_OPTIMIZATION_LEVEL - 0 - GCC_SYMBOLS_PRIVATE_EXTERN - NO - GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS - YES - GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO - NO - GCC_WARN_ALLOW_INCOMPLETE_PROTOCOL - NO - GCC_WARN_UNINITIALIZED_AUTOS - NO - GCC_WARN_UNUSED_VALUE - NO - GCC_WARN_UNUSED_VARIABLE - NO - MACOSX_DEPLOYMENT_TARGET - 10.8 - ONLY_ACTIVE_ARCH - YES - OTHER_CPLUSPLUSFLAGS - - -D__MACOSX_CORE__ - -mtune=native - - SDKROOT - macosx - - isa - XCBuildConfiguration - name - Debug - - E4B69B4F0A3A1720003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - CONFIGURATION_BUILD_DIR - $(SRCROOT)/bin/ - COPY_PHASE_STRIP - YES - DEAD_CODE_STRIPPING - YES - GCC_AUTO_VECTORIZATION - YES - GCC_ENABLE_SSE3_EXTENSIONS - YES - GCC_ENABLE_SUPPLEMENTAL_SSE3_INSTRUCTIONS - YES - GCC_INLINES_ARE_PRIVATE_EXTERN - NO - GCC_OPTIMIZATION_LEVEL - 3 - GCC_SYMBOLS_PRIVATE_EXTERN - NO - GCC_UNROLL_LOOPS - YES - GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS - YES - GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO - NO - GCC_WARN_ALLOW_INCOMPLETE_PROTOCOL - NO - GCC_WARN_UNINITIALIZED_AUTOS - NO - GCC_WARN_UNUSED_VALUE - NO - GCC_WARN_UNUSED_VARIABLE - NO - MACOSX_DEPLOYMENT_TARGET - 10.8 - OTHER_CPLUSPLUSFLAGS - - -D__MACOSX_CORE__ - -mtune=native - - SDKROOT - macosx - - isa - XCBuildConfiguration - name - Release - - E4B69B580A3A1756003C02F2 - - buildActionMask - 2147483647 - files - - E4B69E200A3A1BDC003C02F2 - E4B69E210A3A1BDC003C02F2 - - isa - PBXSourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - E4B69B590A3A1756003C02F2 - - buildActionMask - 2147483647 - files - - E4328149138ABC9F0047C5CB - - isa - PBXFrameworksBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - E4B69B5A0A3A1756003C02F2 - - buildConfigurationList - E4B69B5F0A3A1757003C02F2 - buildPhases - - E4B69B580A3A1756003C02F2 - E4B69B590A3A1756003C02F2 - E4B6FFFD0C3F9AB9008CF71C - E4C2427710CC5ABF004149E2 - - buildRules - - dependencies - - E4EEB9AC138B136A00A80321 - - isa - PBXNativeTarget - name - VideoObjectOnVideo - productName - myOFApp - productReference - E4B69B5B0A3A1756003C02F2 - productType - com.apple.product-type.application - - E4B69B5B0A3A1756003C02F2 - - explicitFileType - wrapper.application - includeInIndex - 0 - isa - PBXFileReference - path - VideoObjectOnVideoDebug.app - sourceTree - BUILT_PRODUCTS_DIR - - E4B69B5F0A3A1757003C02F2 - - buildConfigurations - - E4B69B600A3A1757003C02F2 - E4B69B610A3A1757003C02F2 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - E4B69B600A3A1757003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - COMBINE_HIDPI_IMAGES - YES - COPY_PHASE_STRIP - NO - FRAMEWORK_SEARCH_PATHS - - $(inherited) - $(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1) - - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 - "$(SRCROOT)/../../../libs/glut/lib/osx" - GCC_DYNAMIC_NO_PIC - NO - GCC_GENERATE_DEBUGGING_SYMBOLS - YES - GCC_MODEL_TUNING - NONE - ICON - $(ICON_NAME_DEBUG) - ICON_FILE - $(ICON_FILE_PATH)$(ICON) - INFOPLIST_FILE - openFrameworks-Info.plist - INSTALL_PATH - /Applications - LIBRARY_SEARCH_PATHS - $(inherited) - PRODUCT_NAME - $(TARGET_NAME)Debug - WRAPPER_EXTENSION - app - - isa - XCBuildConfiguration - name - Debug - - E4B69B610A3A1757003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - COMBINE_HIDPI_IMAGES - YES - COPY_PHASE_STRIP - YES - FRAMEWORK_SEARCH_PATHS - - $(inherited) - $(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1) - - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 - "$(SRCROOT)/../../../libs/glut/lib/osx" - GCC_GENERATE_DEBUGGING_SYMBOLS - YES - GCC_MODEL_TUNING - NONE - ICON - $(ICON_NAME_RELEASE) - ICON_FILE - $(ICON_FILE_PATH)$(ICON) - INFOPLIST_FILE - openFrameworks-Info.plist - INSTALL_PATH - /Applications - LIBRARY_SEARCH_PATHS - $(inherited) - PRODUCT_NAME - $(TARGET_NAME) - WRAPPER_EXTENSION - app - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - - isa - XCBuildConfiguration - name - Release - - E4B69E1C0A3A1BDC003C02F2 - - children - - E4B69E1D0A3A1BDC003C02F2 - E4B69E1E0A3A1BDC003C02F2 - E4B69E1F0A3A1BDC003C02F2 - - isa - PBXGroup - path - src - sourceTree - SOURCE_ROOT - - E4B69E1D0A3A1BDC003C02F2 - - fileEncoding - 30 - isa - PBXFileReference - lastKnownFileType - sourcecode.cpp.cpp - name - main.cpp - path - src/main.cpp - sourceTree - SOURCE_ROOT - - E4B69E1E0A3A1BDC003C02F2 - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofApp.cpp - path - src/ofApp.cpp - sourceTree - SOURCE_ROOT - - E4B69E1F0A3A1BDC003C02F2 - - fileEncoding - 30 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - name - ofApp.h - path - src/ofApp.h - sourceTree - SOURCE_ROOT - - E4B69E200A3A1BDC003C02F2 - - fileRef - E4B69E1D0A3A1BDC003C02F2 - isa - PBXBuildFile - - E4B69E210A3A1BDC003C02F2 - - fileRef - E4B69E1E0A3A1BDC003C02F2 - isa - PBXBuildFile - - E4B6FCAD0C3E899E008CF71C - - fileEncoding - 30 - isa - PBXFileReference - lastKnownFileType - text.plist.xml - path - openFrameworks-Info.plist - sourceTree - <group> - - E4B6FFFD0C3F9AB9008CF71C - - buildActionMask - 2147483647 - files - - inputPaths - - isa - PBXShellScriptBuildPhase - outputPaths - - runOnlyForDeploymentPostprocessing - 0 - shellPath - /bin/sh - shellScript - mkdir -p "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Resources/" -# Copy default icon file into App/Resources -rsync -aved "$ICON_FILE" "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Resources/" -# Copy libfmod and change install directory for fmod to run -rsync -aved ../../../libs/fmodex/lib/osx/libfmodex.dylib "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Frameworks/"; -install_name_tool -change @executable_path/libfmodex.dylib @executable_path/../Frameworks/libfmodex.dylib "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/MacOS/$PRODUCT_NAME"; -# Copy GLUT framework (must remove for AppStore submissions) -rsync -aved ../../../libs/glut/lib/osx/GLUT.framework "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Frameworks/" - - - E4C2427710CC5ABF004149E2 - - buildActionMask - 2147483647 - dstPath - - dstSubfolderSpec - 10 - files - - isa - PBXCopyFilesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - E4EB691F138AFCF100A09F29 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - name - CoreOF.xcconfig - path - ../../../libs/openFrameworksCompiled/project/osx/CoreOF.xcconfig - sourceTree - SOURCE_ROOT - - E4EB6923138AFD0F00A09F29 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - path - Project.xcconfig - sourceTree - <group> - - E4EEB9AB138B136A00A80321 - - containerPortal - E4328143138ABC890047C5CB - isa - PBXContainerItemProxy - proxyType - 1 - remoteGlobalIDString - E4B27C1410CBEB8E00536013 - remoteInfo - openFrameworks - - E4EEB9AC138B136A00A80321 - - isa - PBXTargetDependency - name - openFrameworks - targetProxy - E4EEB9AB138B136A00A80321 - - E4EEC9E9138DF44700A80321 - - children - - E4EB691F138AFCF100A09F29 - E4328143138ABC890047C5CB - - isa - PBXGroup - name - openFrameworks - sourceTree - <group> - - - rootObject - E4B69B4C0A3A1720003C02F2 - - diff --git a/VideoObjectOnVideo/VideoObjectOnVideo.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/VideoObjectOnVideo/VideoObjectOnVideo.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 919434a..0000000 --- a/VideoObjectOnVideo/VideoObjectOnVideo.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/VideoObjectOnVideo/VideoObjectOnVideo.xcodeproj/project.xcworkspace/xcuserdata/kevinsiwoff.xcuserdatad/UserInterfaceState.xcuserstate b/VideoObjectOnVideo/VideoObjectOnVideo.xcodeproj/project.xcworkspace/xcuserdata/kevinsiwoff.xcuserdatad/UserInterfaceState.xcuserstate deleted file mode 100644 index adbd161..0000000 Binary files a/VideoObjectOnVideo/VideoObjectOnVideo.xcodeproj/project.xcworkspace/xcuserdata/kevinsiwoff.xcuserdatad/UserInterfaceState.xcuserstate and /dev/null differ diff --git a/VideoObjectOnVideo/VideoObjectOnVideo.xcodeproj/xcshareddata/xcschemes/VideoObjectOnVideo Debug.xcscheme b/VideoObjectOnVideo/VideoObjectOnVideo.xcodeproj/xcshareddata/xcschemes/VideoObjectOnVideo Debug.xcscheme deleted file mode 100644 index e5f9bb5..0000000 --- a/VideoObjectOnVideo/VideoObjectOnVideo.xcodeproj/xcshareddata/xcschemes/VideoObjectOnVideo Debug.xcscheme +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/VideoObjectOnVideo/VideoObjectOnVideo.xcodeproj/xcshareddata/xcschemes/VideoObjectOnVideo Release.xcscheme b/VideoObjectOnVideo/VideoObjectOnVideo.xcodeproj/xcshareddata/xcschemes/VideoObjectOnVideo Release.xcscheme deleted file mode 100644 index 276a22f..0000000 --- a/VideoObjectOnVideo/VideoObjectOnVideo.xcodeproj/xcshareddata/xcschemes/VideoObjectOnVideo Release.xcscheme +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/VideoObjectOnVideo/VideoObjectOnVideo.xcodeproj/xcuserdata/kevinsiwoff.xcuserdatad/xcschemes/xcschememanagement.plist b/VideoObjectOnVideo/VideoObjectOnVideo.xcodeproj/xcuserdata/kevinsiwoff.xcuserdatad/xcschemes/xcschememanagement.plist deleted file mode 100644 index 052b9a9..0000000 --- a/VideoObjectOnVideo/VideoObjectOnVideo.xcodeproj/xcuserdata/kevinsiwoff.xcuserdatad/xcschemes/xcschememanagement.plist +++ /dev/null @@ -1,19 +0,0 @@ - - - - - SchemeUserState - - VideoObjectOnVideo Debug.xcscheme_^#shared#^_ - - orderHint - 0 - - VideoObjectOnVideo Release.xcscheme_^#shared#^_ - - orderHint - 1 - - - - diff --git a/VideoObjectOnVideo/addons.make b/VideoObjectOnVideo/addons.make deleted file mode 100644 index e69de29..0000000 diff --git a/VideoObjectOnVideo/bin/data/.gitkeep b/VideoObjectOnVideo/bin/data/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/VideoObjectOnVideo/bin/data/Aurora_Police_Department_Recruitment_Video.mp4 b/VideoObjectOnVideo/bin/data/Aurora_Police_Department_Recruitment_Video.mp4 deleted file mode 100644 index 05b76ed..0000000 --- a/VideoObjectOnVideo/bin/data/Aurora_Police_Department_Recruitment_Video.mp4 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:509152c0418635990d50bfb74c351a992446c3a1d7bfb4fd38d438c55e6523da -size 7142321 diff --git a/VideoObjectOnVideo/bin/data/Windows_95_Launch-lAkuJXGldrM.mp4 b/VideoObjectOnVideo/bin/data/Windows_95_Launch-lAkuJXGldrM.mp4 deleted file mode 100644 index 78af382..0000000 --- a/VideoObjectOnVideo/bin/data/Windows_95_Launch-lAkuJXGldrM.mp4 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f83cae2d38268966409c1be82cfbd4aa474e65fb4a112272967ea764093abe2e -size 2552357 diff --git a/VideoObjectOnVideo/bin/data/presto-pizza-south-beach2_512kb.mp4 b/VideoObjectOnVideo/bin/data/presto-pizza-south-beach2_512kb.mp4 deleted file mode 100644 index 4877813..0000000 --- a/VideoObjectOnVideo/bin/data/presto-pizza-south-beach2_512kb.mp4 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1cbfbebd1aaad6e5949fe801aa059642550b9bd6dd4545cd62d2d4ef47353e8e -size 2933008 diff --git a/VideoObjectOnVideo/config.make b/VideoObjectOnVideo/config.make deleted file mode 100644 index df10f64..0000000 --- a/VideoObjectOnVideo/config.make +++ /dev/null @@ -1,142 +0,0 @@ -################################################################################ -# CONFIGURE PROJECT MAKEFILE (optional) -# This file is where we make project specific configurations. -################################################################################ - -################################################################################ -# OF ROOT -# The location of your root openFrameworks installation -# (default) OF_ROOT = ../../.. -################################################################################ -# OF_ROOT = ../../.. - -################################################################################ -# PROJECT ROOT -# The location of the project - a starting place for searching for files -# (default) PROJECT_ROOT = . (this directory) -# -################################################################################ -# PROJECT_ROOT = . - -################################################################################ -# PROJECT SPECIFIC CHECKS -# This is a project defined section to create internal makefile flags to -# conditionally enable or disable the addition of various features within -# this makefile. For instance, if you want to make changes based on whether -# GTK is installed, one might test that here and create a variable to check. -################################################################################ -# None - -################################################################################ -# PROJECT EXTERNAL SOURCE PATHS -# These are fully qualified paths that are not within the PROJECT_ROOT folder. -# Like source folders in the PROJECT_ROOT, these paths are subject to -# exlclusion via the PROJECT_EXLCUSIONS list. -# -# (default) PROJECT_EXTERNAL_SOURCE_PATHS = (blank) -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_EXTERNAL_SOURCE_PATHS = - -################################################################################ -# PROJECT EXCLUSIONS -# These makefiles assume that all folders in your current project directory -# and any listed in the PROJECT_EXTERNAL_SOURCH_PATHS are are valid locations -# to look for source code. The any folders or files that match any of the -# items in the PROJECT_EXCLUSIONS list below will be ignored. -# -# Each item in the PROJECT_EXCLUSIONS list will be treated as a complete -# string unless teh user adds a wildcard (%) operator to match subdirectories. -# GNU make only allows one wildcard for matching. The second wildcard (%) is -# treated literally. -# -# (default) PROJECT_EXCLUSIONS = (blank) -# -# Will automatically exclude the following: -# -# $(PROJECT_ROOT)/bin% -# $(PROJECT_ROOT)/obj% -# $(PROJECT_ROOT)/%.xcodeproj -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_EXCLUSIONS = - -################################################################################ -# PROJECT LINKER FLAGS -# These flags will be sent to the linker when compiling the executable. -# -# (default) PROJECT_LDFLAGS = -Wl,-rpath=./libs -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ - -# Currently, shared libraries that are needed are copied to the -# $(PROJECT_ROOT)/bin/libs directory. The following LDFLAGS tell the linker to -# add a runtime path to search for those shared libraries, since they aren't -# incorporated directly into the final executable application binary. -# TODO: should this be a default setting? -# PROJECT_LDFLAGS=-Wl,-rpath=./libs - -################################################################################ -# PROJECT DEFINES -# Create a space-delimited list of DEFINES. The list will be converted into -# CFLAGS with the "-D" flag later in the makefile. -# -# (default) PROJECT_DEFINES = (blank) -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_DEFINES = - -################################################################################ -# PROJECT CFLAGS -# This is a list of fully qualified CFLAGS required when compiling for this -# project. These CFLAGS will be used IN ADDITION TO the PLATFORM_CFLAGS -# defined in your platform specific core configuration files. These flags are -# presented to the compiler BEFORE the PROJECT_OPTIMIZATION_CFLAGS below. -# -# (default) PROJECT_CFLAGS = (blank) -# -# Note: Before adding PROJECT_CFLAGS, note that the PLATFORM_CFLAGS defined in -# your platform specific configuration file will be applied by default and -# further flags here may not be needed. -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_CFLAGS = - -################################################################################ -# PROJECT OPTIMIZATION CFLAGS -# These are lists of CFLAGS that are target-specific. While any flags could -# be conditionally added, they are usually limited to optimization flags. -# These flags are added BEFORE the PROJECT_CFLAGS. -# -# PROJECT_OPTIMIZATION_CFLAGS_RELEASE flags are only applied to RELEASE targets. -# -# (default) PROJECT_OPTIMIZATION_CFLAGS_RELEASE = (blank) -# -# PROJECT_OPTIMIZATION_CFLAGS_DEBUG flags are only applied to DEBUG targets. -# -# (default) PROJECT_OPTIMIZATION_CFLAGS_DEBUG = (blank) -# -# Note: Before adding PROJECT_OPTIMIZATION_CFLAGS, please note that the -# PLATFORM_OPTIMIZATION_CFLAGS defined in your platform specific configuration -# file will be applied by default and further optimization flags here may not -# be needed. -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_OPTIMIZATION_CFLAGS_RELEASE = -# PROJECT_OPTIMIZATION_CFLAGS_DEBUG = - -################################################################################ -# PROJECT COMPILERS -# Custom compilers can be set for CC and CXX -# (default) PROJECT_CXX = (blank) -# (default) PROJECT_CC = (blank) -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_CXX = -# PROJECT_CC = diff --git a/VideoObjectOnVideo/icon.rc b/VideoObjectOnVideo/icon.rc deleted file mode 100644 index 7e26eb3..0000000 --- a/VideoObjectOnVideo/icon.rc +++ /dev/null @@ -1,8 +0,0 @@ -// Icon Resource Definition -#define MAIN_ICON 102 - -#if defined(_DEBUG) -MAIN_ICON ICON "icon_debug.ico" -#else -MAIN_ICON ICON "icon.ico" -#endif diff --git a/VideoObjectOnVideo/openFrameworks-Info.plist b/VideoObjectOnVideo/openFrameworks-Info.plist deleted file mode 100644 index 8d64d2b..0000000 --- a/VideoObjectOnVideo/openFrameworks-Info.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - cc.openFrameworks.ofapp - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - APPL - CFBundleSignature - ???? - CFBundleVersion - 1.0 - CFBundleIconFile - ${ICON} - - diff --git a/VideoObjectOnVideo/src/main.cpp b/VideoObjectOnVideo/src/main.cpp deleted file mode 100644 index e57370b..0000000 --- a/VideoObjectOnVideo/src/main.cpp +++ /dev/null @@ -1,13 +0,0 @@ -#include "ofMain.h" -#include "ofApp.h" - -//======================================================================== -int main( ){ - ofSetupOpenGL(1024,768,OF_WINDOW); // <-------- setup the GL context - - // this kicks off the running of my app - // can be OF_WINDOW or OF_FULLSCREEN - // pass in width and height too: - ofRunApp(new ofApp()); - -} diff --git a/VideoObjectOnVideo/src/ofApp.cpp b/VideoObjectOnVideo/src/ofApp.cpp deleted file mode 100644 index aad23ef..0000000 --- a/VideoObjectOnVideo/src/ofApp.cpp +++ /dev/null @@ -1,104 +0,0 @@ -#include "ofApp.h" - -//-------------------------------------------------------------- -void ofApp::setup(){ - bgVideo.load("Aurora_Police_Department_Recruitment_Video.mp4"); - videoPanel.load("presto-pizza-south-beach2_512kb.mp4"); - windows95.load("Windows_95_Launch-lAkuJXGldrM.mp4"); - ofSetRectMode(OF_RECTMODE_CENTER); - //need to call play before we can update the videos and draw to screen - bgVideo.play(); - videoPanel.play(); - windows95.play(); - - //sets the name of our Window - ofSetWindowTitle("Presto Pizza"); -} - -//-------------------------------------------------------------- -void ofApp::update(){ - ofBackground(255, 255, 255); - //remember to update your videos to next frame - bgVideo.update(); - videoPanel.update(); - windows95.update(); -} - -//-------------------------------------------------------------- -void ofApp::draw(){ - //if both videos are loaded, then draw - if(bgVideo.isLoaded() && videoPanel.isLoaded()){ - //fmod() is a way of doing modulus with floating point numbers in C++ - - - if(fmod(ofGetElapsedTimeMillis() *0.125, 360.0) < 180.0){ - windows95.draw(ofGetWidth()/2, ofGetHeight()/2); - } else { - bgVideo.draw(ofGetWidth()/2, ofGetHeight()/2); - } - - //isolate our translation matrix - ofPushMatrix(); - ofTranslate(ofGetWidth()/2, ofGetHeight()/2); - ofRotateY(ofGetElapsedTimeMillis() *0.125); - ofRotateX(15.0f); - videoPanel.draw(0,0); - ofPopMatrix(); - } - -} - -//-------------------------------------------------------------- -void ofApp::keyPressed(int key){ - -} - -//-------------------------------------------------------------- -void ofApp::keyReleased(int key){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseMoved(int x, int y ){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseDragged(int x, int y, int button){ - -} - -//-------------------------------------------------------------- -void ofApp::mousePressed(int x, int y, int button){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseReleased(int x, int y, int button){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseEntered(int x, int y){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseExited(int x, int y){ - -} - -//-------------------------------------------------------------- -void ofApp::windowResized(int w, int h){ - -} - -//-------------------------------------------------------------- -void ofApp::gotMessage(ofMessage msg){ - -} - -//-------------------------------------------------------------- -void ofApp::dragEvent(ofDragInfo dragInfo){ - -} diff --git a/VideoObjectOnVideo/src/ofApp.h b/VideoObjectOnVideo/src/ofApp.h deleted file mode 100644 index 048e6db..0000000 --- a/VideoObjectOnVideo/src/ofApp.h +++ /dev/null @@ -1,28 +0,0 @@ -#pragma once - -#include "ofMain.h" - -class ofApp : public ofBaseApp{ - - public: - void setup(); - void update(); - void draw(); - - void keyPressed(int key); - void keyReleased(int key); - void mouseMoved(int x, int y ); - void mouseDragged(int x, int y, int button); - void mousePressed(int x, int y, int button); - void mouseReleased(int x, int y, int button); - void mouseEntered(int x, int y); - void mouseExited(int x, int y); - void windowResized(int w, int h); - void dragEvent(ofDragInfo dragInfo); - void gotMessage(ofMessage msg); - //instance variables - ofVideoPlayer bgVideo; - ofVideoPlayer videoPanel; - ofVideoPlayer windows95; - -}; diff --git a/VideoPlayerExample/Makefile b/VideoPlayerExample/Makefile deleted file mode 100644 index 8d8e4c0..0000000 --- a/VideoPlayerExample/Makefile +++ /dev/null @@ -1,13 +0,0 @@ -# Attempt to load a config.make file. -# If none is found, project defaults in config.project.make will be used. -ifneq ($(wildcard config.make),) - include config.make -endif - -# make sure the the OF_ROOT location is defined -ifndef OF_ROOT - OF_ROOT=$(realpath ../../..) -endif - -# call the project makefile! -include $(OF_ROOT)/libs/openFrameworksCompiled/project/makefileCommon/compile.project.mk diff --git a/VideoPlayerExample/Project.xcconfig b/VideoPlayerExample/Project.xcconfig deleted file mode 100644 index e570b15..0000000 --- a/VideoPlayerExample/Project.xcconfig +++ /dev/null @@ -1,17 +0,0 @@ -//THE PATH TO THE ROOT OF OUR OF PATH RELATIVE TO THIS PROJECT. -//THIS NEEDS TO BE DEFINED BEFORE CoreOF.xcconfig IS INCLUDED -OF_PATH = ../../.. - -//THIS HAS ALL THE HEADER AND LIBS FOR OF CORE -#include "../../../libs/openFrameworksCompiled/project/osx/CoreOF.xcconfig" - -//ICONS - NEW IN 0072 -ICON_NAME_DEBUG = icon-debug.icns -ICON_NAME_RELEASE = icon.icns -ICON_FILE_PATH = $(OF_PATH)/libs/openFrameworksCompiled/project/osx/ - -//IF YOU WANT AN APP TO HAVE A CUSTOM ICON - PUT THEM IN YOUR DATA FOLDER AND CHANGE ICON_FILE_PATH to: -//ICON_FILE_PATH = bin/data/ - -OTHER_LDFLAGS = $(OF_CORE_LIBS) $(OF_CORE_FRAMEWORKS) -HEADER_SEARCH_PATHS = $(OF_CORE_HEADERS) diff --git a/VideoPlayerExample/VideoPlayerExample.sln b/VideoPlayerExample/VideoPlayerExample.sln deleted file mode 100644 index 890249d..0000000 --- a/VideoPlayerExample/VideoPlayerExample.sln +++ /dev/null @@ -1,35 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 14 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "VideoPlayerExample", "VideoPlayerExample.vcxproj", "{7FD42DF7-442E-479A-BA76-D0022F99702A}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "openframeworksLib", "..\..\..\libs\openFrameworksCompiled\project\vs\openframeworksLib.vcxproj", "{5837595D-ACA9-485C-8E76-729040CE4B0B}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Debug|Win32.ActiveCfg = Debug|Win32 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Debug|Win32.Build.0 = Debug|Win32 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Debug|x64.ActiveCfg = Debug|x64 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Debug|x64.Build.0 = Debug|x64 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|Win32.ActiveCfg = Release|Win32 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|Win32.Build.0 = Release|Win32 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|x64.ActiveCfg = Release|x64 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|x64.Build.0 = Release|x64 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Debug|Win32.ActiveCfg = Debug|Win32 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Debug|Win32.Build.0 = Debug|Win32 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Debug|x64.ActiveCfg = Debug|x64 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Debug|x64.Build.0 = Debug|x64 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|Win32.ActiveCfg = Release|Win32 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|Win32.Build.0 = Release|Win32 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|x64.ActiveCfg = Release|x64 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/VideoPlayerExample/VideoPlayerExample.vcxproj b/VideoPlayerExample/VideoPlayerExample.vcxproj deleted file mode 100644 index 0c2eb94..0000000 --- a/VideoPlayerExample/VideoPlayerExample.vcxproj +++ /dev/null @@ -1,198 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {7FD42DF7-442E-479A-BA76-D0022F99702A} - Win32Proj - VideoPlayerExample - - - - Application - Unicode - v140 - - - Application - Unicode - v140 - - - Application - Unicode - true - v140 - - - Application - Unicode - true - v140 - - - - - - - - - - - - - - - - - - - - - bin\ - obj\$(Configuration)\ - $(ProjectName)_debug - true - true - - - bin\ - obj\$(Configuration)\ - $(ProjectName)_debug - true - true - - - bin\ - obj\$(Configuration)\ - false - - - bin\ - obj\$(Configuration)\ - false - - - - Disabled - EnableFastChecks - %(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - %(AdditionalIncludeDirectories);src - CompileAsCpp - - - true - Console - false - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - - - - - - Disabled - EnableFastChecks - %(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - %(AdditionalIncludeDirectories);src - CompileAsCpp - true - - - true - Console - false - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - - - - - - false - %(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - %(AdditionalIncludeDirectories);src - CompileAsCpp - true - - - false - false - Console - true - true - false - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - - - - - - false - %(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - %(AdditionalIncludeDirectories);src - CompileAsCpp - - - false - false - Console - true - true - false - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - - - - - - - - - - - - - {5837595d-aca9-485c-8e76-729040ce4b0b} - - - - - /D_DEBUG %(AdditionalOptions) - /D_DEBUG %(AdditionalOptions) - $(OF_ROOT)\libs\openFrameworksCompiled\project\vs - - - - - - - - - diff --git a/VideoPlayerExample/VideoPlayerExample.vcxproj.filters b/VideoPlayerExample/VideoPlayerExample.vcxproj.filters deleted file mode 100644 index c532538..0000000 --- a/VideoPlayerExample/VideoPlayerExample.vcxproj.filters +++ /dev/null @@ -1,24 +0,0 @@ - - - - - src - - - src - - - - - {d8376475-7454-4a24-b08a-aac121d3ad6f} - - - - - src - - - - - - diff --git a/VideoPlayerExample/VideoPlayerExample.vcxproj.user b/VideoPlayerExample/VideoPlayerExample.vcxproj.user deleted file mode 100644 index 988b987..0000000 --- a/VideoPlayerExample/VideoPlayerExample.vcxproj.user +++ /dev/null @@ -1,19 +0,0 @@ - - - - $(ProjectDir)/bin - WindowsLocalDebugger - - - $(ProjectDir)/bin - WindowsLocalDebugger - - - $(ProjectDir)/bin - WindowsLocalDebugger - - - $(ProjectDir)/bin - WindowsLocalDebugger - - \ No newline at end of file diff --git a/VideoPlayerExample/VideoPlayerExample.xcodeproj/project.pbxproj b/VideoPlayerExample/VideoPlayerExample.xcodeproj/project.pbxproj deleted file mode 100644 index f68336b..0000000 --- a/VideoPlayerExample/VideoPlayerExample.xcodeproj/project.pbxproj +++ /dev/null @@ -1,641 +0,0 @@ - - - - archiveVersion - 1 - classes - - objectVersion - 46 - objects - - 6948EE371B920CB800B5AC1A - - children - - isa - PBXGroup - name - local_addons - sourceTree - <group> - - BB4B014C10F69532006C3DED - - children - - isa - PBXGroup - name - addons - sourceTree - <group> - - E4328143138ABC890047C5CB - - isa - PBXFileReference - lastKnownFileType - wrapper.pb-project - name - openFrameworksLib.xcodeproj - path - ../../../libs/openFrameworksCompiled/project/osx/openFrameworksLib.xcodeproj - sourceTree - SOURCE_ROOT - - E4328144138ABC890047C5CB - - children - - E4328148138ABC890047C5CB - - isa - PBXGroup - name - Products - sourceTree - <group> - - E4328147138ABC890047C5CB - - containerPortal - E4328143138ABC890047C5CB - isa - PBXContainerItemProxy - proxyType - 2 - remoteGlobalIDString - E4B27C1510CBEB8E00536013 - remoteInfo - openFrameworks - - E4328148138ABC890047C5CB - - fileType - archive.ar - isa - PBXReferenceProxy - path - openFrameworksDebug.a - remoteRef - E4328147138ABC890047C5CB - sourceTree - BUILT_PRODUCTS_DIR - - E4328149138ABC9F0047C5CB - - fileRef - E4328148138ABC890047C5CB - isa - PBXBuildFile - - E4B69B4A0A3A1720003C02F2 - - children - - E4B6FCAD0C3E899E008CF71C - E4EB6923138AFD0F00A09F29 - E4B69E1C0A3A1BDC003C02F2 - E4EEC9E9138DF44700A80321 - BB4B014C10F69532006C3DED - 6948EE371B920CB800B5AC1A - E4B69B5B0A3A1756003C02F2 - - isa - PBXGroup - sourceTree - <group> - - E4B69B4C0A3A1720003C02F2 - - attributes - - LastUpgradeCheck - 0600 - - buildConfigurationList - E4B69B4D0A3A1720003C02F2 - compatibilityVersion - Xcode 3.2 - developmentRegion - English - hasScannedForEncodings - 0 - isa - PBXProject - knownRegions - - English - Japanese - French - German - - mainGroup - E4B69B4A0A3A1720003C02F2 - productRefGroup - E4B69B4A0A3A1720003C02F2 - projectDirPath - - projectReferences - - - ProductGroup - E4328144138ABC890047C5CB - ProjectRef - E4328143138ABC890047C5CB - - - projectRoot - - targets - - E4B69B5A0A3A1756003C02F2 - - - E4B69B4D0A3A1720003C02F2 - - buildConfigurations - - E4B69B4E0A3A1720003C02F2 - E4B69B4F0A3A1720003C02F2 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - E4B69B4E0A3A1720003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - CONFIGURATION_BUILD_DIR - $(SRCROOT)/bin/ - COPY_PHASE_STRIP - NO - DEAD_CODE_STRIPPING - YES - GCC_AUTO_VECTORIZATION - YES - GCC_ENABLE_SSE3_EXTENSIONS - YES - GCC_ENABLE_SUPPLEMENTAL_SSE3_INSTRUCTIONS - YES - GCC_INLINES_ARE_PRIVATE_EXTERN - NO - GCC_OPTIMIZATION_LEVEL - 0 - GCC_SYMBOLS_PRIVATE_EXTERN - NO - GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS - YES - GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO - NO - GCC_WARN_ALLOW_INCOMPLETE_PROTOCOL - NO - GCC_WARN_UNINITIALIZED_AUTOS - NO - GCC_WARN_UNUSED_VALUE - NO - GCC_WARN_UNUSED_VARIABLE - NO - MACOSX_DEPLOYMENT_TARGET - 10.8 - ONLY_ACTIVE_ARCH - YES - OTHER_CPLUSPLUSFLAGS - - -D__MACOSX_CORE__ - -mtune=native - - SDKROOT - macosx - - isa - XCBuildConfiguration - name - Debug - - E4B69B4F0A3A1720003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - CONFIGURATION_BUILD_DIR - $(SRCROOT)/bin/ - COPY_PHASE_STRIP - YES - DEAD_CODE_STRIPPING - YES - GCC_AUTO_VECTORIZATION - YES - GCC_ENABLE_SSE3_EXTENSIONS - YES - GCC_ENABLE_SUPPLEMENTAL_SSE3_INSTRUCTIONS - YES - GCC_INLINES_ARE_PRIVATE_EXTERN - NO - GCC_OPTIMIZATION_LEVEL - 3 - GCC_SYMBOLS_PRIVATE_EXTERN - NO - GCC_UNROLL_LOOPS - YES - GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS - YES - GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO - NO - GCC_WARN_ALLOW_INCOMPLETE_PROTOCOL - NO - GCC_WARN_UNINITIALIZED_AUTOS - NO - GCC_WARN_UNUSED_VALUE - NO - GCC_WARN_UNUSED_VARIABLE - NO - MACOSX_DEPLOYMENT_TARGET - 10.8 - OTHER_CPLUSPLUSFLAGS - - -D__MACOSX_CORE__ - -mtune=native - - SDKROOT - macosx - - isa - XCBuildConfiguration - name - Release - - E4B69B580A3A1756003C02F2 - - buildActionMask - 2147483647 - files - - E4B69E200A3A1BDC003C02F2 - E4B69E210A3A1BDC003C02F2 - - isa - PBXSourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - E4B69B590A3A1756003C02F2 - - buildActionMask - 2147483647 - files - - E4328149138ABC9F0047C5CB - - isa - PBXFrameworksBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - E4B69B5A0A3A1756003C02F2 - - buildConfigurationList - E4B69B5F0A3A1757003C02F2 - buildPhases - - E4B69B580A3A1756003C02F2 - E4B69B590A3A1756003C02F2 - E4B6FFFD0C3F9AB9008CF71C - E4C2427710CC5ABF004149E2 - - buildRules - - dependencies - - E4EEB9AC138B136A00A80321 - - isa - PBXNativeTarget - name - VideoPlayerExample - productName - myOFApp - productReference - E4B69B5B0A3A1756003C02F2 - productType - com.apple.product-type.application - - E4B69B5B0A3A1756003C02F2 - - explicitFileType - wrapper.application - includeInIndex - 0 - isa - PBXFileReference - path - VideoPlayerExampleDebug.app - sourceTree - BUILT_PRODUCTS_DIR - - E4B69B5F0A3A1757003C02F2 - - buildConfigurations - - E4B69B600A3A1757003C02F2 - E4B69B610A3A1757003C02F2 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - E4B69B600A3A1757003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - COMBINE_HIDPI_IMAGES - YES - COPY_PHASE_STRIP - NO - FRAMEWORK_SEARCH_PATHS - - $(inherited) - $(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1) - - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 - "$(SRCROOT)/../../../libs/glut/lib/osx" - GCC_DYNAMIC_NO_PIC - NO - GCC_GENERATE_DEBUGGING_SYMBOLS - YES - GCC_MODEL_TUNING - NONE - ICON - $(ICON_NAME_DEBUG) - ICON_FILE - $(ICON_FILE_PATH)$(ICON) - INFOPLIST_FILE - openFrameworks-Info.plist - INSTALL_PATH - /Applications - LIBRARY_SEARCH_PATHS - $(inherited) - PRODUCT_NAME - $(TARGET_NAME)Debug - WRAPPER_EXTENSION - app - - isa - XCBuildConfiguration - name - Debug - - E4B69B610A3A1757003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - COMBINE_HIDPI_IMAGES - YES - COPY_PHASE_STRIP - YES - FRAMEWORK_SEARCH_PATHS - - $(inherited) - $(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1) - - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 - "$(SRCROOT)/../../../libs/glut/lib/osx" - GCC_GENERATE_DEBUGGING_SYMBOLS - YES - GCC_MODEL_TUNING - NONE - ICON - $(ICON_NAME_RELEASE) - ICON_FILE - $(ICON_FILE_PATH)$(ICON) - INFOPLIST_FILE - openFrameworks-Info.plist - INSTALL_PATH - /Applications - LIBRARY_SEARCH_PATHS - $(inherited) - PRODUCT_NAME - $(TARGET_NAME) - WRAPPER_EXTENSION - app - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - - isa - XCBuildConfiguration - name - Release - - E4B69E1C0A3A1BDC003C02F2 - - children - - E4B69E1D0A3A1BDC003C02F2 - E4B69E1E0A3A1BDC003C02F2 - E4B69E1F0A3A1BDC003C02F2 - - isa - PBXGroup - path - src - sourceTree - SOURCE_ROOT - - E4B69E1D0A3A1BDC003C02F2 - - fileEncoding - 30 - isa - PBXFileReference - lastKnownFileType - sourcecode.cpp.cpp - name - main.cpp - path - src/main.cpp - sourceTree - SOURCE_ROOT - - E4B69E1E0A3A1BDC003C02F2 - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofApp.cpp - path - src/ofApp.cpp - sourceTree - SOURCE_ROOT - - E4B69E1F0A3A1BDC003C02F2 - - fileEncoding - 30 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - name - ofApp.h - path - src/ofApp.h - sourceTree - SOURCE_ROOT - - E4B69E200A3A1BDC003C02F2 - - fileRef - E4B69E1D0A3A1BDC003C02F2 - isa - PBXBuildFile - - E4B69E210A3A1BDC003C02F2 - - fileRef - E4B69E1E0A3A1BDC003C02F2 - isa - PBXBuildFile - - E4B6FCAD0C3E899E008CF71C - - fileEncoding - 30 - isa - PBXFileReference - lastKnownFileType - text.plist.xml - path - openFrameworks-Info.plist - sourceTree - <group> - - E4B6FFFD0C3F9AB9008CF71C - - buildActionMask - 2147483647 - files - - inputPaths - - isa - PBXShellScriptBuildPhase - outputPaths - - runOnlyForDeploymentPostprocessing - 0 - shellPath - /bin/sh - shellScript - mkdir -p "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Resources/" -# Copy default icon file into App/Resources -rsync -aved "$ICON_FILE" "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Resources/" -# Copy libfmod and change install directory for fmod to run -rsync -aved ../../../libs/fmodex/lib/osx/libfmodex.dylib "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Frameworks/"; -install_name_tool -change @executable_path/libfmodex.dylib @executable_path/../Frameworks/libfmodex.dylib "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/MacOS/$PRODUCT_NAME"; -# Copy GLUT framework (must remove for AppStore submissions) -rsync -aved ../../../libs/glut/lib/osx/GLUT.framework "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Frameworks/" - - - E4C2427710CC5ABF004149E2 - - buildActionMask - 2147483647 - dstPath - - dstSubfolderSpec - 10 - files - - isa - PBXCopyFilesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - E4EB691F138AFCF100A09F29 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - name - CoreOF.xcconfig - path - ../../../libs/openFrameworksCompiled/project/osx/CoreOF.xcconfig - sourceTree - SOURCE_ROOT - - E4EB6923138AFD0F00A09F29 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - path - Project.xcconfig - sourceTree - <group> - - E4EEB9AB138B136A00A80321 - - containerPortal - E4328143138ABC890047C5CB - isa - PBXContainerItemProxy - proxyType - 1 - remoteGlobalIDString - E4B27C1410CBEB8E00536013 - remoteInfo - openFrameworks - - E4EEB9AC138B136A00A80321 - - isa - PBXTargetDependency - name - openFrameworks - targetProxy - E4EEB9AB138B136A00A80321 - - E4EEC9E9138DF44700A80321 - - children - - E4EB691F138AFCF100A09F29 - E4328143138ABC890047C5CB - - isa - PBXGroup - name - openFrameworks - sourceTree - <group> - - - rootObject - E4B69B4C0A3A1720003C02F2 - - diff --git a/VideoPlayerExample/VideoPlayerExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/VideoPlayerExample/VideoPlayerExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 919434a..0000000 --- a/VideoPlayerExample/VideoPlayerExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/VideoPlayerExample/VideoPlayerExample.xcodeproj/project.xcworkspace/xcuserdata/kevinsiwoff.xcuserdatad/UserInterfaceState.xcuserstate b/VideoPlayerExample/VideoPlayerExample.xcodeproj/project.xcworkspace/xcuserdata/kevinsiwoff.xcuserdatad/UserInterfaceState.xcuserstate deleted file mode 100644 index 6a43370..0000000 Binary files a/VideoPlayerExample/VideoPlayerExample.xcodeproj/project.xcworkspace/xcuserdata/kevinsiwoff.xcuserdatad/UserInterfaceState.xcuserstate and /dev/null differ diff --git a/VideoPlayerExample/VideoPlayerExample.xcodeproj/xcshareddata/xcschemes/VideoPlayerExample Debug.xcscheme b/VideoPlayerExample/VideoPlayerExample.xcodeproj/xcshareddata/xcschemes/VideoPlayerExample Debug.xcscheme deleted file mode 100644 index 1b0a5a2..0000000 --- a/VideoPlayerExample/VideoPlayerExample.xcodeproj/xcshareddata/xcschemes/VideoPlayerExample Debug.xcscheme +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/VideoPlayerExample/VideoPlayerExample.xcodeproj/xcshareddata/xcschemes/VideoPlayerExample Release.xcscheme b/VideoPlayerExample/VideoPlayerExample.xcodeproj/xcshareddata/xcschemes/VideoPlayerExample Release.xcscheme deleted file mode 100644 index d4e4af6..0000000 --- a/VideoPlayerExample/VideoPlayerExample.xcodeproj/xcshareddata/xcschemes/VideoPlayerExample Release.xcscheme +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/VideoPlayerExample/VideoPlayerExample.xcodeproj/xcuserdata/kevinsiwoff.xcuserdatad/xcschemes/xcschememanagement.plist b/VideoPlayerExample/VideoPlayerExample.xcodeproj/xcuserdata/kevinsiwoff.xcuserdatad/xcschemes/xcschememanagement.plist deleted file mode 100644 index b0f8492..0000000 --- a/VideoPlayerExample/VideoPlayerExample.xcodeproj/xcuserdata/kevinsiwoff.xcuserdatad/xcschemes/xcschememanagement.plist +++ /dev/null @@ -1,19 +0,0 @@ - - - - - SchemeUserState - - VideoPlayerExample Debug.xcscheme_^#shared#^_ - - orderHint - 0 - - VideoPlayerExample Release.xcscheme_^#shared#^_ - - orderHint - 1 - - - - diff --git a/VideoPlayerExample/addons.make b/VideoPlayerExample/addons.make deleted file mode 100644 index e69de29..0000000 diff --git a/VideoPlayerExample/bin/data/.gitkeep b/VideoPlayerExample/bin/data/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/VideoPlayerExample/config.make b/VideoPlayerExample/config.make deleted file mode 100644 index df10f64..0000000 --- a/VideoPlayerExample/config.make +++ /dev/null @@ -1,142 +0,0 @@ -################################################################################ -# CONFIGURE PROJECT MAKEFILE (optional) -# This file is where we make project specific configurations. -################################################################################ - -################################################################################ -# OF ROOT -# The location of your root openFrameworks installation -# (default) OF_ROOT = ../../.. -################################################################################ -# OF_ROOT = ../../.. - -################################################################################ -# PROJECT ROOT -# The location of the project - a starting place for searching for files -# (default) PROJECT_ROOT = . (this directory) -# -################################################################################ -# PROJECT_ROOT = . - -################################################################################ -# PROJECT SPECIFIC CHECKS -# This is a project defined section to create internal makefile flags to -# conditionally enable or disable the addition of various features within -# this makefile. For instance, if you want to make changes based on whether -# GTK is installed, one might test that here and create a variable to check. -################################################################################ -# None - -################################################################################ -# PROJECT EXTERNAL SOURCE PATHS -# These are fully qualified paths that are not within the PROJECT_ROOT folder. -# Like source folders in the PROJECT_ROOT, these paths are subject to -# exlclusion via the PROJECT_EXLCUSIONS list. -# -# (default) PROJECT_EXTERNAL_SOURCE_PATHS = (blank) -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_EXTERNAL_SOURCE_PATHS = - -################################################################################ -# PROJECT EXCLUSIONS -# These makefiles assume that all folders in your current project directory -# and any listed in the PROJECT_EXTERNAL_SOURCH_PATHS are are valid locations -# to look for source code. The any folders or files that match any of the -# items in the PROJECT_EXCLUSIONS list below will be ignored. -# -# Each item in the PROJECT_EXCLUSIONS list will be treated as a complete -# string unless teh user adds a wildcard (%) operator to match subdirectories. -# GNU make only allows one wildcard for matching. The second wildcard (%) is -# treated literally. -# -# (default) PROJECT_EXCLUSIONS = (blank) -# -# Will automatically exclude the following: -# -# $(PROJECT_ROOT)/bin% -# $(PROJECT_ROOT)/obj% -# $(PROJECT_ROOT)/%.xcodeproj -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_EXCLUSIONS = - -################################################################################ -# PROJECT LINKER FLAGS -# These flags will be sent to the linker when compiling the executable. -# -# (default) PROJECT_LDFLAGS = -Wl,-rpath=./libs -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ - -# Currently, shared libraries that are needed are copied to the -# $(PROJECT_ROOT)/bin/libs directory. The following LDFLAGS tell the linker to -# add a runtime path to search for those shared libraries, since they aren't -# incorporated directly into the final executable application binary. -# TODO: should this be a default setting? -# PROJECT_LDFLAGS=-Wl,-rpath=./libs - -################################################################################ -# PROJECT DEFINES -# Create a space-delimited list of DEFINES. The list will be converted into -# CFLAGS with the "-D" flag later in the makefile. -# -# (default) PROJECT_DEFINES = (blank) -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_DEFINES = - -################################################################################ -# PROJECT CFLAGS -# This is a list of fully qualified CFLAGS required when compiling for this -# project. These CFLAGS will be used IN ADDITION TO the PLATFORM_CFLAGS -# defined in your platform specific core configuration files. These flags are -# presented to the compiler BEFORE the PROJECT_OPTIMIZATION_CFLAGS below. -# -# (default) PROJECT_CFLAGS = (blank) -# -# Note: Before adding PROJECT_CFLAGS, note that the PLATFORM_CFLAGS defined in -# your platform specific configuration file will be applied by default and -# further flags here may not be needed. -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_CFLAGS = - -################################################################################ -# PROJECT OPTIMIZATION CFLAGS -# These are lists of CFLAGS that are target-specific. While any flags could -# be conditionally added, they are usually limited to optimization flags. -# These flags are added BEFORE the PROJECT_CFLAGS. -# -# PROJECT_OPTIMIZATION_CFLAGS_RELEASE flags are only applied to RELEASE targets. -# -# (default) PROJECT_OPTIMIZATION_CFLAGS_RELEASE = (blank) -# -# PROJECT_OPTIMIZATION_CFLAGS_DEBUG flags are only applied to DEBUG targets. -# -# (default) PROJECT_OPTIMIZATION_CFLAGS_DEBUG = (blank) -# -# Note: Before adding PROJECT_OPTIMIZATION_CFLAGS, please note that the -# PLATFORM_OPTIMIZATION_CFLAGS defined in your platform specific configuration -# file will be applied by default and further optimization flags here may not -# be needed. -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_OPTIMIZATION_CFLAGS_RELEASE = -# PROJECT_OPTIMIZATION_CFLAGS_DEBUG = - -################################################################################ -# PROJECT COMPILERS -# Custom compilers can be set for CC and CXX -# (default) PROJECT_CXX = (blank) -# (default) PROJECT_CC = (blank) -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_CXX = -# PROJECT_CC = diff --git a/VideoPlayerExample/icon.rc b/VideoPlayerExample/icon.rc deleted file mode 100644 index 7e26eb3..0000000 --- a/VideoPlayerExample/icon.rc +++ /dev/null @@ -1,8 +0,0 @@ -// Icon Resource Definition -#define MAIN_ICON 102 - -#if defined(_DEBUG) -MAIN_ICON ICON "icon_debug.ico" -#else -MAIN_ICON ICON "icon.ico" -#endif diff --git a/VideoPlayerExample/openFrameworks-Info.plist b/VideoPlayerExample/openFrameworks-Info.plist deleted file mode 100644 index 8d64d2b..0000000 --- a/VideoPlayerExample/openFrameworks-Info.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - cc.openFrameworks.ofapp - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - APPL - CFBundleSignature - ???? - CFBundleVersion - 1.0 - CFBundleIconFile - ${ICON} - - diff --git a/VideoPlayerExample/src/main.cpp b/VideoPlayerExample/src/main.cpp deleted file mode 100644 index e57370b..0000000 --- a/VideoPlayerExample/src/main.cpp +++ /dev/null @@ -1,13 +0,0 @@ -#include "ofMain.h" -#include "ofApp.h" - -//======================================================================== -int main( ){ - ofSetupOpenGL(1024,768,OF_WINDOW); // <-------- setup the GL context - - // this kicks off the running of my app - // can be OF_WINDOW or OF_FULLSCREEN - // pass in width and height too: - ofRunApp(new ofApp()); - -} diff --git a/VideoPlayerExample/src/ofApp.cpp b/VideoPlayerExample/src/ofApp.cpp deleted file mode 100644 index d5dcfeb..0000000 --- a/VideoPlayerExample/src/ofApp.cpp +++ /dev/null @@ -1,72 +0,0 @@ -#include "ofApp.h" - -//-------------------------------------------------------------- -void ofApp::setup(){ - player.load(""); - player.play(); -} - -//-------------------------------------------------------------- -void ofApp::update(){ - player.update(); -} - -//-------------------------------------------------------------- -void ofApp::draw(){ - player.draw( ofGetMouseX(), ofGetHeight() /6); -} - -//-------------------------------------------------------------- -void ofApp::keyPressed(int key){ - -} - -//-------------------------------------------------------------- -void ofApp::keyReleased(int key){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseMoved(int x, int y ){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseDragged(int x, int y, int button){ - -} - -//-------------------------------------------------------------- -void ofApp::mousePressed(int x, int y, int button){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseReleased(int x, int y, int button){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseEntered(int x, int y){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseExited(int x, int y){ - -} - -//-------------------------------------------------------------- -void ofApp::windowResized(int w, int h){ - -} - -//-------------------------------------------------------------- -void ofApp::gotMessage(ofMessage msg){ - -} - -//-------------------------------------------------------------- -void ofApp::dragEvent(ofDragInfo dragInfo){ - -} diff --git a/VideoPlayerExample/src/ofApp.h b/VideoPlayerExample/src/ofApp.h deleted file mode 100644 index 05af5da..0000000 --- a/VideoPlayerExample/src/ofApp.h +++ /dev/null @@ -1,26 +0,0 @@ -#pragma once - -#include "ofMain.h" - -class ofApp : public ofBaseApp{ - - public: - void setup(); - void update(); - void draw(); - - void keyPressed(int key); - void keyReleased(int key); - void mouseMoved(int x, int y ); - void mouseDragged(int x, int y, int button); - void mousePressed(int x, int y, int button); - void mouseReleased(int x, int y, int button); - void mouseEntered(int x, int y); - void mouseExited(int x, int y); - void windowResized(int w, int h); - void dragEvent(ofDragInfo dragInfo); - void gotMessage(ofMessage msg); - - ofVideoPlayer player; - -}; diff --git a/WebcamCV_BGSubtraction/Makefile b/WebcamCV_BGSubtraction/Makefile deleted file mode 100644 index 8d8e4c0..0000000 --- a/WebcamCV_BGSubtraction/Makefile +++ /dev/null @@ -1,13 +0,0 @@ -# Attempt to load a config.make file. -# If none is found, project defaults in config.project.make will be used. -ifneq ($(wildcard config.make),) - include config.make -endif - -# make sure the the OF_ROOT location is defined -ifndef OF_ROOT - OF_ROOT=$(realpath ../../..) -endif - -# call the project makefile! -include $(OF_ROOT)/libs/openFrameworksCompiled/project/makefileCommon/compile.project.mk diff --git a/WebcamCV_BGSubtraction/Project.xcconfig b/WebcamCV_BGSubtraction/Project.xcconfig deleted file mode 100644 index e570b15..0000000 --- a/WebcamCV_BGSubtraction/Project.xcconfig +++ /dev/null @@ -1,17 +0,0 @@ -//THE PATH TO THE ROOT OF OUR OF PATH RELATIVE TO THIS PROJECT. -//THIS NEEDS TO BE DEFINED BEFORE CoreOF.xcconfig IS INCLUDED -OF_PATH = ../../.. - -//THIS HAS ALL THE HEADER AND LIBS FOR OF CORE -#include "../../../libs/openFrameworksCompiled/project/osx/CoreOF.xcconfig" - -//ICONS - NEW IN 0072 -ICON_NAME_DEBUG = icon-debug.icns -ICON_NAME_RELEASE = icon.icns -ICON_FILE_PATH = $(OF_PATH)/libs/openFrameworksCompiled/project/osx/ - -//IF YOU WANT AN APP TO HAVE A CUSTOM ICON - PUT THEM IN YOUR DATA FOLDER AND CHANGE ICON_FILE_PATH to: -//ICON_FILE_PATH = bin/data/ - -OTHER_LDFLAGS = $(OF_CORE_LIBS) $(OF_CORE_FRAMEWORKS) -HEADER_SEARCH_PATHS = $(OF_CORE_HEADERS) diff --git a/WebcamCV_BGSubtraction/WebcamCV_BGSubtraction.sln b/WebcamCV_BGSubtraction/WebcamCV_BGSubtraction.sln deleted file mode 100644 index 5783128..0000000 --- a/WebcamCV_BGSubtraction/WebcamCV_BGSubtraction.sln +++ /dev/null @@ -1,35 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 14 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "WebcamCV_BGSubtraction", "WebcamCV_BGSubtraction.vcxproj", "{7FD42DF7-442E-479A-BA76-D0022F99702A}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "openframeworksLib", "..\..\..\libs\openFrameworksCompiled\project\vs\openframeworksLib.vcxproj", "{5837595D-ACA9-485C-8E76-729040CE4B0B}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Debug|Win32.ActiveCfg = Debug|Win32 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Debug|Win32.Build.0 = Debug|Win32 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Debug|x64.ActiveCfg = Debug|x64 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Debug|x64.Build.0 = Debug|x64 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|Win32.ActiveCfg = Release|Win32 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|Win32.Build.0 = Release|Win32 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|x64.ActiveCfg = Release|x64 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|x64.Build.0 = Release|x64 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Debug|Win32.ActiveCfg = Debug|Win32 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Debug|Win32.Build.0 = Debug|Win32 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Debug|x64.ActiveCfg = Debug|x64 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Debug|x64.Build.0 = Debug|x64 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|Win32.ActiveCfg = Release|Win32 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|Win32.Build.0 = Release|Win32 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|x64.ActiveCfg = Release|x64 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/WebcamCV_BGSubtraction/WebcamCV_BGSubtraction.vcxproj b/WebcamCV_BGSubtraction/WebcamCV_BGSubtraction.vcxproj deleted file mode 100644 index 5410613..0000000 --- a/WebcamCV_BGSubtraction/WebcamCV_BGSubtraction.vcxproj +++ /dev/null @@ -1,374 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {7FD42DF7-442E-479A-BA76-D0022F99702A} - Win32Proj - WebcamCV_BGSubtraction - - - - Application - Unicode - v140 - - - Application - Unicode - v140 - - - Application - Unicode - true - v140 - - - Application - Unicode - true - v140 - - - - - - - - - - - - - - - - - - - - - bin\ - obj\$(Configuration)\ - $(ProjectName)_debug - true - true - - - bin\ - obj\$(Configuration)\ - $(ProjectName)_debug - true - true - - - bin\ - obj\$(Configuration)\ - false - - - bin\ - obj\$(Configuration)\ - false - - - - Disabled - EnableFastChecks - %(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - %(AdditionalIncludeDirectories);src;..\..\..\addons\ofxOpenCv\libs;..\..\..\addons\ofxOpenCv\libs\opencv;..\..\..\addons\ofxOpenCv\libs\opencv\include;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\calib3d;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\contrib;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\core;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\features2d;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\flann;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\gpu;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device\detail;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\highgui;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\imgproc;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\legacy;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\ml;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\nonfree;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\objdetect;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\photo;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\stitching;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\stitching\detail;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\superres;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\ts;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\video;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\videostab;..\..\..\addons\ofxOpenCv\libs\opencv\lib;..\..\..\addons\ofxOpenCv\libs\opencv\lib\emscripten;..\..\..\addons\ofxOpenCv\libs\opencv\license;..\..\..\addons\ofxOpenCv\src - CompileAsCpp - - - true - Console - false - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - - - - - - Disabled - EnableFastChecks - %(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - %(AdditionalIncludeDirectories);src;..\..\..\addons\ofxOpenCv\libs;..\..\..\addons\ofxOpenCv\libs\opencv;..\..\..\addons\ofxOpenCv\libs\opencv\include;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\calib3d;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\contrib;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\core;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\features2d;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\flann;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\gpu;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device\detail;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\highgui;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\imgproc;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\legacy;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\ml;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\nonfree;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\objdetect;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\photo;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\stitching;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\stitching\detail;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\superres;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\ts;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\video;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\videostab;..\..\..\addons\ofxOpenCv\libs\opencv\lib;..\..\..\addons\ofxOpenCv\libs\opencv\lib\emscripten;..\..\..\addons\ofxOpenCv\libs\opencv\license;..\..\..\addons\ofxOpenCv\src - CompileAsCpp - true - - - true - Console - false - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - - - - - - false - %(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - %(AdditionalIncludeDirectories);src;..\..\..\addons\ofxOpenCv\libs;..\..\..\addons\ofxOpenCv\libs\opencv;..\..\..\addons\ofxOpenCv\libs\opencv\include;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\calib3d;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\contrib;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\core;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\features2d;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\flann;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\gpu;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device\detail;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\highgui;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\imgproc;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\legacy;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\ml;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\nonfree;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\objdetect;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\photo;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\stitching;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\stitching\detail;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\superres;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\ts;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\video;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\videostab;..\..\..\addons\ofxOpenCv\libs\opencv\lib;..\..\..\addons\ofxOpenCv\libs\opencv\lib\emscripten;..\..\..\addons\ofxOpenCv\libs\opencv\license;..\..\..\addons\ofxOpenCv\src - CompileAsCpp - true - - - false - false - Console - true - true - false - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - - - - - - false - %(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - %(AdditionalIncludeDirectories);src;..\..\..\addons\ofxOpenCv\libs;..\..\..\addons\ofxOpenCv\libs\opencv;..\..\..\addons\ofxOpenCv\libs\opencv\include;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\calib3d;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\contrib;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\core;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\features2d;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\flann;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\gpu;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device\detail;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\highgui;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\imgproc;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\legacy;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\ml;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\nonfree;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\objdetect;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\photo;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\stitching;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\stitching\detail;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\superres;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\ts;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\video;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\videostab;..\..\..\addons\ofxOpenCv\libs\opencv\lib;..\..\..\addons\ofxOpenCv\libs\opencv\lib\emscripten;..\..\..\addons\ofxOpenCv\libs\opencv\license;..\..\..\addons\ofxOpenCv\src - CompileAsCpp - - - false - false - Console - true - true - false - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {5837595d-aca9-485c-8e76-729040ce4b0b} - - - - - /D_DEBUG %(AdditionalOptions) - /D_DEBUG %(AdditionalOptions) - $(OF_ROOT)\libs\openFrameworksCompiled\project\vs - - - - - - - - - diff --git a/WebcamCV_BGSubtraction/WebcamCV_BGSubtraction.vcxproj.filters b/WebcamCV_BGSubtraction/WebcamCV_BGSubtraction.vcxproj.filters deleted file mode 100644 index 3b40d79..0000000 --- a/WebcamCV_BGSubtraction/WebcamCV_BGSubtraction.vcxproj.filters +++ /dev/null @@ -1,639 +0,0 @@ - - - - - src - - - src - - - addons\ofxOpenCv\src - - - addons\ofxOpenCv\src - - - addons\ofxOpenCv\src - - - addons\ofxOpenCv\src - - - addons\ofxOpenCv\src - - - addons\ofxOpenCv\src - - - addons\ofxOpenCv\src - - - - - {d8376475-7454-4a24-b08a-aac121d3ad6f} - - - {71834F65-F3A9-211E-73B8-DC85} - - - {FFA81411-43B9-BD99-75AF-1DC3} - - - {00DE84A0-C30B-9800-5466-EA40} - - - {EFE72F22-7F5A-0F39-EC5E-1382} - - - {0391AB06-09E3-B0B3-3E3B-A02B} - - - {18BB18A3-47A8-9F08-1A3F-16FC} - - - {C867B0DE-B007-11B8-C182-5344} - - - {BCD8ABD4-43E3-302D-A2D3-9FE1} - - - {8C35B9C2-29E6-F32E-3851-F20E} - - - {D2BBE5C7-0D36-257F-DD81-67F0} - - - {61E04F54-C77F-B674-C2AB-FEC2} - - - {82D85C2C-89A0-69CF-61C4-9983} - - - {87ED3A19-22E3-EF06-2780-6215} - - - {F2467EC2-B4B5-D403-2F39-AA9A} - - - {35E18472-D925-59BD-12EF-E1E6} - - - {2ABB36D0-FBE0-DD47-75A8-5882} - - - {EA043335-259C-BCEC-5E49-545A} - - - {21D034AC-F39C-E724-350A-C7B6} - - - {E61CD652-51B9-BCE9-A2EB-3331} - - - {D1260DF5-DCB4-6729-CD66-ED90} - - - {4588FFD4-3240-6021-CF1C-66D1} - - - {776C25CB-CD33-75A7-DF99-B8C6} - - - {C217A119-B337-C774-4EDA-1ACC} - - - {C5146E31-2B8E-4299-4FB2-2347} - - - {FFED61A2-DA84-E61F-DAA8-23D8} - - - {AA1539ED-A548-EDA6-1094-37FD} - - - {D4F01CB4-61E3-5965-F3B1-CFB9} - - - {450E6EA2-482C-4DAE-EF14-EE48} - - - {E7CFFFA1-9DFA-D919-100C-FDAA} - - - - - src - - - addons\ofxOpenCv\src - - - addons\ofxOpenCv\src - - - addons\ofxOpenCv\src - - - addons\ofxOpenCv\src - - - addons\ofxOpenCv\src - - - addons\ofxOpenCv\src - - - addons\ofxOpenCv\src - - - addons\ofxOpenCv\src - - - addons\ofxOpenCv\src - - - addons\ofxOpenCv\src - - - addons\ofxOpenCv\libs\opencv\include\opencv - - - addons\ofxOpenCv\libs\opencv\include\opencv - - - addons\ofxOpenCv\libs\opencv\include\opencv - - - addons\ofxOpenCv\libs\opencv\include\opencv - - - addons\ofxOpenCv\libs\opencv\include\opencv - - - addons\ofxOpenCv\libs\opencv\include\opencv - - - addons\ofxOpenCv\libs\opencv\include\opencv - - - addons\ofxOpenCv\libs\opencv\include\opencv - - - addons\ofxOpenCv\libs\opencv\include\opencv - - - addons\ofxOpenCv\libs\opencv\include\opencv - - - addons\ofxOpenCv\libs\opencv\include\opencv - - - addons\ofxOpenCv\libs\opencv\include\opencv2\nonfree - - - addons\ofxOpenCv\libs\opencv\include\opencv2\nonfree - - - addons\ofxOpenCv\libs\opencv\include\opencv2\nonfree - - - addons\ofxOpenCv\libs\opencv\include\opencv2\nonfree - - - addons\ofxOpenCv\libs\opencv\include\opencv2\superres - - - addons\ofxOpenCv\libs\opencv\include\opencv2\superres - - - addons\ofxOpenCv\libs\opencv\include\opencv2\video - - - addons\ofxOpenCv\libs\opencv\include\opencv2\video - - - addons\ofxOpenCv\libs\opencv\include\opencv2\video - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device\detail - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device\detail - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device\detail - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device\detail - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device\detail - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device\detail - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\core - - - addons\ofxOpenCv\libs\opencv\include\opencv2\core - - - addons\ofxOpenCv\libs\opencv\include\opencv2\core - - - addons\ofxOpenCv\libs\opencv\include\opencv2\core - - - addons\ofxOpenCv\libs\opencv\include\opencv2\core - - - addons\ofxOpenCv\libs\opencv\include\opencv2\core - - - addons\ofxOpenCv\libs\opencv\include\opencv2\core - - - addons\ofxOpenCv\libs\opencv\include\opencv2\core - - - addons\ofxOpenCv\libs\opencv\include\opencv2\core - - - addons\ofxOpenCv\libs\opencv\include\opencv2\core - - - addons\ofxOpenCv\libs\opencv\include\opencv2\core - - - addons\ofxOpenCv\libs\opencv\include\opencv2\core - - - addons\ofxOpenCv\libs\opencv\include\opencv2\core - - - addons\ofxOpenCv\libs\opencv\include\opencv2\core - - - addons\ofxOpenCv\libs\opencv\include\opencv2\core - - - addons\ofxOpenCv\libs\opencv\include\opencv2\stitching - - - addons\ofxOpenCv\libs\opencv\include\opencv2\stitching\detail - - - addons\ofxOpenCv\libs\opencv\include\opencv2\stitching\detail - - - addons\ofxOpenCv\libs\opencv\include\opencv2\stitching\detail - - - addons\ofxOpenCv\libs\opencv\include\opencv2\stitching\detail - - - addons\ofxOpenCv\libs\opencv\include\opencv2\stitching\detail - - - addons\ofxOpenCv\libs\opencv\include\opencv2\stitching\detail - - - addons\ofxOpenCv\libs\opencv\include\opencv2\stitching\detail - - - addons\ofxOpenCv\libs\opencv\include\opencv2\stitching\detail - - - addons\ofxOpenCv\libs\opencv\include\opencv2\stitching\detail - - - addons\ofxOpenCv\libs\opencv\include\opencv2\stitching\detail - - - addons\ofxOpenCv\libs\opencv\include\opencv2\stitching\detail - - - addons\ofxOpenCv\libs\opencv\include\opencv2\stitching - - - addons\ofxOpenCv\libs\opencv\include\opencv2 - - - addons\ofxOpenCv\libs\opencv\include\opencv2\imgproc - - - addons\ofxOpenCv\libs\opencv\include\opencv2\imgproc - - - addons\ofxOpenCv\libs\opencv\include\opencv2\imgproc - - - addons\ofxOpenCv\libs\opencv\include\opencv2\objdetect - - - addons\ofxOpenCv\libs\opencv\include\opencv2\legacy - - - addons\ofxOpenCv\libs\opencv\include\opencv2\legacy - - - addons\ofxOpenCv\libs\opencv\include\opencv2\legacy - - - addons\ofxOpenCv\libs\opencv\include\opencv2\legacy - - - addons\ofxOpenCv\libs\opencv\include\opencv2\contrib - - - addons\ofxOpenCv\libs\opencv\include\opencv2\contrib - - - addons\ofxOpenCv\libs\opencv\include\opencv2\contrib - - - addons\ofxOpenCv\libs\opencv\include\opencv2\contrib - - - addons\ofxOpenCv\libs\opencv\include\opencv2\contrib - - - addons\ofxOpenCv\libs\opencv\include\opencv2\ml - - - addons\ofxOpenCv\libs\opencv\include\opencv2\highgui - - - addons\ofxOpenCv\libs\opencv\include\opencv2\highgui - - - addons\ofxOpenCv\libs\opencv\include\opencv2\highgui - - - addons\ofxOpenCv\libs\opencv\include\opencv2\highgui - - - addons\ofxOpenCv\libs\opencv\include\opencv2\features2d - - - addons\ofxOpenCv\libs\opencv\include\opencv2\ts - - - addons\ofxOpenCv\libs\opencv\include\opencv2\ts - - - addons\ofxOpenCv\libs\opencv\include\opencv2\ts - - - addons\ofxOpenCv\libs\opencv\include\opencv2\ts - - - addons\ofxOpenCv\libs\opencv\include\opencv2\ts - - - addons\ofxOpenCv\libs\opencv\include\opencv2\videostab - - - addons\ofxOpenCv\libs\opencv\include\opencv2\videostab - - - addons\ofxOpenCv\libs\opencv\include\opencv2\videostab - - - addons\ofxOpenCv\libs\opencv\include\opencv2\videostab - - - addons\ofxOpenCv\libs\opencv\include\opencv2\videostab - - - addons\ofxOpenCv\libs\opencv\include\opencv2\videostab - - - addons\ofxOpenCv\libs\opencv\include\opencv2\videostab - - - addons\ofxOpenCv\libs\opencv\include\opencv2\videostab - - - addons\ofxOpenCv\libs\opencv\include\opencv2\videostab - - - addons\ofxOpenCv\libs\opencv\include\opencv2\videostab - - - addons\ofxOpenCv\libs\opencv\include\opencv2\videostab - - - addons\ofxOpenCv\libs\opencv\include\opencv2 - - - addons\ofxOpenCv\libs\opencv\include\opencv2\photo - - - addons\ofxOpenCv\libs\opencv\include\opencv2\photo - - - addons\ofxOpenCv\libs\opencv\include\opencv2\calib3d - - - - - - diff --git a/WebcamCV_BGSubtraction/WebcamCV_BGSubtraction.vcxproj.user b/WebcamCV_BGSubtraction/WebcamCV_BGSubtraction.vcxproj.user deleted file mode 100644 index 988b987..0000000 --- a/WebcamCV_BGSubtraction/WebcamCV_BGSubtraction.vcxproj.user +++ /dev/null @@ -1,19 +0,0 @@ - - - - $(ProjectDir)/bin - WindowsLocalDebugger - - - $(ProjectDir)/bin - WindowsLocalDebugger - - - $(ProjectDir)/bin - WindowsLocalDebugger - - - $(ProjectDir)/bin - WindowsLocalDebugger - - \ No newline at end of file diff --git a/WebcamCV_BGSubtraction/WebcamCV_BGSubtraction.xcodeproj/project.pbxproj b/WebcamCV_BGSubtraction/WebcamCV_BGSubtraction.xcodeproj/project.pbxproj deleted file mode 100644 index 4951b09..0000000 --- a/WebcamCV_BGSubtraction/WebcamCV_BGSubtraction.xcodeproj/project.pbxproj +++ /dev/null @@ -1,4042 +0,0 @@ - - - - archiveVersion - 1 - classes - - objectVersion - 46 - objects - - 428EB732FD42504F37BCA78A - - children - - 67AF0E794FA186DD25454CC9 - - isa - PBXGroup - name - calib3d - sourceTree - <group> - - 67AF0E794FA186DD25454CC9 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - calib3d.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/calib3d/calib3d.hpp - sourceTree - SOURCE_ROOT - - CCFB64CDA537F2B5A54CDC13 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - photo.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/photo/photo.hpp - sourceTree - SOURCE_ROOT - - 3B8F70BFDA30BBA2A5A060FC - - children - - 56ED74AD5FC73867F5E046F0 - CCFB64CDA537F2B5A54CDC13 - - isa - PBXGroup - name - photo - sourceTree - <group> - - 56ED74AD5FC73867F5E046F0 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - photo_c.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/photo/photo_c.h - sourceTree - SOURCE_ROOT - - 9ABD8CF34D37FADFEB352B88 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - opencv_modules.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/opencv_modules.hpp - sourceTree - SOURCE_ROOT - - 1054B4574F75C1F693C147C6 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - optical_flow.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/optical_flow.hpp - sourceTree - SOURCE_ROOT - - 0CEC1FE946DBDBAB82AF6FE3 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - global_motion.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/global_motion.hpp - sourceTree - SOURCE_ROOT - - 7279658ADA9582251CB1D783 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - log.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/log.hpp - sourceTree - SOURCE_ROOT - - D9613459E2788BF99E572ED1 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - deblurring.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/deblurring.hpp - sourceTree - SOURCE_ROOT - - 075597E52E99BDE94F8036B2 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - fast_marching_inl.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/fast_marching_inl.hpp - sourceTree - SOURCE_ROOT - - 59570D160E1EDD6EB832826A - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - frame_source.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/frame_source.hpp - sourceTree - SOURCE_ROOT - - 17CE5A4068930946980DE788 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - stabilizer.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/stabilizer.hpp - sourceTree - SOURCE_ROOT - - EEEA907F4732A9D8875ABB9C - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - motion_stabilizing.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/motion_stabilizing.hpp - sourceTree - SOURCE_ROOT - - 9A807ED85FFB53D3638FCBE0 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - videostab.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/videostab.hpp - sourceTree - SOURCE_ROOT - - D2991184C57509808BF041C8 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - inpainting.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/inpainting.hpp - sourceTree - SOURCE_ROOT - - 38D119387412EF71F9FAA033 - - children - - A3411731962D0402217F182B - D2991184C57509808BF041C8 - 9A807ED85FFB53D3638FCBE0 - EEEA907F4732A9D8875ABB9C - 17CE5A4068930946980DE788 - 59570D160E1EDD6EB832826A - 075597E52E99BDE94F8036B2 - D9613459E2788BF99E572ED1 - 7279658ADA9582251CB1D783 - 0CEC1FE946DBDBAB82AF6FE3 - 1054B4574F75C1F693C147C6 - - isa - PBXGroup - name - videostab - sourceTree - <group> - - A3411731962D0402217F182B - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - fast_marching.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/fast_marching.hpp - sourceTree - SOURCE_ROOT - - C4FB85020773DA0F09B8B6CE - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ts_gtest.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ts/ts_gtest.h - sourceTree - SOURCE_ROOT - - A770C8D74DA82B9944013381 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - gpu_perf.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ts/gpu_perf.hpp - sourceTree - SOURCE_ROOT - - 8FB4573CDB2FB9658ACF87AA - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - gpu_test.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ts/gpu_test.hpp - sourceTree - SOURCE_ROOT - - 45E004D1064EC5B8C5C40A83 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ts_perf.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ts/ts_perf.hpp - sourceTree - SOURCE_ROOT - - 0478E60892BF4C0731AE0763 - - children - - 7673F0AA19794A4C9517CF14 - 45E004D1064EC5B8C5C40A83 - 8FB4573CDB2FB9658ACF87AA - A770C8D74DA82B9944013381 - C4FB85020773DA0F09B8B6CE - - isa - PBXGroup - name - ts - sourceTree - <group> - - 7673F0AA19794A4C9517CF14 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ts.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ts/ts.hpp - sourceTree - SOURCE_ROOT - - 86FEC009E2721D0FB23338D7 - - children - - 61339778C58D921474B5729E - - isa - PBXGroup - name - features2d - sourceTree - <group> - - 61339778C58D921474B5729E - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - features2d.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/features2d/features2d.hpp - sourceTree - SOURCE_ROOT - - AE433383D6CA170C418C8A9E - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - highgui_c.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/highgui/highgui_c.h - sourceTree - SOURCE_ROOT - - 293D553B5067FBB8DEFA84D9 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cap_ios.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/highgui/cap_ios.h - sourceTree - SOURCE_ROOT - - C61D3DACE506E4A1C3A6D782 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - highgui.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/highgui/highgui.hpp - sourceTree - SOURCE_ROOT - - 9C99831C330874C2B245AB48 - - children - - 0B87BF43E5302005FEF650B6 - C61D3DACE506E4A1C3A6D782 - 293D553B5067FBB8DEFA84D9 - AE433383D6CA170C418C8A9E - - isa - PBXGroup - name - highgui - sourceTree - <group> - - 0B87BF43E5302005FEF650B6 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ios.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/highgui/ios.h - sourceTree - SOURCE_ROOT - - 0F288FD421D474F4AE2684D3 - - children - - 59626D03C690200AD4E8B3A6 - - isa - PBXGroup - name - ml - sourceTree - <group> - - 59626D03C690200AD4E8B3A6 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ml.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ml/ml.hpp - sourceTree - SOURCE_ROOT - - 5A59183C98FC5E69FC90F138 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - contrib.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/contrib/contrib.hpp - sourceTree - SOURCE_ROOT - - BA2345C0AC2330B6CF370764 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - detection_based_tracker.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/contrib/detection_based_tracker.hpp - sourceTree - SOURCE_ROOT - - 87DBF560FF25F1CD2E737825 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - openfabmap.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/contrib/openfabmap.hpp - sourceTree - SOURCE_ROOT - - A0399084868E7CAFB7E3D8E9 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - retina.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/contrib/retina.hpp - sourceTree - SOURCE_ROOT - - 170C3384C93B182490DDC9CC - - children - - BBAF9D981351C596CA67CAF9 - A0399084868E7CAFB7E3D8E9 - 87DBF560FF25F1CD2E737825 - BA2345C0AC2330B6CF370764 - 5A59183C98FC5E69FC90F138 - - isa - PBXGroup - name - contrib - sourceTree - <group> - - BBAF9D981351C596CA67CAF9 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - hybridtracker.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/contrib/hybridtracker.hpp - sourceTree - SOURCE_ROOT - - 8530EAD600CD792B81B2E79D - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - legacy.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/legacy/legacy.hpp - sourceTree - SOURCE_ROOT - - 665780A3005496E3A4A0D9EF - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - compat.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/legacy/compat.hpp - sourceTree - SOURCE_ROOT - - 60179A75A6C5F9A54DA3A64C - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - streams.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/legacy/streams.hpp - sourceTree - SOURCE_ROOT - - 961A625BD21068033782887C - - children - - 5D966EA1AA66E2D55D047733 - 60179A75A6C5F9A54DA3A64C - 665780A3005496E3A4A0D9EF - 8530EAD600CD792B81B2E79D - - isa - PBXGroup - name - legacy - sourceTree - <group> - - 5D966EA1AA66E2D55D047733 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - blobtrack.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/legacy/blobtrack.hpp - sourceTree - SOURCE_ROOT - - D0CAFE48EE488EEED9149670 - - children - - 97CFAD0B2F2DB004A8A3BC0B - - isa - PBXGroup - name - objdetect - sourceTree - <group> - - 97CFAD0B2F2DB004A8A3BC0B - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - objdetect.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/objdetect/objdetect.hpp - sourceTree - SOURCE_ROOT - - 9B90B3EE60497170AA00BFE8 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - types_c.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/imgproc/types_c.h - sourceTree - SOURCE_ROOT - - 9B55998E41388AD8704E4F9A - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - imgproc_c.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/imgproc/imgproc_c.h - sourceTree - SOURCE_ROOT - - 3E44059DCBC2444D65660B9C - - children - - 114B872696817CC33990FC83 - 9B55998E41388AD8704E4F9A - 9B90B3EE60497170AA00BFE8 - - isa - PBXGroup - name - imgproc - sourceTree - <group> - - 114B872696817CC33990FC83 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - imgproc.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/imgproc/imgproc.hpp - sourceTree - SOURCE_ROOT - - 9B7D592E7AB311451A27C46E - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - opencv.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/opencv.hpp - sourceTree - SOURCE_ROOT - - D2E468A43F6E981DD9B460B5 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - stitcher.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/stitcher.hpp - sourceTree - SOURCE_ROOT - - 057D8E7580EA21E2254ADDDA - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - camera.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/camera.hpp - sourceTree - SOURCE_ROOT - - 2411F6B35DAAAE5083D51167 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - motion_estimators.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/motion_estimators.hpp - sourceTree - SOURCE_ROOT - - 31BE73BA37686CA4E4904323 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - matchers.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/matchers.hpp - sourceTree - SOURCE_ROOT - - B1579F602B98D48A6937B341 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - util.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/util.hpp - sourceTree - SOURCE_ROOT - - CE5203B78839A661DA972B33 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - warpers_inl.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/warpers_inl.hpp - sourceTree - SOURCE_ROOT - - 79E285EDBBEA89226444A4D0 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - blenders.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/blenders.hpp - sourceTree - SOURCE_ROOT - - 1F9D46D19614774956DFE362 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - seam_finders.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/seam_finders.hpp - sourceTree - SOURCE_ROOT - - 1335F3F49E8A72CB04FA873D - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - util_inl.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/util_inl.hpp - sourceTree - SOURCE_ROOT - - D6426FE9886FD3B4A831A446 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - exposure_compensate.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/exposure_compensate.hpp - sourceTree - SOURCE_ROOT - - 26E4EEE253C8A6EFC3B3A639 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - warpers.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/warpers.hpp - sourceTree - SOURCE_ROOT - - 303E2D4AF80E80BD1FD5E5F6 - - children - - 44A8175B7C8A100B5BEF5DE4 - 26E4EEE253C8A6EFC3B3A639 - D6426FE9886FD3B4A831A446 - 1335F3F49E8A72CB04FA873D - 1F9D46D19614774956DFE362 - 79E285EDBBEA89226444A4D0 - CE5203B78839A661DA972B33 - B1579F602B98D48A6937B341 - 31BE73BA37686CA4E4904323 - 2411F6B35DAAAE5083D51167 - 057D8E7580EA21E2254ADDDA - - isa - PBXGroup - name - detail - sourceTree - <group> - - 44A8175B7C8A100B5BEF5DE4 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - autocalib.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/autocalib.hpp - sourceTree - SOURCE_ROOT - - AF43D9569510BEB0E2DFB944 - - children - - F2F75C2513DDF24A79A894DF - 303E2D4AF80E80BD1FD5E5F6 - D2E468A43F6E981DD9B460B5 - - isa - PBXGroup - name - stitching - sourceTree - <group> - - F2F75C2513DDF24A79A894DF - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - warpers.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/warpers.hpp - sourceTree - SOURCE_ROOT - - A9C85208C7E45FB9D1926789 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - wimage.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/wimage.hpp - sourceTree - SOURCE_ROOT - - C66C6414C8B86FDB99ED3B70 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - core.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/core.hpp - sourceTree - SOURCE_ROOT - - 311F65A208008448840A0A42 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - opengl_interop_deprecated.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/opengl_interop_deprecated.hpp - sourceTree - SOURCE_ROOT - - 087522EA37A32B8D902CAB64 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - core_c.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/core_c.h - sourceTree - SOURCE_ROOT - - CD8565F2F122EECA0C095526 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - types_c.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/types_c.h - sourceTree - SOURCE_ROOT - - E4385429A1E63ACEDC39A612 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - operations.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/operations.hpp - sourceTree - SOURCE_ROOT - - E8AF1E9150AD818FA9D9195D - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - version.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/version.hpp - sourceTree - SOURCE_ROOT - - 4CD2228F2C8116D51179E3A3 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - devmem2d.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/devmem2d.hpp - sourceTree - SOURCE_ROOT - - AB2AE477F82ACF17D0121166 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - mat.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/mat.hpp - sourceTree - SOURCE_ROOT - - C1A2E81B4FD0713346D7E806 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - affine.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/affine.hpp - sourceTree - SOURCE_ROOT - - 4CFA8A81B93736DE82F0090A - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - gpumat.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/gpumat.hpp - sourceTree - SOURCE_ROOT - - 452417865E4BFB10C9CBF8A2 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - internal.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/internal.hpp - sourceTree - SOURCE_ROOT - - A2EE5E80B134EA52A8B369D2 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - eigen.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/eigen.hpp - sourceTree - SOURCE_ROOT - - 73CB9E4F6812598081C2FE01 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - opengl_interop.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/opengl_interop.hpp - sourceTree - SOURCE_ROOT - - A5A3A2F98919E2243C73199C - - children - - E798C88F1A0E2511E1756CE0 - 73CB9E4F6812598081C2FE01 - A2EE5E80B134EA52A8B369D2 - 452417865E4BFB10C9CBF8A2 - 4CFA8A81B93736DE82F0090A - C1A2E81B4FD0713346D7E806 - AB2AE477F82ACF17D0121166 - 4CD2228F2C8116D51179E3A3 - E8AF1E9150AD818FA9D9195D - E4385429A1E63ACEDC39A612 - CD8565F2F122EECA0C095526 - 087522EA37A32B8D902CAB64 - 311F65A208008448840A0A42 - C66C6414C8B86FDB99ED3B70 - A9C85208C7E45FB9D1926789 - - isa - PBXGroup - name - core - sourceTree - <group> - - E798C88F1A0E2511E1756CE0 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cuda_devptrs.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/cuda_devptrs.hpp - sourceTree - SOURCE_ROOT - - 8DB45DE3BD6BB97E34BDB411 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - nn_index.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/nn_index.h - sourceTree - SOURCE_ROOT - - ECC34C470C60F0A2AE2761B1 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - random.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/random.h - sourceTree - SOURCE_ROOT - - 45410DD818BB205166E67E89 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - any.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/any.h - sourceTree - SOURCE_ROOT - - 36F0FF7F8D7342D220CC6319 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - dummy.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/dummy.h - sourceTree - SOURCE_ROOT - - 946187321200AC04E570E6EC - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - hierarchical_clustering_index.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/hierarchical_clustering_index.h - sourceTree - SOURCE_ROOT - - 0173A3F435DECD5A4DDE0B8E - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - logger.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/logger.h - sourceTree - SOURCE_ROOT - - 9DA0CBD43DA38386EB04C9AE - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - miniflann.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/miniflann.hpp - sourceTree - SOURCE_ROOT - - 7E57AAE3FAB29F87D19451BC - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - sampling.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/sampling.h - sourceTree - SOURCE_ROOT - - 9B076DCB5B800BE9AF1B71A6 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - flann_base.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/flann_base.hpp - sourceTree - SOURCE_ROOT - - 6B907CFBB1B0FEDE76C41AA0 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - heap.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/heap.h - sourceTree - SOURCE_ROOT - - 011E372AEA4DFBC1A32C2851 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - all_indices.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/all_indices.h - sourceTree - SOURCE_ROOT - - 974AACF856A0A1B7D8F259E0 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - result_set.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/result_set.h - sourceTree - SOURCE_ROOT - - F9EC3DDC0E9F85C34B21C760 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - object_factory.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/object_factory.h - sourceTree - SOURCE_ROOT - - 6DD5A3CBB6D5BBA1C1354F1B - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - flann.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/flann.hpp - sourceTree - SOURCE_ROOT - - 758F19335D4E46A5E0DE449F - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - kdtree_single_index.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/kdtree_single_index.h - sourceTree - SOURCE_ROOT - - E5F6E381641665852B997FC4 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - allocator.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/allocator.h - sourceTree - SOURCE_ROOT - - 0CF0AA3895D28E97D8A1E4A9 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ground_truth.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/ground_truth.h - sourceTree - SOURCE_ROOT - - 096CB33CAD6C5A446E7026E9 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - dynamic_bitset.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/dynamic_bitset.h - sourceTree - SOURCE_ROOT - - FEDA0B6056089762F5FA11CA - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - lsh_table.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/lsh_table.h - sourceTree - SOURCE_ROOT - - 1E95EFD35ED9C5D97F2F015E - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - timer.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/timer.h - sourceTree - SOURCE_ROOT - - 01DAE5C2E3E0A74207B2BE49 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - saving.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/saving.h - sourceTree - SOURCE_ROOT - - 722542BCDC94162B6A8B9B72 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - defines.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/defines.h - sourceTree - SOURCE_ROOT - - DCB56F4E9F44E31D571BC9C4 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - index_testing.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/index_testing.h - sourceTree - SOURCE_ROOT - - A15E0125B8C9B7F01DED5695 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - matrix.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/matrix.h - sourceTree - SOURCE_ROOT - - CBDE84185E2969BA4AB209FC - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - general.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/general.h - sourceTree - SOURCE_ROOT - - E7DDB716B5AE0DEA82DFFEDA - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - autotuned_index.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/autotuned_index.h - sourceTree - SOURCE_ROOT - - 2E411F99E3AB7154484B4F96 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - kmeans_index.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/kmeans_index.h - sourceTree - SOURCE_ROOT - - 586A8EC141BDFA82B3B0518C - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - config.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/config.h - sourceTree - SOURCE_ROOT - - B7BF51E8E757FF8A162D3662 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - lsh_index.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/lsh_index.h - sourceTree - SOURCE_ROOT - - FB213FF0567D1B312DDBD05D - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - linear_index.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/linear_index.h - sourceTree - SOURCE_ROOT - - 45F38573A0B0DEEC8BBC7A2C - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - simplex_downhill.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/simplex_downhill.h - sourceTree - SOURCE_ROOT - - F070AF5E3926EB2CB7A15D1B - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - params.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/params.h - sourceTree - SOURCE_ROOT - - 49EFFCF36CF194CCE0E1FAAB - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - kdtree_index.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/kdtree_index.h - sourceTree - SOURCE_ROOT - - FF58A50E588D6A64EE206840 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - hdf5.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/hdf5.h - sourceTree - SOURCE_ROOT - - FD609E2EC17FCE181DFE635F - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - dist.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/dist.h - sourceTree - SOURCE_ROOT - - 1E45F8C3CCFF6847BFF957AA - - children - - D5A3AFF36064B2CACAD31716 - FD609E2EC17FCE181DFE635F - FF58A50E588D6A64EE206840 - 49EFFCF36CF194CCE0E1FAAB - F070AF5E3926EB2CB7A15D1B - 45F38573A0B0DEEC8BBC7A2C - FB213FF0567D1B312DDBD05D - B7BF51E8E757FF8A162D3662 - 586A8EC141BDFA82B3B0518C - 2E411F99E3AB7154484B4F96 - E7DDB716B5AE0DEA82DFFEDA - CBDE84185E2969BA4AB209FC - A15E0125B8C9B7F01DED5695 - DCB56F4E9F44E31D571BC9C4 - 722542BCDC94162B6A8B9B72 - 01DAE5C2E3E0A74207B2BE49 - 1E95EFD35ED9C5D97F2F015E - FEDA0B6056089762F5FA11CA - 096CB33CAD6C5A446E7026E9 - 0CF0AA3895D28E97D8A1E4A9 - E5F6E381641665852B997FC4 - 758F19335D4E46A5E0DE449F - 6DD5A3CBB6D5BBA1C1354F1B - F9EC3DDC0E9F85C34B21C760 - 974AACF856A0A1B7D8F259E0 - 011E372AEA4DFBC1A32C2851 - 6B907CFBB1B0FEDE76C41AA0 - 9B076DCB5B800BE9AF1B71A6 - 7E57AAE3FAB29F87D19451BC - 9DA0CBD43DA38386EB04C9AE - 0173A3F435DECD5A4DDE0B8E - 946187321200AC04E570E6EC - 36F0FF7F8D7342D220CC6319 - 45410DD818BB205166E67E89 - ECC34C470C60F0A2AE2761B1 - 8DB45DE3BD6BB97E34BDB411 - - isa - PBXGroup - name - flann - sourceTree - <group> - - D5A3AFF36064B2CACAD31716 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - composite_index.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/composite_index.h - sourceTree - SOURCE_ROOT - - FB2852BC651C91987A1C26FB - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - scan.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/scan.hpp - sourceTree - SOURCE_ROOT - - 41E9090E543FC2D51BFD312C - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - warp_reduce.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/warp_reduce.hpp - sourceTree - SOURCE_ROOT - - 5105862F1606831E9239FEAF - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - simd_functions.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/simd_functions.hpp - sourceTree - SOURCE_ROOT - - 18E16A7CA55F6761C64833F7 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - vec_traits.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/vec_traits.hpp - sourceTree - SOURCE_ROOT - - 5A5CDEE1BFF097614562CD88 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - common.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/common.hpp - sourceTree - SOURCE_ROOT - - 0ADD044A3066779F3673F1FE - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - static_check.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/static_check.hpp - sourceTree - SOURCE_ROOT - - EBBA82550412B77EFA70AE87 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - funcattrib.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/funcattrib.hpp - sourceTree - SOURCE_ROOT - - 960BD311ABBA7D3299D7FE1F - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - datamov_utils.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/datamov_utils.hpp - sourceTree - SOURCE_ROOT - - FD2373742F56BFA0EF7FBF09 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - color.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/color.hpp - sourceTree - SOURCE_ROOT - - 6940F9A28CDC85ED7D1847C1 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - emulation.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/emulation.hpp - sourceTree - SOURCE_ROOT - - C4BA8097B54C90163F99F5C1 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - transform_detail.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail/transform_detail.hpp - sourceTree - SOURCE_ROOT - - E21FF871B93E31DA43FE7E42 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - vec_distance_detail.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail/vec_distance_detail.hpp - sourceTree - SOURCE_ROOT - - 2B75A06D9EF1817256BA26F6 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - type_traits_detail.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail/type_traits_detail.hpp - sourceTree - SOURCE_ROOT - - 37D155721DCC51F3D1DC2E02 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - color_detail.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail/color_detail.hpp - sourceTree - SOURCE_ROOT - - 417A0B7154103C22ECC253E8 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - reduce_key_val.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail/reduce_key_val.hpp - sourceTree - SOURCE_ROOT - - DF5D380A1A4583A1636503A6 - - children - - 1C490B8705672F1410388922 - 417A0B7154103C22ECC253E8 - 37D155721DCC51F3D1DC2E02 - 2B75A06D9EF1817256BA26F6 - E21FF871B93E31DA43FE7E42 - C4BA8097B54C90163F99F5C1 - - isa - PBXGroup - name - detail - sourceTree - <group> - - 1C490B8705672F1410388922 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - reduce.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail/reduce.hpp - sourceTree - SOURCE_ROOT - - A1E5C3C977BF213B183ABC28 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - block.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/block.hpp - sourceTree - SOURCE_ROOT - - 7D86D41170A02B361853AB73 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - vec_distance.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/vec_distance.hpp - sourceTree - SOURCE_ROOT - - AF7C3C8465AD112E066C67A7 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - type_traits.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/type_traits.hpp - sourceTree - SOURCE_ROOT - - 84238297E460936905B92D16 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - limits.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/limits.hpp - sourceTree - SOURCE_ROOT - - 3ADB4E06C4EDB97E020A778D - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - functional.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/functional.hpp - sourceTree - SOURCE_ROOT - - 1AD5FD8CB7EA240501080287 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - vec_math.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/vec_math.hpp - sourceTree - SOURCE_ROOT - - 35EEEA3F57EFB3D7DE4C0DED - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - saturate_cast.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/saturate_cast.hpp - sourceTree - SOURCE_ROOT - - A2C86A44C1FD1CB1DD189DFA - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - transform.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/transform.hpp - sourceTree - SOURCE_ROOT - - F38AB91361456BF84AB04DD1 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - border_interpolate.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/border_interpolate.hpp - sourceTree - SOURCE_ROOT - - 0339099A1F7B84040D88AD3C - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - warp_shuffle.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/warp_shuffle.hpp - sourceTree - SOURCE_ROOT - - 63152EF07846DECD2854B62C - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - utility.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/utility.hpp - sourceTree - SOURCE_ROOT - - B1DCC53B17C50537AACC8DF0 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - reduce.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/reduce.hpp - sourceTree - SOURCE_ROOT - - C362FD421E9C5E4962E410EB - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - dynamic_smem.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/dynamic_smem.hpp - sourceTree - SOURCE_ROOT - - F0FCA82EC2A69AEB3BA6AF38 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - filters.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/filters.hpp - sourceTree - SOURCE_ROOT - - C830064088936DB0F1158554 - - children - - 74889E354F64911B56A1CAD1 - F0FCA82EC2A69AEB3BA6AF38 - C362FD421E9C5E4962E410EB - B1DCC53B17C50537AACC8DF0 - 63152EF07846DECD2854B62C - 0339099A1F7B84040D88AD3C - F38AB91361456BF84AB04DD1 - A2C86A44C1FD1CB1DD189DFA - 35EEEA3F57EFB3D7DE4C0DED - 1AD5FD8CB7EA240501080287 - 3ADB4E06C4EDB97E020A778D - 84238297E460936905B92D16 - AF7C3C8465AD112E066C67A7 - 7D86D41170A02B361853AB73 - A1E5C3C977BF213B183ABC28 - DF5D380A1A4583A1636503A6 - 6940F9A28CDC85ED7D1847C1 - FD2373742F56BFA0EF7FBF09 - 960BD311ABBA7D3299D7FE1F - EBBA82550412B77EFA70AE87 - 0ADD044A3066779F3673F1FE - 5A5CDEE1BFF097614562CD88 - 18E16A7CA55F6761C64833F7 - 5105862F1606831E9239FEAF - 41E9090E543FC2D51BFD312C - FB2852BC651C91987A1C26FB - - isa - PBXGroup - name - device - sourceTree - <group> - - 74889E354F64911B56A1CAD1 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - warp.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/warp.hpp - sourceTree - SOURCE_ROOT - - D902EB2409214285BCF5F191 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - stream_accessor.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/stream_accessor.hpp - sourceTree - SOURCE_ROOT - - F886EBA3F8F05C7F74633933 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - devmem2d.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/devmem2d.hpp - sourceTree - SOURCE_ROOT - - E354468911BA093791076DD7 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - gpumat.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/gpumat.hpp - sourceTree - SOURCE_ROOT - - 5236346776DB8ECC4B121CA3 - - children - - AF9A155219FEDFA6E95454EA - E354468911BA093791076DD7 - F886EBA3F8F05C7F74633933 - D902EB2409214285BCF5F191 - C830064088936DB0F1158554 - - isa - PBXGroup - name - gpu - sourceTree - <group> - - AF9A155219FEDFA6E95454EA - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - gpu.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/gpu.hpp - sourceTree - SOURCE_ROOT - - 97FBD89E6180673035AD1083 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - video.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/video/video.hpp - sourceTree - SOURCE_ROOT - - 71C98C3F44D63B39F1482A54 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - background_segm.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/video/background_segm.hpp - sourceTree - SOURCE_ROOT - - C58CC92A5283B95AA31D50FB - - children - - E14D3EF03E140F5604900412 - 71C98C3F44D63B39F1482A54 - 97FBD89E6180673035AD1083 - - isa - PBXGroup - name - video - sourceTree - <group> - - E14D3EF03E140F5604900412 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - tracking.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/video/tracking.hpp - sourceTree - SOURCE_ROOT - - B09FCFF976DCEACB7C7C8D4E - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - optical_flow.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/superres/optical_flow.hpp - sourceTree - SOURCE_ROOT - - ED977EFE7B82B0D53CB5C778 - - children - - C65A89034372885C3F7259F5 - B09FCFF976DCEACB7C7C8D4E - - isa - PBXGroup - name - superres - sourceTree - <group> - - C65A89034372885C3F7259F5 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - superres.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/superres/superres.hpp - sourceTree - SOURCE_ROOT - - D078C50BFCDE342496B5D1F3 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - nonfree.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/nonfree/nonfree.hpp - sourceTree - SOURCE_ROOT - - B353080168DCA97D7DF8732F - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ocl.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/nonfree/ocl.hpp - sourceTree - SOURCE_ROOT - - C7178EBE5A9A3912E58D1F0F - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - features2d.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/nonfree/features2d.hpp - sourceTree - SOURCE_ROOT - - 7BC63C2C5B49F4CFBC87C288 - - children - - DA71BD3D5EB1A1F5E64B6751 - C7178EBE5A9A3912E58D1F0F - B353080168DCA97D7DF8732F - D078C50BFCDE342496B5D1F3 - - isa - PBXGroup - name - nonfree - sourceTree - <group> - - 0F07FE174552DEF007BF5AD5 - - children - - 7BC63C2C5B49F4CFBC87C288 - ED977EFE7B82B0D53CB5C778 - C58CC92A5283B95AA31D50FB - 5236346776DB8ECC4B121CA3 - 1E45F8C3CCFF6847BFF957AA - A5A3A2F98919E2243C73199C - AF43D9569510BEB0E2DFB944 - 9B7D592E7AB311451A27C46E - 3E44059DCBC2444D65660B9C - D0CAFE48EE488EEED9149670 - 961A625BD21068033782887C - 170C3384C93B182490DDC9CC - 0F288FD421D474F4AE2684D3 - 9C99831C330874C2B245AB48 - 86FEC009E2721D0FB23338D7 - 0478E60892BF4C0731AE0763 - 38D119387412EF71F9FAA033 - 9ABD8CF34D37FADFEB352B88 - 3B8F70BFDA30BBA2A5A060FC - 428EB732FD42504F37BCA78A - - isa - PBXGroup - name - opencv2 - sourceTree - <group> - - DA71BD3D5EB1A1F5E64B6751 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - gpu.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/nonfree/gpu.hpp - sourceTree - SOURCE_ROOT - - 319268D200F1BA567E4CCFF9 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cxeigen.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/cxeigen.hpp - sourceTree - SOURCE_ROOT - - 30884ECD9C171AB1B1BDFC3F - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cv.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/cv.hpp - sourceTree - SOURCE_ROOT - - 7C3D9C0EAC738ED2624D264B - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ml.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/ml.h - sourceTree - SOURCE_ROOT - - 7101CF2125B8B2BF46AA2662 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cxcore.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/cxcore.hpp - sourceTree - SOURCE_ROOT - - CF29BFB3FD3CAA54F336E6FD - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cvaux.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/cvaux.hpp - sourceTree - SOURCE_ROOT - - DB8653D6433E14BF06F3EFAF - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cvwimage.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/cvwimage.h - sourceTree - SOURCE_ROOT - - D76A59E7B3601E76351C9BDB - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cvaux.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/cvaux.h - sourceTree - SOURCE_ROOT - - B8427966039B53A0FE69C1F0 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cxcore.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/cxcore.h - sourceTree - SOURCE_ROOT - - E90542C149C83316678AB011 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cxmisc.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/cxmisc.h - sourceTree - SOURCE_ROOT - - 33FF03222909C1A0ECE43753 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cv.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/cv.h - sourceTree - SOURCE_ROOT - - 737B033AA777B67BA4F8F4D2 - - children - - 9FF9126184DFBDE8A912373E - 33FF03222909C1A0ECE43753 - E90542C149C83316678AB011 - B8427966039B53A0FE69C1F0 - D76A59E7B3601E76351C9BDB - DB8653D6433E14BF06F3EFAF - CF29BFB3FD3CAA54F336E6FD - 7101CF2125B8B2BF46AA2662 - 7C3D9C0EAC738ED2624D264B - 30884ECD9C171AB1B1BDFC3F - 319268D200F1BA567E4CCFF9 - - isa - PBXGroup - name - opencv - sourceTree - <group> - - F9F05170CB9BDF47DA2B6E6A - - children - - 737B033AA777B67BA4F8F4D2 - 0F07FE174552DEF007BF5AD5 - - isa - PBXGroup - name - include - sourceTree - <group> - - AAA97F42C2FE4A31ECFD0585 - - children - - F9F05170CB9BDF47DA2B6E6A - - isa - PBXGroup - name - opencv - sourceTree - <group> - - DCC60D6724B56635AE867535 - - children - - AAA97F42C2FE4A31ECFD0585 - - isa - PBXGroup - name - libs - sourceTree - <group> - - 9FF9126184DFBDE8A912373E - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - highgui.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/highgui.h - sourceTree - SOURCE_ROOT - - 516717F84C0146512C47A3EC - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvHaarFinder.h - path - ../../../addons/ofxOpenCv/src/ofxCvHaarFinder.h - sourceTree - SOURCE_ROOT - - D847EBE484F4F500F9CF2549 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvImage.h - path - ../../../addons/ofxOpenCv/src/ofxCvImage.h - sourceTree - SOURCE_ROOT - - 9A048549F08C6DFFA79E6DEF - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvGrayscaleImage.h - path - ../../../addons/ofxOpenCv/src/ofxCvGrayscaleImage.h - sourceTree - SOURCE_ROOT - - FB09C6B2A1DA0EA217240CB8 - - fileRef - 057122A817D12571F8C0C7A4 - isa - PBXBuildFile - - 057122A817D12571F8C0C7A4 - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvGrayscaleImage.cpp - path - ../../../addons/ofxOpenCv/src/ofxCvGrayscaleImage.cpp - sourceTree - SOURCE_ROOT - - 169D3C72FDE6C5590A1616F5 - - fileRef - 7B6A03390302D5A2C9F0E4AB - isa - PBXBuildFile - - 7B6A03390302D5A2C9F0E4AB - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvFloatImage.cpp - path - ../../../addons/ofxOpenCv/src/ofxCvFloatImage.cpp - sourceTree - SOURCE_ROOT - - F7269F96AC34A2B44A680D03 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvFloatImage.h - path - ../../../addons/ofxOpenCv/src/ofxCvFloatImage.h - sourceTree - SOURCE_ROOT - - 63020F16C7E8DED980111241 - - fileRef - C6151136D101F857DAE12722 - isa - PBXBuildFile - - C6151136D101F857DAE12722 - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvImage.cpp - path - ../../../addons/ofxOpenCv/src/ofxCvImage.cpp - sourceTree - SOURCE_ROOT - - E212C821D1064B92DD953A42 - - fileRef - 9A16CBF2E8CFE43AF54FE6F5 - isa - PBXBuildFile - - 9A16CBF2E8CFE43AF54FE6F5 - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvHaarFinder.cpp - path - ../../../addons/ofxOpenCv/src/ofxCvHaarFinder.cpp - sourceTree - SOURCE_ROOT - - 1D5F3298C2FA073628012944 - - fileRef - C76DE5C29BDBD2CAA1DD0021 - isa - PBXBuildFile - - C76DE5C29BDBD2CAA1DD0021 - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvContourFinder.cpp - path - ../../../addons/ofxOpenCv/src/ofxCvContourFinder.cpp - sourceTree - SOURCE_ROOT - - C1C56D20A1A57DC44096BFE7 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvContourFinder.h - path - ../../../addons/ofxOpenCv/src/ofxCvContourFinder.h - sourceTree - SOURCE_ROOT - - CE81A5E39EB3C871FDF3D4D5 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxOpenCv.h - path - ../../../addons/ofxOpenCv/src/ofxOpenCv.h - sourceTree - SOURCE_ROOT - - D5BB6F0357B6422E1B1656B4 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvColorImage.h - path - ../../../addons/ofxOpenCv/src/ofxCvColorImage.h - sourceTree - SOURCE_ROOT - - 603F2267D449084A4187A049 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvBlob.h - path - ../../../addons/ofxOpenCv/src/ofxCvBlob.h - sourceTree - SOURCE_ROOT - - 8E79CF8911DFABAFE23EA45B - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvConstants.h - path - ../../../addons/ofxOpenCv/src/ofxCvConstants.h - sourceTree - SOURCE_ROOT - - DEA2EDC0AFD59176FDEDC222 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvShortImage.h - path - ../../../addons/ofxOpenCv/src/ofxCvShortImage.h - sourceTree - SOURCE_ROOT - - D3301F6A0B43BB293ED97C1D - - fileRef - 8A4DD23693DFAB8EC05FAA5D - isa - PBXBuildFile - - 8A4DD23693DFAB8EC05FAA5D - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvShortImage.cpp - path - ../../../addons/ofxOpenCv/src/ofxCvShortImage.cpp - sourceTree - SOURCE_ROOT - - C756CAAFD542831674E15FE6 - - children - - CE9C7160245B19131DAE6128 - 8A4DD23693DFAB8EC05FAA5D - DEA2EDC0AFD59176FDEDC222 - 8E79CF8911DFABAFE23EA45B - 603F2267D449084A4187A049 - D5BB6F0357B6422E1B1656B4 - CE81A5E39EB3C871FDF3D4D5 - C1C56D20A1A57DC44096BFE7 - C76DE5C29BDBD2CAA1DD0021 - 9A16CBF2E8CFE43AF54FE6F5 - C6151136D101F857DAE12722 - F7269F96AC34A2B44A680D03 - 7B6A03390302D5A2C9F0E4AB - 057122A817D12571F8C0C7A4 - 9A048549F08C6DFFA79E6DEF - D847EBE484F4F500F9CF2549 - 516717F84C0146512C47A3EC - - isa - PBXGroup - name - src - sourceTree - <group> - - A0B90D3B0ADB9C1716816714 - - children - - C756CAAFD542831674E15FE6 - DCC60D6724B56635AE867535 - - isa - PBXGroup - name - ofxOpenCv - sourceTree - <group> - - 250A95BA26587BE85DB0A353 - - fileRef - CE9C7160245B19131DAE6128 - isa - PBXBuildFile - - CE9C7160245B19131DAE6128 - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvColorImage.cpp - path - ../../../addons/ofxOpenCv/src/ofxCvColorImage.cpp - sourceTree - SOURCE_ROOT - - 6948EE371B920CB800B5AC1A - - children - - isa - PBXGroup - name - local_addons - sourceTree - <group> - - BB4B014C10F69532006C3DED - - children - - A0B90D3B0ADB9C1716816714 - - isa - PBXGroup - name - addons - sourceTree - <group> - - E4328143138ABC890047C5CB - - isa - PBXFileReference - lastKnownFileType - wrapper.pb-project - name - openFrameworksLib.xcodeproj - path - ../../../libs/openFrameworksCompiled/project/osx/openFrameworksLib.xcodeproj - sourceTree - SOURCE_ROOT - - E4328144138ABC890047C5CB - - children - - E4328148138ABC890047C5CB - - isa - PBXGroup - name - Products - sourceTree - <group> - - E4328147138ABC890047C5CB - - containerPortal - E4328143138ABC890047C5CB - isa - PBXContainerItemProxy - proxyType - 2 - remoteGlobalIDString - E4B27C1510CBEB8E00536013 - remoteInfo - openFrameworks - - E4328148138ABC890047C5CB - - fileType - archive.ar - isa - PBXReferenceProxy - path - openFrameworksDebug.a - remoteRef - E4328147138ABC890047C5CB - sourceTree - BUILT_PRODUCTS_DIR - - E4328149138ABC9F0047C5CB - - fileRef - E4328148138ABC890047C5CB - isa - PBXBuildFile - - E4B69B4A0A3A1720003C02F2 - - children - - E4B6FCAD0C3E899E008CF71C - E4EB6923138AFD0F00A09F29 - E4B69E1C0A3A1BDC003C02F2 - E4EEC9E9138DF44700A80321 - BB4B014C10F69532006C3DED - 6948EE371B920CB800B5AC1A - E4B69B5B0A3A1756003C02F2 - - isa - PBXGroup - sourceTree - <group> - - E4B69B4C0A3A1720003C02F2 - - attributes - - LastUpgradeCheck - 0600 - - buildConfigurationList - E4B69B4D0A3A1720003C02F2 - compatibilityVersion - Xcode 3.2 - developmentRegion - English - hasScannedForEncodings - 0 - isa - PBXProject - knownRegions - - English - Japanese - French - German - - mainGroup - E4B69B4A0A3A1720003C02F2 - productRefGroup - E4B69B4A0A3A1720003C02F2 - projectDirPath - - projectReferences - - - ProductGroup - E4328144138ABC890047C5CB - ProjectRef - E4328143138ABC890047C5CB - - - projectRoot - - targets - - E4B69B5A0A3A1756003C02F2 - - - E4B69B4D0A3A1720003C02F2 - - buildConfigurations - - E4B69B4E0A3A1720003C02F2 - E4B69B4F0A3A1720003C02F2 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - E4B69B4E0A3A1720003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - OTHER_LDFLAGS - - $(OF_CORE_FRAMEWORKS) $(OF_CORE_LIBS) - ../../../addons/ofxOpenCv/libs/opencv/lib/osx/opencv.a - - HEADER_SEARCH_PATHS - - $(OF_CORE_HEADERS) - src - ../../../addons/ofxOpenCv/libs - ../../../addons/ofxOpenCv/libs/opencv - ../../../addons/ofxOpenCv/libs/opencv/include - ../../../addons/ofxOpenCv/libs/opencv/include/opencv - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2 - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/calib3d - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/contrib - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/features2d - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/highgui - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/imgproc - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/legacy - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ml - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/nonfree - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/objdetect - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/photo - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/superres - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ts - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/video - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab - ../../../addons/ofxOpenCv/libs/opencv/lib - ../../../addons/ofxOpenCv/libs/opencv/lib/emscripten - ../../../addons/ofxOpenCv/libs/opencv/lib/osx - ../../../addons/ofxOpenCv/libs/opencv/license - ../../../addons/ofxOpenCv/src - - CONFIGURATION_BUILD_DIR - $(SRCROOT)/bin/ - COPY_PHASE_STRIP - NO - DEAD_CODE_STRIPPING - YES - GCC_AUTO_VECTORIZATION - YES - GCC_ENABLE_SSE3_EXTENSIONS - YES - GCC_ENABLE_SUPPLEMENTAL_SSE3_INSTRUCTIONS - YES - GCC_INLINES_ARE_PRIVATE_EXTERN - NO - GCC_OPTIMIZATION_LEVEL - 0 - GCC_SYMBOLS_PRIVATE_EXTERN - NO - GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS - YES - GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO - NO - GCC_WARN_ALLOW_INCOMPLETE_PROTOCOL - NO - GCC_WARN_UNINITIALIZED_AUTOS - NO - GCC_WARN_UNUSED_VALUE - NO - GCC_WARN_UNUSED_VARIABLE - NO - MACOSX_DEPLOYMENT_TARGET - 10.8 - ONLY_ACTIVE_ARCH - YES - OTHER_CPLUSPLUSFLAGS - - -D__MACOSX_CORE__ - -mtune=native - - SDKROOT - macosx - - isa - XCBuildConfiguration - name - Debug - - E4B69B4F0A3A1720003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - OTHER_LDFLAGS - - $(OF_CORE_FRAMEWORKS) $(OF_CORE_LIBS) - ../../../addons/ofxOpenCv/libs/opencv/lib/osx/opencv.a - - HEADER_SEARCH_PATHS - - $(OF_CORE_HEADERS) - src - ../../../addons/ofxOpenCv/libs - ../../../addons/ofxOpenCv/libs/opencv - ../../../addons/ofxOpenCv/libs/opencv/include - ../../../addons/ofxOpenCv/libs/opencv/include/opencv - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2 - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/calib3d - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/contrib - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/features2d - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/highgui - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/imgproc - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/legacy - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ml - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/nonfree - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/objdetect - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/photo - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/superres - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ts - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/video - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab - ../../../addons/ofxOpenCv/libs/opencv/lib - ../../../addons/ofxOpenCv/libs/opencv/lib/emscripten - ../../../addons/ofxOpenCv/libs/opencv/lib/osx - ../../../addons/ofxOpenCv/libs/opencv/license - ../../../addons/ofxOpenCv/src - - CONFIGURATION_BUILD_DIR - $(SRCROOT)/bin/ - COPY_PHASE_STRIP - YES - DEAD_CODE_STRIPPING - YES - GCC_AUTO_VECTORIZATION - YES - GCC_ENABLE_SSE3_EXTENSIONS - YES - GCC_ENABLE_SUPPLEMENTAL_SSE3_INSTRUCTIONS - YES - GCC_INLINES_ARE_PRIVATE_EXTERN - NO - GCC_OPTIMIZATION_LEVEL - 3 - GCC_SYMBOLS_PRIVATE_EXTERN - NO - GCC_UNROLL_LOOPS - YES - GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS - YES - GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO - NO - GCC_WARN_ALLOW_INCOMPLETE_PROTOCOL - NO - GCC_WARN_UNINITIALIZED_AUTOS - NO - GCC_WARN_UNUSED_VALUE - NO - GCC_WARN_UNUSED_VARIABLE - NO - MACOSX_DEPLOYMENT_TARGET - 10.8 - OTHER_CPLUSPLUSFLAGS - - -D__MACOSX_CORE__ - -mtune=native - - SDKROOT - macosx - - isa - XCBuildConfiguration - name - Release - - E4B69B580A3A1756003C02F2 - - buildActionMask - 2147483647 - files - - E4B69E200A3A1BDC003C02F2 - E4B69E210A3A1BDC003C02F2 - 250A95BA26587BE85DB0A353 - D3301F6A0B43BB293ED97C1D - 1D5F3298C2FA073628012944 - E212C821D1064B92DD953A42 - 63020F16C7E8DED980111241 - 169D3C72FDE6C5590A1616F5 - FB09C6B2A1DA0EA217240CB8 - - isa - PBXSourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - E4B69B590A3A1756003C02F2 - - buildActionMask - 2147483647 - files - - E4328149138ABC9F0047C5CB - - isa - PBXFrameworksBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - E4B69B5A0A3A1756003C02F2 - - buildConfigurationList - E4B69B5F0A3A1757003C02F2 - buildPhases - - E4B69B580A3A1756003C02F2 - E4B69B590A3A1756003C02F2 - E4B6FFFD0C3F9AB9008CF71C - E4C2427710CC5ABF004149E2 - - buildRules - - dependencies - - E4EEB9AC138B136A00A80321 - - isa - PBXNativeTarget - name - WebcamCV_BGSubtraction - productName - myOFApp - productReference - E4B69B5B0A3A1756003C02F2 - productType - com.apple.product-type.application - - E4B69B5B0A3A1756003C02F2 - - explicitFileType - wrapper.application - includeInIndex - 0 - isa - PBXFileReference - path - WebcamCV_BGSubtractionDebug.app - sourceTree - BUILT_PRODUCTS_DIR - - E4B69B5F0A3A1757003C02F2 - - buildConfigurations - - E4B69B600A3A1757003C02F2 - E4B69B610A3A1757003C02F2 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - E4B69B600A3A1757003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - OTHER_LDFLAGS - - $(OF_CORE_FRAMEWORKS) $(OF_CORE_LIBS) - ../../../addons/ofxOpenCv/libs/opencv/lib/osx/opencv.a - - HEADER_SEARCH_PATHS - - $(OF_CORE_HEADERS) - src - ../../../addons/ofxOpenCv/libs - ../../../addons/ofxOpenCv/libs/opencv - ../../../addons/ofxOpenCv/libs/opencv/include - ../../../addons/ofxOpenCv/libs/opencv/include/opencv - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2 - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/calib3d - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/contrib - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/features2d - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/highgui - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/imgproc - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/legacy - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ml - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/nonfree - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/objdetect - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/photo - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/superres - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ts - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/video - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab - ../../../addons/ofxOpenCv/libs/opencv/lib - ../../../addons/ofxOpenCv/libs/opencv/lib/emscripten - ../../../addons/ofxOpenCv/libs/opencv/lib/osx - ../../../addons/ofxOpenCv/libs/opencv/license - ../../../addons/ofxOpenCv/src - - COMBINE_HIDPI_IMAGES - YES - COPY_PHASE_STRIP - NO - FRAMEWORK_SEARCH_PATHS - - $(inherited) - $(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1) - - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 - "$(SRCROOT)/../../../libs/glut/lib/osx" - GCC_DYNAMIC_NO_PIC - NO - GCC_GENERATE_DEBUGGING_SYMBOLS - YES - GCC_MODEL_TUNING - NONE - ICON - $(ICON_NAME_DEBUG) - ICON_FILE - $(ICON_FILE_PATH)$(ICON) - INFOPLIST_FILE - openFrameworks-Info.plist - INSTALL_PATH - /Applications - LIBRARY_SEARCH_PATHS - $(inherited) - PRODUCT_NAME - $(TARGET_NAME)Debug - WRAPPER_EXTENSION - app - - isa - XCBuildConfiguration - name - Debug - - E4B69B610A3A1757003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - OTHER_LDFLAGS - - $(OF_CORE_FRAMEWORKS) $(OF_CORE_LIBS) - ../../../addons/ofxOpenCv/libs/opencv/lib/osx/opencv.a - - HEADER_SEARCH_PATHS - - $(OF_CORE_HEADERS) - src - ../../../addons/ofxOpenCv/libs - ../../../addons/ofxOpenCv/libs/opencv - ../../../addons/ofxOpenCv/libs/opencv/include - ../../../addons/ofxOpenCv/libs/opencv/include/opencv - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2 - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/calib3d - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/contrib - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/features2d - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/highgui - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/imgproc - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/legacy - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ml - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/nonfree - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/objdetect - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/photo - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/superres - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ts - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/video - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab - ../../../addons/ofxOpenCv/libs/opencv/lib - ../../../addons/ofxOpenCv/libs/opencv/lib/emscripten - ../../../addons/ofxOpenCv/libs/opencv/lib/osx - ../../../addons/ofxOpenCv/libs/opencv/license - ../../../addons/ofxOpenCv/src - - COMBINE_HIDPI_IMAGES - YES - COPY_PHASE_STRIP - YES - FRAMEWORK_SEARCH_PATHS - - $(inherited) - $(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1) - - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 - "$(SRCROOT)/../../../libs/glut/lib/osx" - GCC_GENERATE_DEBUGGING_SYMBOLS - YES - GCC_MODEL_TUNING - NONE - ICON - $(ICON_NAME_RELEASE) - ICON_FILE - $(ICON_FILE_PATH)$(ICON) - INFOPLIST_FILE - openFrameworks-Info.plist - INSTALL_PATH - /Applications - LIBRARY_SEARCH_PATHS - $(inherited) - PRODUCT_NAME - $(TARGET_NAME) - WRAPPER_EXTENSION - app - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - - isa - XCBuildConfiguration - name - Release - - E4B69E1C0A3A1BDC003C02F2 - - children - - E4B69E1D0A3A1BDC003C02F2 - E4B69E1E0A3A1BDC003C02F2 - E4B69E1F0A3A1BDC003C02F2 - - isa - PBXGroup - path - src - sourceTree - SOURCE_ROOT - - E4B69E1D0A3A1BDC003C02F2 - - fileEncoding - 30 - isa - PBXFileReference - lastKnownFileType - sourcecode.cpp.cpp - name - main.cpp - path - src/main.cpp - sourceTree - SOURCE_ROOT - - E4B69E1E0A3A1BDC003C02F2 - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofApp.cpp - path - src/ofApp.cpp - sourceTree - SOURCE_ROOT - - E4B69E1F0A3A1BDC003C02F2 - - fileEncoding - 30 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - name - ofApp.h - path - src/ofApp.h - sourceTree - SOURCE_ROOT - - E4B69E200A3A1BDC003C02F2 - - fileRef - E4B69E1D0A3A1BDC003C02F2 - isa - PBXBuildFile - - E4B69E210A3A1BDC003C02F2 - - fileRef - E4B69E1E0A3A1BDC003C02F2 - isa - PBXBuildFile - - E4B6FCAD0C3E899E008CF71C - - fileEncoding - 30 - isa - PBXFileReference - lastKnownFileType - text.plist.xml - path - openFrameworks-Info.plist - sourceTree - <group> - - E4B6FFFD0C3F9AB9008CF71C - - buildActionMask - 2147483647 - files - - inputPaths - - isa - PBXShellScriptBuildPhase - outputPaths - - runOnlyForDeploymentPostprocessing - 0 - shellPath - /bin/sh - shellScript - mkdir -p "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Resources/" -# Copy default icon file into App/Resources -rsync -aved "$ICON_FILE" "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Resources/" -# Copy libfmod and change install directory for fmod to run -rsync -aved ../../../libs/fmodex/lib/osx/libfmodex.dylib "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Frameworks/"; -install_name_tool -change @executable_path/libfmodex.dylib @executable_path/../Frameworks/libfmodex.dylib "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/MacOS/$PRODUCT_NAME"; -# Copy GLUT framework (must remove for AppStore submissions) -rsync -aved ../../../libs/glut/lib/osx/GLUT.framework "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Frameworks/" - - - E4C2427710CC5ABF004149E2 - - buildActionMask - 2147483647 - dstPath - - dstSubfolderSpec - 10 - files - - isa - PBXCopyFilesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - E4EB691F138AFCF100A09F29 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - name - CoreOF.xcconfig - path - ../../../libs/openFrameworksCompiled/project/osx/CoreOF.xcconfig - sourceTree - SOURCE_ROOT - - E4EB6923138AFD0F00A09F29 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - path - Project.xcconfig - sourceTree - <group> - - E4EEB9AB138B136A00A80321 - - containerPortal - E4328143138ABC890047C5CB - isa - PBXContainerItemProxy - proxyType - 1 - remoteGlobalIDString - E4B27C1410CBEB8E00536013 - remoteInfo - openFrameworks - - E4EEB9AC138B136A00A80321 - - isa - PBXTargetDependency - name - openFrameworks - targetProxy - E4EEB9AB138B136A00A80321 - - E4EEC9E9138DF44700A80321 - - children - - E4EB691F138AFCF100A09F29 - E4328143138ABC890047C5CB - - isa - PBXGroup - name - openFrameworks - sourceTree - <group> - - - rootObject - E4B69B4C0A3A1720003C02F2 - - diff --git a/WebcamCV_BGSubtraction/WebcamCV_BGSubtraction.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/WebcamCV_BGSubtraction/WebcamCV_BGSubtraction.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 919434a..0000000 --- a/WebcamCV_BGSubtraction/WebcamCV_BGSubtraction.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/WebcamCV_BGSubtraction/WebcamCV_BGSubtraction.xcodeproj/project.xcworkspace/xcuserdata/kevinsiwoff.xcuserdatad/UserInterfaceState.xcuserstate b/WebcamCV_BGSubtraction/WebcamCV_BGSubtraction.xcodeproj/project.xcworkspace/xcuserdata/kevinsiwoff.xcuserdatad/UserInterfaceState.xcuserstate deleted file mode 100644 index 2a7b658..0000000 Binary files a/WebcamCV_BGSubtraction/WebcamCV_BGSubtraction.xcodeproj/project.xcworkspace/xcuserdata/kevinsiwoff.xcuserdatad/UserInterfaceState.xcuserstate and /dev/null differ diff --git a/WebcamCV_BGSubtraction/WebcamCV_BGSubtraction.xcodeproj/xcshareddata/xcschemes/WebcamCV_BGSubtraction Debug.xcscheme b/WebcamCV_BGSubtraction/WebcamCV_BGSubtraction.xcodeproj/xcshareddata/xcschemes/WebcamCV_BGSubtraction Debug.xcscheme deleted file mode 100644 index 51ca855..0000000 --- a/WebcamCV_BGSubtraction/WebcamCV_BGSubtraction.xcodeproj/xcshareddata/xcschemes/WebcamCV_BGSubtraction Debug.xcscheme +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/WebcamCV_BGSubtraction/WebcamCV_BGSubtraction.xcodeproj/xcshareddata/xcschemes/WebcamCV_BGSubtraction Release.xcscheme b/WebcamCV_BGSubtraction/WebcamCV_BGSubtraction.xcodeproj/xcshareddata/xcschemes/WebcamCV_BGSubtraction Release.xcscheme deleted file mode 100644 index bff4748..0000000 --- a/WebcamCV_BGSubtraction/WebcamCV_BGSubtraction.xcodeproj/xcshareddata/xcschemes/WebcamCV_BGSubtraction Release.xcscheme +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/WebcamCV_BGSubtraction/addons.make b/WebcamCV_BGSubtraction/addons.make deleted file mode 100644 index 886857d..0000000 --- a/WebcamCV_BGSubtraction/addons.make +++ /dev/null @@ -1 +0,0 @@ -ofxOpenCv diff --git a/WebcamCV_BGSubtraction/bin/data/.gitkeep b/WebcamCV_BGSubtraction/bin/data/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/WebcamCV_BGSubtraction/config.make b/WebcamCV_BGSubtraction/config.make deleted file mode 100644 index df10f64..0000000 --- a/WebcamCV_BGSubtraction/config.make +++ /dev/null @@ -1,142 +0,0 @@ -################################################################################ -# CONFIGURE PROJECT MAKEFILE (optional) -# This file is where we make project specific configurations. -################################################################################ - -################################################################################ -# OF ROOT -# The location of your root openFrameworks installation -# (default) OF_ROOT = ../../.. -################################################################################ -# OF_ROOT = ../../.. - -################################################################################ -# PROJECT ROOT -# The location of the project - a starting place for searching for files -# (default) PROJECT_ROOT = . (this directory) -# -################################################################################ -# PROJECT_ROOT = . - -################################################################################ -# PROJECT SPECIFIC CHECKS -# This is a project defined section to create internal makefile flags to -# conditionally enable or disable the addition of various features within -# this makefile. For instance, if you want to make changes based on whether -# GTK is installed, one might test that here and create a variable to check. -################################################################################ -# None - -################################################################################ -# PROJECT EXTERNAL SOURCE PATHS -# These are fully qualified paths that are not within the PROJECT_ROOT folder. -# Like source folders in the PROJECT_ROOT, these paths are subject to -# exlclusion via the PROJECT_EXLCUSIONS list. -# -# (default) PROJECT_EXTERNAL_SOURCE_PATHS = (blank) -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_EXTERNAL_SOURCE_PATHS = - -################################################################################ -# PROJECT EXCLUSIONS -# These makefiles assume that all folders in your current project directory -# and any listed in the PROJECT_EXTERNAL_SOURCH_PATHS are are valid locations -# to look for source code. The any folders or files that match any of the -# items in the PROJECT_EXCLUSIONS list below will be ignored. -# -# Each item in the PROJECT_EXCLUSIONS list will be treated as a complete -# string unless teh user adds a wildcard (%) operator to match subdirectories. -# GNU make only allows one wildcard for matching. The second wildcard (%) is -# treated literally. -# -# (default) PROJECT_EXCLUSIONS = (blank) -# -# Will automatically exclude the following: -# -# $(PROJECT_ROOT)/bin% -# $(PROJECT_ROOT)/obj% -# $(PROJECT_ROOT)/%.xcodeproj -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_EXCLUSIONS = - -################################################################################ -# PROJECT LINKER FLAGS -# These flags will be sent to the linker when compiling the executable. -# -# (default) PROJECT_LDFLAGS = -Wl,-rpath=./libs -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ - -# Currently, shared libraries that are needed are copied to the -# $(PROJECT_ROOT)/bin/libs directory. The following LDFLAGS tell the linker to -# add a runtime path to search for those shared libraries, since they aren't -# incorporated directly into the final executable application binary. -# TODO: should this be a default setting? -# PROJECT_LDFLAGS=-Wl,-rpath=./libs - -################################################################################ -# PROJECT DEFINES -# Create a space-delimited list of DEFINES. The list will be converted into -# CFLAGS with the "-D" flag later in the makefile. -# -# (default) PROJECT_DEFINES = (blank) -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_DEFINES = - -################################################################################ -# PROJECT CFLAGS -# This is a list of fully qualified CFLAGS required when compiling for this -# project. These CFLAGS will be used IN ADDITION TO the PLATFORM_CFLAGS -# defined in your platform specific core configuration files. These flags are -# presented to the compiler BEFORE the PROJECT_OPTIMIZATION_CFLAGS below. -# -# (default) PROJECT_CFLAGS = (blank) -# -# Note: Before adding PROJECT_CFLAGS, note that the PLATFORM_CFLAGS defined in -# your platform specific configuration file will be applied by default and -# further flags here may not be needed. -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_CFLAGS = - -################################################################################ -# PROJECT OPTIMIZATION CFLAGS -# These are lists of CFLAGS that are target-specific. While any flags could -# be conditionally added, they are usually limited to optimization flags. -# These flags are added BEFORE the PROJECT_CFLAGS. -# -# PROJECT_OPTIMIZATION_CFLAGS_RELEASE flags are only applied to RELEASE targets. -# -# (default) PROJECT_OPTIMIZATION_CFLAGS_RELEASE = (blank) -# -# PROJECT_OPTIMIZATION_CFLAGS_DEBUG flags are only applied to DEBUG targets. -# -# (default) PROJECT_OPTIMIZATION_CFLAGS_DEBUG = (blank) -# -# Note: Before adding PROJECT_OPTIMIZATION_CFLAGS, please note that the -# PLATFORM_OPTIMIZATION_CFLAGS defined in your platform specific configuration -# file will be applied by default and further optimization flags here may not -# be needed. -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_OPTIMIZATION_CFLAGS_RELEASE = -# PROJECT_OPTIMIZATION_CFLAGS_DEBUG = - -################################################################################ -# PROJECT COMPILERS -# Custom compilers can be set for CC and CXX -# (default) PROJECT_CXX = (blank) -# (default) PROJECT_CC = (blank) -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_CXX = -# PROJECT_CC = diff --git a/WebcamCV_BGSubtraction/icon.rc b/WebcamCV_BGSubtraction/icon.rc deleted file mode 100644 index 7e26eb3..0000000 --- a/WebcamCV_BGSubtraction/icon.rc +++ /dev/null @@ -1,8 +0,0 @@ -// Icon Resource Definition -#define MAIN_ICON 102 - -#if defined(_DEBUG) -MAIN_ICON ICON "icon_debug.ico" -#else -MAIN_ICON ICON "icon.ico" -#endif diff --git a/WebcamCV_BGSubtraction/openFrameworks-Info.plist b/WebcamCV_BGSubtraction/openFrameworks-Info.plist deleted file mode 100644 index 8d64d2b..0000000 --- a/WebcamCV_BGSubtraction/openFrameworks-Info.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - cc.openFrameworks.ofapp - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - APPL - CFBundleSignature - ???? - CFBundleVersion - 1.0 - CFBundleIconFile - ${ICON} - - diff --git a/WebcamCV_BGSubtraction/src/main.cpp b/WebcamCV_BGSubtraction/src/main.cpp deleted file mode 100644 index e57370b..0000000 --- a/WebcamCV_BGSubtraction/src/main.cpp +++ /dev/null @@ -1,13 +0,0 @@ -#include "ofMain.h" -#include "ofApp.h" - -//======================================================================== -int main( ){ - ofSetupOpenGL(1024,768,OF_WINDOW); // <-------- setup the GL context - - // this kicks off the running of my app - // can be OF_WINDOW or OF_FULLSCREEN - // pass in width and height too: - ofRunApp(new ofApp()); - -} diff --git a/WebcamCV_BGSubtraction/src/ofApp.cpp b/WebcamCV_BGSubtraction/src/ofApp.cpp deleted file mode 100644 index 30c0764..0000000 --- a/WebcamCV_BGSubtraction/src/ofApp.cpp +++ /dev/null @@ -1,99 +0,0 @@ -#include "ofApp.h" - -//-------------------------------------------------------------- -void ofApp::setup(){ - mVideoGrabber.setup(320, 240); - mVideoGrabber.setVerbose(true);//set the videoGrabber to verbose so we can get a debug output - mColorImage.allocate(320, 240); - mGrayscaleImage.allocate(320, 240); - mBgImage.allocate(320, 240); - mGrayDifference.allocate(320, 240); -} - -//-------------------------------------------------------------- -void ofApp::update(){ - mVideoGrabber.update(); - - - if(mVideoGrabber.isFrameNew()){ - mColorImage.setFromPixels(mVideoGrabber.getPixels()); - mGrayscaleImage = mColorImage;//notice how we set the grayscale image to the val of our colorImage. This is done through operator overloading in C++ - - - - } - //every 5 seconds we will sample a new background - if(ofGetSeconds() % 5 == 0){ - mBgImage = mGrayscaleImage; - } - //we set our difference to the absDiff - mGrayDifference.absDiff(mGrayscaleImage, mBgImage); - mGrayDifference.threshold(80); -} - -//-------------------------------------------------------------- -void ofApp::draw(){ - mVideoGrabber.draw(20, 20);//draw the videoGrabber output - mColorImage.draw(20, mVideoGrabber.getWidth() + 20);//draw the colorImage output - mGrayscaleImage.draw(mColorImage.getWidth()+40, mVideoGrabber.getWidth() + 20);//draw the grayscaleImage output - - //we draw the grayscale difference which separates our bg from our subject - mGrayDifference.draw(mColorImage.getWidth()*2.0+40, mVideoGrabber.getWidth() + 20); - - -} - -//-------------------------------------------------------------- -void ofApp::keyPressed(int key){ - -} - -//-------------------------------------------------------------- -void ofApp::keyReleased(int key){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseMoved(int x, int y ){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseDragged(int x, int y, int button){ - -} - -//-------------------------------------------------------------- -void ofApp::mousePressed(int x, int y, int button){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseReleased(int x, int y, int button){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseEntered(int x, int y){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseExited(int x, int y){ - -} - -//-------------------------------------------------------------- -void ofApp::windowResized(int w, int h){ - -} - -//-------------------------------------------------------------- -void ofApp::gotMessage(ofMessage msg){ - -} - -//-------------------------------------------------------------- -void ofApp::dragEvent(ofDragInfo dragInfo){ - -} diff --git a/WebcamCV_BGSubtraction/src/ofApp.h b/WebcamCV_BGSubtraction/src/ofApp.h deleted file mode 100644 index 293c0fa..0000000 --- a/WebcamCV_BGSubtraction/src/ofApp.h +++ /dev/null @@ -1,31 +0,0 @@ -#pragma once - -#include "ofMain.h" -//comes with OpenFrameworks but we must include it as addon in project generator -#include "ofxOpenCv.h" - -class ofApp : public ofBaseApp{ - - public: - void setup(); - void update(); - void draw(); - - void keyPressed(int key); - void keyReleased(int key); - void mouseMoved(int x, int y ); - void mouseDragged(int x, int y, int button); - void mousePressed(int x, int y, int button); - void mouseReleased(int x, int y, int button); - void mouseEntered(int x, int y); - void mouseExited(int x, int y); - void windowResized(int w, int h); - void dragEvent(ofDragInfo dragInfo); - void gotMessage(ofMessage msg); - - ofVideoGrabber mVideoGrabber; - ofxCvColorImage mColorImage; - ofxCvGrayscaleImage mGrayscaleImage; - ofxCvGrayscaleImage mBgImage; - ofxCvGrayscaleImage mGrayDifference; -}; diff --git a/WebcamCV_ColorBW/Makefile b/WebcamCV_ColorBW/Makefile deleted file mode 100644 index 8d8e4c0..0000000 --- a/WebcamCV_ColorBW/Makefile +++ /dev/null @@ -1,13 +0,0 @@ -# Attempt to load a config.make file. -# If none is found, project defaults in config.project.make will be used. -ifneq ($(wildcard config.make),) - include config.make -endif - -# make sure the the OF_ROOT location is defined -ifndef OF_ROOT - OF_ROOT=$(realpath ../../..) -endif - -# call the project makefile! -include $(OF_ROOT)/libs/openFrameworksCompiled/project/makefileCommon/compile.project.mk diff --git a/WebcamCV_ColorBW/Project.xcconfig b/WebcamCV_ColorBW/Project.xcconfig deleted file mode 100644 index e570b15..0000000 --- a/WebcamCV_ColorBW/Project.xcconfig +++ /dev/null @@ -1,17 +0,0 @@ -//THE PATH TO THE ROOT OF OUR OF PATH RELATIVE TO THIS PROJECT. -//THIS NEEDS TO BE DEFINED BEFORE CoreOF.xcconfig IS INCLUDED -OF_PATH = ../../.. - -//THIS HAS ALL THE HEADER AND LIBS FOR OF CORE -#include "../../../libs/openFrameworksCompiled/project/osx/CoreOF.xcconfig" - -//ICONS - NEW IN 0072 -ICON_NAME_DEBUG = icon-debug.icns -ICON_NAME_RELEASE = icon.icns -ICON_FILE_PATH = $(OF_PATH)/libs/openFrameworksCompiled/project/osx/ - -//IF YOU WANT AN APP TO HAVE A CUSTOM ICON - PUT THEM IN YOUR DATA FOLDER AND CHANGE ICON_FILE_PATH to: -//ICON_FILE_PATH = bin/data/ - -OTHER_LDFLAGS = $(OF_CORE_LIBS) $(OF_CORE_FRAMEWORKS) -HEADER_SEARCH_PATHS = $(OF_CORE_HEADERS) diff --git a/WebcamCV_ColorBW/WebcamCV_ColorBW.sln b/WebcamCV_ColorBW/WebcamCV_ColorBW.sln deleted file mode 100644 index 8e4ff3f..0000000 --- a/WebcamCV_ColorBW/WebcamCV_ColorBW.sln +++ /dev/null @@ -1,35 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 14 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "WebcamCV_ColorBW", "WebcamCV_ColorBW.vcxproj", "{7FD42DF7-442E-479A-BA76-D0022F99702A}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "openframeworksLib", "..\..\..\libs\openFrameworksCompiled\project\vs\openframeworksLib.vcxproj", "{5837595D-ACA9-485C-8E76-729040CE4B0B}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Debug|Win32.ActiveCfg = Debug|Win32 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Debug|Win32.Build.0 = Debug|Win32 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Debug|x64.ActiveCfg = Debug|x64 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Debug|x64.Build.0 = Debug|x64 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|Win32.ActiveCfg = Release|Win32 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|Win32.Build.0 = Release|Win32 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|x64.ActiveCfg = Release|x64 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|x64.Build.0 = Release|x64 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Debug|Win32.ActiveCfg = Debug|Win32 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Debug|Win32.Build.0 = Debug|Win32 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Debug|x64.ActiveCfg = Debug|x64 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Debug|x64.Build.0 = Debug|x64 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|Win32.ActiveCfg = Release|Win32 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|Win32.Build.0 = Release|Win32 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|x64.ActiveCfg = Release|x64 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/WebcamCV_ColorBW/WebcamCV_ColorBW.vcxproj b/WebcamCV_ColorBW/WebcamCV_ColorBW.vcxproj deleted file mode 100644 index 30fb1df..0000000 --- a/WebcamCV_ColorBW/WebcamCV_ColorBW.vcxproj +++ /dev/null @@ -1,374 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {7FD42DF7-442E-479A-BA76-D0022F99702A} - Win32Proj - WebcamCV_ColorBW - - - - Application - Unicode - v140 - - - Application - Unicode - v140 - - - Application - Unicode - true - v140 - - - Application - Unicode - true - v140 - - - - - - - - - - - - - - - - - - - - - bin\ - obj\$(Configuration)\ - $(ProjectName)_debug - true - true - - - bin\ - obj\$(Configuration)\ - $(ProjectName)_debug - true - true - - - bin\ - obj\$(Configuration)\ - false - - - bin\ - obj\$(Configuration)\ - false - - - - Disabled - EnableFastChecks - %(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - %(AdditionalIncludeDirectories);src;..\..\..\addons\ofxOpenCv\libs;..\..\..\addons\ofxOpenCv\libs\opencv;..\..\..\addons\ofxOpenCv\libs\opencv\include;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\calib3d;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\contrib;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\core;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\features2d;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\flann;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\gpu;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device\detail;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\highgui;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\imgproc;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\legacy;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\ml;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\nonfree;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\objdetect;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\photo;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\stitching;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\stitching\detail;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\superres;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\ts;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\video;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\videostab;..\..\..\addons\ofxOpenCv\libs\opencv\lib;..\..\..\addons\ofxOpenCv\libs\opencv\lib\emscripten;..\..\..\addons\ofxOpenCv\libs\opencv\license;..\..\..\addons\ofxOpenCv\src - CompileAsCpp - - - true - Console - false - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - - - - - - Disabled - EnableFastChecks - %(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - %(AdditionalIncludeDirectories);src;..\..\..\addons\ofxOpenCv\libs;..\..\..\addons\ofxOpenCv\libs\opencv;..\..\..\addons\ofxOpenCv\libs\opencv\include;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\calib3d;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\contrib;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\core;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\features2d;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\flann;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\gpu;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device\detail;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\highgui;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\imgproc;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\legacy;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\ml;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\nonfree;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\objdetect;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\photo;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\stitching;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\stitching\detail;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\superres;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\ts;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\video;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\videostab;..\..\..\addons\ofxOpenCv\libs\opencv\lib;..\..\..\addons\ofxOpenCv\libs\opencv\lib\emscripten;..\..\..\addons\ofxOpenCv\libs\opencv\license;..\..\..\addons\ofxOpenCv\src - CompileAsCpp - true - - - true - Console - false - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - - - - - - false - %(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - %(AdditionalIncludeDirectories);src;..\..\..\addons\ofxOpenCv\libs;..\..\..\addons\ofxOpenCv\libs\opencv;..\..\..\addons\ofxOpenCv\libs\opencv\include;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\calib3d;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\contrib;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\core;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\features2d;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\flann;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\gpu;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device\detail;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\highgui;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\imgproc;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\legacy;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\ml;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\nonfree;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\objdetect;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\photo;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\stitching;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\stitching\detail;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\superres;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\ts;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\video;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\videostab;..\..\..\addons\ofxOpenCv\libs\opencv\lib;..\..\..\addons\ofxOpenCv\libs\opencv\lib\emscripten;..\..\..\addons\ofxOpenCv\libs\opencv\license;..\..\..\addons\ofxOpenCv\src - CompileAsCpp - true - - - false - false - Console - true - true - false - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - - - - - - false - %(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - %(AdditionalIncludeDirectories);src;..\..\..\addons\ofxOpenCv\libs;..\..\..\addons\ofxOpenCv\libs\opencv;..\..\..\addons\ofxOpenCv\libs\opencv\include;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\calib3d;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\contrib;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\core;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\features2d;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\flann;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\gpu;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device\detail;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\highgui;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\imgproc;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\legacy;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\ml;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\nonfree;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\objdetect;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\photo;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\stitching;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\stitching\detail;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\superres;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\ts;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\video;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv2\videostab;..\..\..\addons\ofxOpenCv\libs\opencv\lib;..\..\..\addons\ofxOpenCv\libs\opencv\lib\emscripten;..\..\..\addons\ofxOpenCv\libs\opencv\license;..\..\..\addons\ofxOpenCv\src - CompileAsCpp - - - false - false - Console - true - true - false - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {5837595d-aca9-485c-8e76-729040ce4b0b} - - - - - /D_DEBUG %(AdditionalOptions) - /D_DEBUG %(AdditionalOptions) - $(OF_ROOT)\libs\openFrameworksCompiled\project\vs - - - - - - - - - diff --git a/WebcamCV_ColorBW/WebcamCV_ColorBW.vcxproj.filters b/WebcamCV_ColorBW/WebcamCV_ColorBW.vcxproj.filters deleted file mode 100644 index 3b40d79..0000000 --- a/WebcamCV_ColorBW/WebcamCV_ColorBW.vcxproj.filters +++ /dev/null @@ -1,639 +0,0 @@ - - - - - src - - - src - - - addons\ofxOpenCv\src - - - addons\ofxOpenCv\src - - - addons\ofxOpenCv\src - - - addons\ofxOpenCv\src - - - addons\ofxOpenCv\src - - - addons\ofxOpenCv\src - - - addons\ofxOpenCv\src - - - - - {d8376475-7454-4a24-b08a-aac121d3ad6f} - - - {71834F65-F3A9-211E-73B8-DC85} - - - {FFA81411-43B9-BD99-75AF-1DC3} - - - {00DE84A0-C30B-9800-5466-EA40} - - - {EFE72F22-7F5A-0F39-EC5E-1382} - - - {0391AB06-09E3-B0B3-3E3B-A02B} - - - {18BB18A3-47A8-9F08-1A3F-16FC} - - - {C867B0DE-B007-11B8-C182-5344} - - - {BCD8ABD4-43E3-302D-A2D3-9FE1} - - - {8C35B9C2-29E6-F32E-3851-F20E} - - - {D2BBE5C7-0D36-257F-DD81-67F0} - - - {61E04F54-C77F-B674-C2AB-FEC2} - - - {82D85C2C-89A0-69CF-61C4-9983} - - - {87ED3A19-22E3-EF06-2780-6215} - - - {F2467EC2-B4B5-D403-2F39-AA9A} - - - {35E18472-D925-59BD-12EF-E1E6} - - - {2ABB36D0-FBE0-DD47-75A8-5882} - - - {EA043335-259C-BCEC-5E49-545A} - - - {21D034AC-F39C-E724-350A-C7B6} - - - {E61CD652-51B9-BCE9-A2EB-3331} - - - {D1260DF5-DCB4-6729-CD66-ED90} - - - {4588FFD4-3240-6021-CF1C-66D1} - - - {776C25CB-CD33-75A7-DF99-B8C6} - - - {C217A119-B337-C774-4EDA-1ACC} - - - {C5146E31-2B8E-4299-4FB2-2347} - - - {FFED61A2-DA84-E61F-DAA8-23D8} - - - {AA1539ED-A548-EDA6-1094-37FD} - - - {D4F01CB4-61E3-5965-F3B1-CFB9} - - - {450E6EA2-482C-4DAE-EF14-EE48} - - - {E7CFFFA1-9DFA-D919-100C-FDAA} - - - - - src - - - addons\ofxOpenCv\src - - - addons\ofxOpenCv\src - - - addons\ofxOpenCv\src - - - addons\ofxOpenCv\src - - - addons\ofxOpenCv\src - - - addons\ofxOpenCv\src - - - addons\ofxOpenCv\src - - - addons\ofxOpenCv\src - - - addons\ofxOpenCv\src - - - addons\ofxOpenCv\src - - - addons\ofxOpenCv\libs\opencv\include\opencv - - - addons\ofxOpenCv\libs\opencv\include\opencv - - - addons\ofxOpenCv\libs\opencv\include\opencv - - - addons\ofxOpenCv\libs\opencv\include\opencv - - - addons\ofxOpenCv\libs\opencv\include\opencv - - - addons\ofxOpenCv\libs\opencv\include\opencv - - - addons\ofxOpenCv\libs\opencv\include\opencv - - - addons\ofxOpenCv\libs\opencv\include\opencv - - - addons\ofxOpenCv\libs\opencv\include\opencv - - - addons\ofxOpenCv\libs\opencv\include\opencv - - - addons\ofxOpenCv\libs\opencv\include\opencv - - - addons\ofxOpenCv\libs\opencv\include\opencv2\nonfree - - - addons\ofxOpenCv\libs\opencv\include\opencv2\nonfree - - - addons\ofxOpenCv\libs\opencv\include\opencv2\nonfree - - - addons\ofxOpenCv\libs\opencv\include\opencv2\nonfree - - - addons\ofxOpenCv\libs\opencv\include\opencv2\superres - - - addons\ofxOpenCv\libs\opencv\include\opencv2\superres - - - addons\ofxOpenCv\libs\opencv\include\opencv2\video - - - addons\ofxOpenCv\libs\opencv\include\opencv2\video - - - addons\ofxOpenCv\libs\opencv\include\opencv2\video - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device\detail - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device\detail - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device\detail - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device\detail - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device\detail - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device\detail - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\gpu\device - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\flann - - - addons\ofxOpenCv\libs\opencv\include\opencv2\core - - - addons\ofxOpenCv\libs\opencv\include\opencv2\core - - - addons\ofxOpenCv\libs\opencv\include\opencv2\core - - - addons\ofxOpenCv\libs\opencv\include\opencv2\core - - - addons\ofxOpenCv\libs\opencv\include\opencv2\core - - - addons\ofxOpenCv\libs\opencv\include\opencv2\core - - - addons\ofxOpenCv\libs\opencv\include\opencv2\core - - - addons\ofxOpenCv\libs\opencv\include\opencv2\core - - - addons\ofxOpenCv\libs\opencv\include\opencv2\core - - - addons\ofxOpenCv\libs\opencv\include\opencv2\core - - - addons\ofxOpenCv\libs\opencv\include\opencv2\core - - - addons\ofxOpenCv\libs\opencv\include\opencv2\core - - - addons\ofxOpenCv\libs\opencv\include\opencv2\core - - - addons\ofxOpenCv\libs\opencv\include\opencv2\core - - - addons\ofxOpenCv\libs\opencv\include\opencv2\core - - - addons\ofxOpenCv\libs\opencv\include\opencv2\stitching - - - addons\ofxOpenCv\libs\opencv\include\opencv2\stitching\detail - - - addons\ofxOpenCv\libs\opencv\include\opencv2\stitching\detail - - - addons\ofxOpenCv\libs\opencv\include\opencv2\stitching\detail - - - addons\ofxOpenCv\libs\opencv\include\opencv2\stitching\detail - - - addons\ofxOpenCv\libs\opencv\include\opencv2\stitching\detail - - - addons\ofxOpenCv\libs\opencv\include\opencv2\stitching\detail - - - addons\ofxOpenCv\libs\opencv\include\opencv2\stitching\detail - - - addons\ofxOpenCv\libs\opencv\include\opencv2\stitching\detail - - - addons\ofxOpenCv\libs\opencv\include\opencv2\stitching\detail - - - addons\ofxOpenCv\libs\opencv\include\opencv2\stitching\detail - - - addons\ofxOpenCv\libs\opencv\include\opencv2\stitching\detail - - - addons\ofxOpenCv\libs\opencv\include\opencv2\stitching - - - addons\ofxOpenCv\libs\opencv\include\opencv2 - - - addons\ofxOpenCv\libs\opencv\include\opencv2\imgproc - - - addons\ofxOpenCv\libs\opencv\include\opencv2\imgproc - - - addons\ofxOpenCv\libs\opencv\include\opencv2\imgproc - - - addons\ofxOpenCv\libs\opencv\include\opencv2\objdetect - - - addons\ofxOpenCv\libs\opencv\include\opencv2\legacy - - - addons\ofxOpenCv\libs\opencv\include\opencv2\legacy - - - addons\ofxOpenCv\libs\opencv\include\opencv2\legacy - - - addons\ofxOpenCv\libs\opencv\include\opencv2\legacy - - - addons\ofxOpenCv\libs\opencv\include\opencv2\contrib - - - addons\ofxOpenCv\libs\opencv\include\opencv2\contrib - - - addons\ofxOpenCv\libs\opencv\include\opencv2\contrib - - - addons\ofxOpenCv\libs\opencv\include\opencv2\contrib - - - addons\ofxOpenCv\libs\opencv\include\opencv2\contrib - - - addons\ofxOpenCv\libs\opencv\include\opencv2\ml - - - addons\ofxOpenCv\libs\opencv\include\opencv2\highgui - - - addons\ofxOpenCv\libs\opencv\include\opencv2\highgui - - - addons\ofxOpenCv\libs\opencv\include\opencv2\highgui - - - addons\ofxOpenCv\libs\opencv\include\opencv2\highgui - - - addons\ofxOpenCv\libs\opencv\include\opencv2\features2d - - - addons\ofxOpenCv\libs\opencv\include\opencv2\ts - - - addons\ofxOpenCv\libs\opencv\include\opencv2\ts - - - addons\ofxOpenCv\libs\opencv\include\opencv2\ts - - - addons\ofxOpenCv\libs\opencv\include\opencv2\ts - - - addons\ofxOpenCv\libs\opencv\include\opencv2\ts - - - addons\ofxOpenCv\libs\opencv\include\opencv2\videostab - - - addons\ofxOpenCv\libs\opencv\include\opencv2\videostab - - - addons\ofxOpenCv\libs\opencv\include\opencv2\videostab - - - addons\ofxOpenCv\libs\opencv\include\opencv2\videostab - - - addons\ofxOpenCv\libs\opencv\include\opencv2\videostab - - - addons\ofxOpenCv\libs\opencv\include\opencv2\videostab - - - addons\ofxOpenCv\libs\opencv\include\opencv2\videostab - - - addons\ofxOpenCv\libs\opencv\include\opencv2\videostab - - - addons\ofxOpenCv\libs\opencv\include\opencv2\videostab - - - addons\ofxOpenCv\libs\opencv\include\opencv2\videostab - - - addons\ofxOpenCv\libs\opencv\include\opencv2\videostab - - - addons\ofxOpenCv\libs\opencv\include\opencv2 - - - addons\ofxOpenCv\libs\opencv\include\opencv2\photo - - - addons\ofxOpenCv\libs\opencv\include\opencv2\photo - - - addons\ofxOpenCv\libs\opencv\include\opencv2\calib3d - - - - - - diff --git a/WebcamCV_ColorBW/WebcamCV_ColorBW.vcxproj.user b/WebcamCV_ColorBW/WebcamCV_ColorBW.vcxproj.user deleted file mode 100644 index 988b987..0000000 --- a/WebcamCV_ColorBW/WebcamCV_ColorBW.vcxproj.user +++ /dev/null @@ -1,19 +0,0 @@ - - - - $(ProjectDir)/bin - WindowsLocalDebugger - - - $(ProjectDir)/bin - WindowsLocalDebugger - - - $(ProjectDir)/bin - WindowsLocalDebugger - - - $(ProjectDir)/bin - WindowsLocalDebugger - - \ No newline at end of file diff --git a/WebcamCV_ColorBW/WebcamCV_ColorBW.xcodeproj/project.pbxproj b/WebcamCV_ColorBW/WebcamCV_ColorBW.xcodeproj/project.pbxproj deleted file mode 100644 index fe59eec..0000000 --- a/WebcamCV_ColorBW/WebcamCV_ColorBW.xcodeproj/project.pbxproj +++ /dev/null @@ -1,4042 +0,0 @@ - - - - archiveVersion - 1 - classes - - objectVersion - 46 - objects - - 428EB732FD42504F37BCA78A - - children - - 67AF0E794FA186DD25454CC9 - - isa - PBXGroup - name - calib3d - sourceTree - <group> - - 67AF0E794FA186DD25454CC9 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - calib3d.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/calib3d/calib3d.hpp - sourceTree - SOURCE_ROOT - - CCFB64CDA537F2B5A54CDC13 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - photo.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/photo/photo.hpp - sourceTree - SOURCE_ROOT - - 3B8F70BFDA30BBA2A5A060FC - - children - - 56ED74AD5FC73867F5E046F0 - CCFB64CDA537F2B5A54CDC13 - - isa - PBXGroup - name - photo - sourceTree - <group> - - 56ED74AD5FC73867F5E046F0 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - photo_c.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/photo/photo_c.h - sourceTree - SOURCE_ROOT - - 9ABD8CF34D37FADFEB352B88 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - opencv_modules.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/opencv_modules.hpp - sourceTree - SOURCE_ROOT - - 1054B4574F75C1F693C147C6 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - optical_flow.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/optical_flow.hpp - sourceTree - SOURCE_ROOT - - 0CEC1FE946DBDBAB82AF6FE3 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - global_motion.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/global_motion.hpp - sourceTree - SOURCE_ROOT - - 7279658ADA9582251CB1D783 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - log.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/log.hpp - sourceTree - SOURCE_ROOT - - D9613459E2788BF99E572ED1 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - deblurring.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/deblurring.hpp - sourceTree - SOURCE_ROOT - - 075597E52E99BDE94F8036B2 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - fast_marching_inl.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/fast_marching_inl.hpp - sourceTree - SOURCE_ROOT - - 59570D160E1EDD6EB832826A - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - frame_source.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/frame_source.hpp - sourceTree - SOURCE_ROOT - - 17CE5A4068930946980DE788 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - stabilizer.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/stabilizer.hpp - sourceTree - SOURCE_ROOT - - EEEA907F4732A9D8875ABB9C - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - motion_stabilizing.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/motion_stabilizing.hpp - sourceTree - SOURCE_ROOT - - 9A807ED85FFB53D3638FCBE0 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - videostab.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/videostab.hpp - sourceTree - SOURCE_ROOT - - D2991184C57509808BF041C8 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - inpainting.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/inpainting.hpp - sourceTree - SOURCE_ROOT - - 38D119387412EF71F9FAA033 - - children - - A3411731962D0402217F182B - D2991184C57509808BF041C8 - 9A807ED85FFB53D3638FCBE0 - EEEA907F4732A9D8875ABB9C - 17CE5A4068930946980DE788 - 59570D160E1EDD6EB832826A - 075597E52E99BDE94F8036B2 - D9613459E2788BF99E572ED1 - 7279658ADA9582251CB1D783 - 0CEC1FE946DBDBAB82AF6FE3 - 1054B4574F75C1F693C147C6 - - isa - PBXGroup - name - videostab - sourceTree - <group> - - A3411731962D0402217F182B - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - fast_marching.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/fast_marching.hpp - sourceTree - SOURCE_ROOT - - C4FB85020773DA0F09B8B6CE - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ts_gtest.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ts/ts_gtest.h - sourceTree - SOURCE_ROOT - - A770C8D74DA82B9944013381 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - gpu_perf.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ts/gpu_perf.hpp - sourceTree - SOURCE_ROOT - - 8FB4573CDB2FB9658ACF87AA - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - gpu_test.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ts/gpu_test.hpp - sourceTree - SOURCE_ROOT - - 45E004D1064EC5B8C5C40A83 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ts_perf.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ts/ts_perf.hpp - sourceTree - SOURCE_ROOT - - 0478E60892BF4C0731AE0763 - - children - - 7673F0AA19794A4C9517CF14 - 45E004D1064EC5B8C5C40A83 - 8FB4573CDB2FB9658ACF87AA - A770C8D74DA82B9944013381 - C4FB85020773DA0F09B8B6CE - - isa - PBXGroup - name - ts - sourceTree - <group> - - 7673F0AA19794A4C9517CF14 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ts.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ts/ts.hpp - sourceTree - SOURCE_ROOT - - 86FEC009E2721D0FB23338D7 - - children - - 61339778C58D921474B5729E - - isa - PBXGroup - name - features2d - sourceTree - <group> - - 61339778C58D921474B5729E - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - features2d.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/features2d/features2d.hpp - sourceTree - SOURCE_ROOT - - AE433383D6CA170C418C8A9E - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - highgui_c.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/highgui/highgui_c.h - sourceTree - SOURCE_ROOT - - 293D553B5067FBB8DEFA84D9 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cap_ios.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/highgui/cap_ios.h - sourceTree - SOURCE_ROOT - - C61D3DACE506E4A1C3A6D782 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - highgui.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/highgui/highgui.hpp - sourceTree - SOURCE_ROOT - - 9C99831C330874C2B245AB48 - - children - - 0B87BF43E5302005FEF650B6 - C61D3DACE506E4A1C3A6D782 - 293D553B5067FBB8DEFA84D9 - AE433383D6CA170C418C8A9E - - isa - PBXGroup - name - highgui - sourceTree - <group> - - 0B87BF43E5302005FEF650B6 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ios.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/highgui/ios.h - sourceTree - SOURCE_ROOT - - 0F288FD421D474F4AE2684D3 - - children - - 59626D03C690200AD4E8B3A6 - - isa - PBXGroup - name - ml - sourceTree - <group> - - 59626D03C690200AD4E8B3A6 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ml.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ml/ml.hpp - sourceTree - SOURCE_ROOT - - 5A59183C98FC5E69FC90F138 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - contrib.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/contrib/contrib.hpp - sourceTree - SOURCE_ROOT - - BA2345C0AC2330B6CF370764 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - detection_based_tracker.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/contrib/detection_based_tracker.hpp - sourceTree - SOURCE_ROOT - - 87DBF560FF25F1CD2E737825 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - openfabmap.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/contrib/openfabmap.hpp - sourceTree - SOURCE_ROOT - - A0399084868E7CAFB7E3D8E9 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - retina.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/contrib/retina.hpp - sourceTree - SOURCE_ROOT - - 170C3384C93B182490DDC9CC - - children - - BBAF9D981351C596CA67CAF9 - A0399084868E7CAFB7E3D8E9 - 87DBF560FF25F1CD2E737825 - BA2345C0AC2330B6CF370764 - 5A59183C98FC5E69FC90F138 - - isa - PBXGroup - name - contrib - sourceTree - <group> - - BBAF9D981351C596CA67CAF9 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - hybridtracker.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/contrib/hybridtracker.hpp - sourceTree - SOURCE_ROOT - - 8530EAD600CD792B81B2E79D - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - legacy.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/legacy/legacy.hpp - sourceTree - SOURCE_ROOT - - 665780A3005496E3A4A0D9EF - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - compat.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/legacy/compat.hpp - sourceTree - SOURCE_ROOT - - 60179A75A6C5F9A54DA3A64C - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - streams.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/legacy/streams.hpp - sourceTree - SOURCE_ROOT - - 961A625BD21068033782887C - - children - - 5D966EA1AA66E2D55D047733 - 60179A75A6C5F9A54DA3A64C - 665780A3005496E3A4A0D9EF - 8530EAD600CD792B81B2E79D - - isa - PBXGroup - name - legacy - sourceTree - <group> - - 5D966EA1AA66E2D55D047733 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - blobtrack.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/legacy/blobtrack.hpp - sourceTree - SOURCE_ROOT - - D0CAFE48EE488EEED9149670 - - children - - 97CFAD0B2F2DB004A8A3BC0B - - isa - PBXGroup - name - objdetect - sourceTree - <group> - - 97CFAD0B2F2DB004A8A3BC0B - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - objdetect.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/objdetect/objdetect.hpp - sourceTree - SOURCE_ROOT - - 9B90B3EE60497170AA00BFE8 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - types_c.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/imgproc/types_c.h - sourceTree - SOURCE_ROOT - - 9B55998E41388AD8704E4F9A - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - imgproc_c.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/imgproc/imgproc_c.h - sourceTree - SOURCE_ROOT - - 3E44059DCBC2444D65660B9C - - children - - 114B872696817CC33990FC83 - 9B55998E41388AD8704E4F9A - 9B90B3EE60497170AA00BFE8 - - isa - PBXGroup - name - imgproc - sourceTree - <group> - - 114B872696817CC33990FC83 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - imgproc.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/imgproc/imgproc.hpp - sourceTree - SOURCE_ROOT - - 9B7D592E7AB311451A27C46E - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - opencv.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/opencv.hpp - sourceTree - SOURCE_ROOT - - D2E468A43F6E981DD9B460B5 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - stitcher.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/stitcher.hpp - sourceTree - SOURCE_ROOT - - 057D8E7580EA21E2254ADDDA - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - camera.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/camera.hpp - sourceTree - SOURCE_ROOT - - 2411F6B35DAAAE5083D51167 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - motion_estimators.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/motion_estimators.hpp - sourceTree - SOURCE_ROOT - - 31BE73BA37686CA4E4904323 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - matchers.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/matchers.hpp - sourceTree - SOURCE_ROOT - - B1579F602B98D48A6937B341 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - util.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/util.hpp - sourceTree - SOURCE_ROOT - - CE5203B78839A661DA972B33 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - warpers_inl.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/warpers_inl.hpp - sourceTree - SOURCE_ROOT - - 79E285EDBBEA89226444A4D0 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - blenders.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/blenders.hpp - sourceTree - SOURCE_ROOT - - 1F9D46D19614774956DFE362 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - seam_finders.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/seam_finders.hpp - sourceTree - SOURCE_ROOT - - 1335F3F49E8A72CB04FA873D - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - util_inl.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/util_inl.hpp - sourceTree - SOURCE_ROOT - - D6426FE9886FD3B4A831A446 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - exposure_compensate.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/exposure_compensate.hpp - sourceTree - SOURCE_ROOT - - 26E4EEE253C8A6EFC3B3A639 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - warpers.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/warpers.hpp - sourceTree - SOURCE_ROOT - - 303E2D4AF80E80BD1FD5E5F6 - - children - - 44A8175B7C8A100B5BEF5DE4 - 26E4EEE253C8A6EFC3B3A639 - D6426FE9886FD3B4A831A446 - 1335F3F49E8A72CB04FA873D - 1F9D46D19614774956DFE362 - 79E285EDBBEA89226444A4D0 - CE5203B78839A661DA972B33 - B1579F602B98D48A6937B341 - 31BE73BA37686CA4E4904323 - 2411F6B35DAAAE5083D51167 - 057D8E7580EA21E2254ADDDA - - isa - PBXGroup - name - detail - sourceTree - <group> - - 44A8175B7C8A100B5BEF5DE4 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - autocalib.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/autocalib.hpp - sourceTree - SOURCE_ROOT - - AF43D9569510BEB0E2DFB944 - - children - - F2F75C2513DDF24A79A894DF - 303E2D4AF80E80BD1FD5E5F6 - D2E468A43F6E981DD9B460B5 - - isa - PBXGroup - name - stitching - sourceTree - <group> - - F2F75C2513DDF24A79A894DF - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - warpers.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/warpers.hpp - sourceTree - SOURCE_ROOT - - A9C85208C7E45FB9D1926789 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - wimage.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/wimage.hpp - sourceTree - SOURCE_ROOT - - C66C6414C8B86FDB99ED3B70 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - core.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/core.hpp - sourceTree - SOURCE_ROOT - - 311F65A208008448840A0A42 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - opengl_interop_deprecated.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/opengl_interop_deprecated.hpp - sourceTree - SOURCE_ROOT - - 087522EA37A32B8D902CAB64 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - core_c.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/core_c.h - sourceTree - SOURCE_ROOT - - CD8565F2F122EECA0C095526 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - types_c.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/types_c.h - sourceTree - SOURCE_ROOT - - E4385429A1E63ACEDC39A612 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - operations.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/operations.hpp - sourceTree - SOURCE_ROOT - - E8AF1E9150AD818FA9D9195D - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - version.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/version.hpp - sourceTree - SOURCE_ROOT - - 4CD2228F2C8116D51179E3A3 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - devmem2d.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/devmem2d.hpp - sourceTree - SOURCE_ROOT - - AB2AE477F82ACF17D0121166 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - mat.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/mat.hpp - sourceTree - SOURCE_ROOT - - C1A2E81B4FD0713346D7E806 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - affine.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/affine.hpp - sourceTree - SOURCE_ROOT - - 4CFA8A81B93736DE82F0090A - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - gpumat.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/gpumat.hpp - sourceTree - SOURCE_ROOT - - 452417865E4BFB10C9CBF8A2 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - internal.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/internal.hpp - sourceTree - SOURCE_ROOT - - A2EE5E80B134EA52A8B369D2 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - eigen.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/eigen.hpp - sourceTree - SOURCE_ROOT - - 73CB9E4F6812598081C2FE01 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - opengl_interop.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/opengl_interop.hpp - sourceTree - SOURCE_ROOT - - A5A3A2F98919E2243C73199C - - children - - E798C88F1A0E2511E1756CE0 - 73CB9E4F6812598081C2FE01 - A2EE5E80B134EA52A8B369D2 - 452417865E4BFB10C9CBF8A2 - 4CFA8A81B93736DE82F0090A - C1A2E81B4FD0713346D7E806 - AB2AE477F82ACF17D0121166 - 4CD2228F2C8116D51179E3A3 - E8AF1E9150AD818FA9D9195D - E4385429A1E63ACEDC39A612 - CD8565F2F122EECA0C095526 - 087522EA37A32B8D902CAB64 - 311F65A208008448840A0A42 - C66C6414C8B86FDB99ED3B70 - A9C85208C7E45FB9D1926789 - - isa - PBXGroup - name - core - sourceTree - <group> - - E798C88F1A0E2511E1756CE0 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cuda_devptrs.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/cuda_devptrs.hpp - sourceTree - SOURCE_ROOT - - 8DB45DE3BD6BB97E34BDB411 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - nn_index.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/nn_index.h - sourceTree - SOURCE_ROOT - - ECC34C470C60F0A2AE2761B1 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - random.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/random.h - sourceTree - SOURCE_ROOT - - 45410DD818BB205166E67E89 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - any.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/any.h - sourceTree - SOURCE_ROOT - - 36F0FF7F8D7342D220CC6319 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - dummy.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/dummy.h - sourceTree - SOURCE_ROOT - - 946187321200AC04E570E6EC - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - hierarchical_clustering_index.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/hierarchical_clustering_index.h - sourceTree - SOURCE_ROOT - - 0173A3F435DECD5A4DDE0B8E - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - logger.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/logger.h - sourceTree - SOURCE_ROOT - - 9DA0CBD43DA38386EB04C9AE - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - miniflann.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/miniflann.hpp - sourceTree - SOURCE_ROOT - - 7E57AAE3FAB29F87D19451BC - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - sampling.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/sampling.h - sourceTree - SOURCE_ROOT - - 9B076DCB5B800BE9AF1B71A6 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - flann_base.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/flann_base.hpp - sourceTree - SOURCE_ROOT - - 6B907CFBB1B0FEDE76C41AA0 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - heap.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/heap.h - sourceTree - SOURCE_ROOT - - 011E372AEA4DFBC1A32C2851 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - all_indices.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/all_indices.h - sourceTree - SOURCE_ROOT - - 974AACF856A0A1B7D8F259E0 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - result_set.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/result_set.h - sourceTree - SOURCE_ROOT - - F9EC3DDC0E9F85C34B21C760 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - object_factory.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/object_factory.h - sourceTree - SOURCE_ROOT - - 6DD5A3CBB6D5BBA1C1354F1B - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - flann.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/flann.hpp - sourceTree - SOURCE_ROOT - - 758F19335D4E46A5E0DE449F - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - kdtree_single_index.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/kdtree_single_index.h - sourceTree - SOURCE_ROOT - - E5F6E381641665852B997FC4 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - allocator.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/allocator.h - sourceTree - SOURCE_ROOT - - 0CF0AA3895D28E97D8A1E4A9 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ground_truth.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/ground_truth.h - sourceTree - SOURCE_ROOT - - 096CB33CAD6C5A446E7026E9 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - dynamic_bitset.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/dynamic_bitset.h - sourceTree - SOURCE_ROOT - - FEDA0B6056089762F5FA11CA - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - lsh_table.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/lsh_table.h - sourceTree - SOURCE_ROOT - - 1E95EFD35ED9C5D97F2F015E - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - timer.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/timer.h - sourceTree - SOURCE_ROOT - - 01DAE5C2E3E0A74207B2BE49 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - saving.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/saving.h - sourceTree - SOURCE_ROOT - - 722542BCDC94162B6A8B9B72 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - defines.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/defines.h - sourceTree - SOURCE_ROOT - - DCB56F4E9F44E31D571BC9C4 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - index_testing.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/index_testing.h - sourceTree - SOURCE_ROOT - - A15E0125B8C9B7F01DED5695 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - matrix.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/matrix.h - sourceTree - SOURCE_ROOT - - CBDE84185E2969BA4AB209FC - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - general.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/general.h - sourceTree - SOURCE_ROOT - - E7DDB716B5AE0DEA82DFFEDA - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - autotuned_index.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/autotuned_index.h - sourceTree - SOURCE_ROOT - - 2E411F99E3AB7154484B4F96 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - kmeans_index.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/kmeans_index.h - sourceTree - SOURCE_ROOT - - 586A8EC141BDFA82B3B0518C - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - config.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/config.h - sourceTree - SOURCE_ROOT - - B7BF51E8E757FF8A162D3662 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - lsh_index.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/lsh_index.h - sourceTree - SOURCE_ROOT - - FB213FF0567D1B312DDBD05D - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - linear_index.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/linear_index.h - sourceTree - SOURCE_ROOT - - 45F38573A0B0DEEC8BBC7A2C - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - simplex_downhill.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/simplex_downhill.h - sourceTree - SOURCE_ROOT - - F070AF5E3926EB2CB7A15D1B - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - params.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/params.h - sourceTree - SOURCE_ROOT - - 49EFFCF36CF194CCE0E1FAAB - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - kdtree_index.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/kdtree_index.h - sourceTree - SOURCE_ROOT - - FF58A50E588D6A64EE206840 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - hdf5.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/hdf5.h - sourceTree - SOURCE_ROOT - - FD609E2EC17FCE181DFE635F - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - dist.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/dist.h - sourceTree - SOURCE_ROOT - - 1E45F8C3CCFF6847BFF957AA - - children - - D5A3AFF36064B2CACAD31716 - FD609E2EC17FCE181DFE635F - FF58A50E588D6A64EE206840 - 49EFFCF36CF194CCE0E1FAAB - F070AF5E3926EB2CB7A15D1B - 45F38573A0B0DEEC8BBC7A2C - FB213FF0567D1B312DDBD05D - B7BF51E8E757FF8A162D3662 - 586A8EC141BDFA82B3B0518C - 2E411F99E3AB7154484B4F96 - E7DDB716B5AE0DEA82DFFEDA - CBDE84185E2969BA4AB209FC - A15E0125B8C9B7F01DED5695 - DCB56F4E9F44E31D571BC9C4 - 722542BCDC94162B6A8B9B72 - 01DAE5C2E3E0A74207B2BE49 - 1E95EFD35ED9C5D97F2F015E - FEDA0B6056089762F5FA11CA - 096CB33CAD6C5A446E7026E9 - 0CF0AA3895D28E97D8A1E4A9 - E5F6E381641665852B997FC4 - 758F19335D4E46A5E0DE449F - 6DD5A3CBB6D5BBA1C1354F1B - F9EC3DDC0E9F85C34B21C760 - 974AACF856A0A1B7D8F259E0 - 011E372AEA4DFBC1A32C2851 - 6B907CFBB1B0FEDE76C41AA0 - 9B076DCB5B800BE9AF1B71A6 - 7E57AAE3FAB29F87D19451BC - 9DA0CBD43DA38386EB04C9AE - 0173A3F435DECD5A4DDE0B8E - 946187321200AC04E570E6EC - 36F0FF7F8D7342D220CC6319 - 45410DD818BB205166E67E89 - ECC34C470C60F0A2AE2761B1 - 8DB45DE3BD6BB97E34BDB411 - - isa - PBXGroup - name - flann - sourceTree - <group> - - D5A3AFF36064B2CACAD31716 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - composite_index.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/composite_index.h - sourceTree - SOURCE_ROOT - - FB2852BC651C91987A1C26FB - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - scan.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/scan.hpp - sourceTree - SOURCE_ROOT - - 41E9090E543FC2D51BFD312C - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - warp_reduce.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/warp_reduce.hpp - sourceTree - SOURCE_ROOT - - 5105862F1606831E9239FEAF - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - simd_functions.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/simd_functions.hpp - sourceTree - SOURCE_ROOT - - 18E16A7CA55F6761C64833F7 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - vec_traits.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/vec_traits.hpp - sourceTree - SOURCE_ROOT - - 5A5CDEE1BFF097614562CD88 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - common.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/common.hpp - sourceTree - SOURCE_ROOT - - 0ADD044A3066779F3673F1FE - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - static_check.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/static_check.hpp - sourceTree - SOURCE_ROOT - - EBBA82550412B77EFA70AE87 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - funcattrib.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/funcattrib.hpp - sourceTree - SOURCE_ROOT - - 960BD311ABBA7D3299D7FE1F - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - datamov_utils.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/datamov_utils.hpp - sourceTree - SOURCE_ROOT - - FD2373742F56BFA0EF7FBF09 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - color.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/color.hpp - sourceTree - SOURCE_ROOT - - 6940F9A28CDC85ED7D1847C1 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - emulation.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/emulation.hpp - sourceTree - SOURCE_ROOT - - C4BA8097B54C90163F99F5C1 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - transform_detail.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail/transform_detail.hpp - sourceTree - SOURCE_ROOT - - E21FF871B93E31DA43FE7E42 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - vec_distance_detail.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail/vec_distance_detail.hpp - sourceTree - SOURCE_ROOT - - 2B75A06D9EF1817256BA26F6 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - type_traits_detail.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail/type_traits_detail.hpp - sourceTree - SOURCE_ROOT - - 37D155721DCC51F3D1DC2E02 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - color_detail.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail/color_detail.hpp - sourceTree - SOURCE_ROOT - - 417A0B7154103C22ECC253E8 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - reduce_key_val.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail/reduce_key_val.hpp - sourceTree - SOURCE_ROOT - - DF5D380A1A4583A1636503A6 - - children - - 1C490B8705672F1410388922 - 417A0B7154103C22ECC253E8 - 37D155721DCC51F3D1DC2E02 - 2B75A06D9EF1817256BA26F6 - E21FF871B93E31DA43FE7E42 - C4BA8097B54C90163F99F5C1 - - isa - PBXGroup - name - detail - sourceTree - <group> - - 1C490B8705672F1410388922 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - reduce.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail/reduce.hpp - sourceTree - SOURCE_ROOT - - A1E5C3C977BF213B183ABC28 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - block.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/block.hpp - sourceTree - SOURCE_ROOT - - 7D86D41170A02B361853AB73 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - vec_distance.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/vec_distance.hpp - sourceTree - SOURCE_ROOT - - AF7C3C8465AD112E066C67A7 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - type_traits.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/type_traits.hpp - sourceTree - SOURCE_ROOT - - 84238297E460936905B92D16 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - limits.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/limits.hpp - sourceTree - SOURCE_ROOT - - 3ADB4E06C4EDB97E020A778D - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - functional.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/functional.hpp - sourceTree - SOURCE_ROOT - - 1AD5FD8CB7EA240501080287 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - vec_math.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/vec_math.hpp - sourceTree - SOURCE_ROOT - - 35EEEA3F57EFB3D7DE4C0DED - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - saturate_cast.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/saturate_cast.hpp - sourceTree - SOURCE_ROOT - - A2C86A44C1FD1CB1DD189DFA - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - transform.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/transform.hpp - sourceTree - SOURCE_ROOT - - F38AB91361456BF84AB04DD1 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - border_interpolate.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/border_interpolate.hpp - sourceTree - SOURCE_ROOT - - 0339099A1F7B84040D88AD3C - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - warp_shuffle.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/warp_shuffle.hpp - sourceTree - SOURCE_ROOT - - 63152EF07846DECD2854B62C - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - utility.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/utility.hpp - sourceTree - SOURCE_ROOT - - B1DCC53B17C50537AACC8DF0 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - reduce.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/reduce.hpp - sourceTree - SOURCE_ROOT - - C362FD421E9C5E4962E410EB - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - dynamic_smem.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/dynamic_smem.hpp - sourceTree - SOURCE_ROOT - - F0FCA82EC2A69AEB3BA6AF38 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - filters.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/filters.hpp - sourceTree - SOURCE_ROOT - - C830064088936DB0F1158554 - - children - - 74889E354F64911B56A1CAD1 - F0FCA82EC2A69AEB3BA6AF38 - C362FD421E9C5E4962E410EB - B1DCC53B17C50537AACC8DF0 - 63152EF07846DECD2854B62C - 0339099A1F7B84040D88AD3C - F38AB91361456BF84AB04DD1 - A2C86A44C1FD1CB1DD189DFA - 35EEEA3F57EFB3D7DE4C0DED - 1AD5FD8CB7EA240501080287 - 3ADB4E06C4EDB97E020A778D - 84238297E460936905B92D16 - AF7C3C8465AD112E066C67A7 - 7D86D41170A02B361853AB73 - A1E5C3C977BF213B183ABC28 - DF5D380A1A4583A1636503A6 - 6940F9A28CDC85ED7D1847C1 - FD2373742F56BFA0EF7FBF09 - 960BD311ABBA7D3299D7FE1F - EBBA82550412B77EFA70AE87 - 0ADD044A3066779F3673F1FE - 5A5CDEE1BFF097614562CD88 - 18E16A7CA55F6761C64833F7 - 5105862F1606831E9239FEAF - 41E9090E543FC2D51BFD312C - FB2852BC651C91987A1C26FB - - isa - PBXGroup - name - device - sourceTree - <group> - - 74889E354F64911B56A1CAD1 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - warp.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/warp.hpp - sourceTree - SOURCE_ROOT - - D902EB2409214285BCF5F191 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - stream_accessor.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/stream_accessor.hpp - sourceTree - SOURCE_ROOT - - F886EBA3F8F05C7F74633933 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - devmem2d.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/devmem2d.hpp - sourceTree - SOURCE_ROOT - - E354468911BA093791076DD7 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - gpumat.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/gpumat.hpp - sourceTree - SOURCE_ROOT - - 5236346776DB8ECC4B121CA3 - - children - - AF9A155219FEDFA6E95454EA - E354468911BA093791076DD7 - F886EBA3F8F05C7F74633933 - D902EB2409214285BCF5F191 - C830064088936DB0F1158554 - - isa - PBXGroup - name - gpu - sourceTree - <group> - - AF9A155219FEDFA6E95454EA - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - gpu.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/gpu.hpp - sourceTree - SOURCE_ROOT - - 97FBD89E6180673035AD1083 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - video.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/video/video.hpp - sourceTree - SOURCE_ROOT - - 71C98C3F44D63B39F1482A54 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - background_segm.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/video/background_segm.hpp - sourceTree - SOURCE_ROOT - - C58CC92A5283B95AA31D50FB - - children - - E14D3EF03E140F5604900412 - 71C98C3F44D63B39F1482A54 - 97FBD89E6180673035AD1083 - - isa - PBXGroup - name - video - sourceTree - <group> - - E14D3EF03E140F5604900412 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - tracking.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/video/tracking.hpp - sourceTree - SOURCE_ROOT - - B09FCFF976DCEACB7C7C8D4E - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - optical_flow.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/superres/optical_flow.hpp - sourceTree - SOURCE_ROOT - - ED977EFE7B82B0D53CB5C778 - - children - - C65A89034372885C3F7259F5 - B09FCFF976DCEACB7C7C8D4E - - isa - PBXGroup - name - superres - sourceTree - <group> - - C65A89034372885C3F7259F5 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - superres.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/superres/superres.hpp - sourceTree - SOURCE_ROOT - - D078C50BFCDE342496B5D1F3 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - nonfree.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/nonfree/nonfree.hpp - sourceTree - SOURCE_ROOT - - B353080168DCA97D7DF8732F - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ocl.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/nonfree/ocl.hpp - sourceTree - SOURCE_ROOT - - C7178EBE5A9A3912E58D1F0F - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - features2d.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/nonfree/features2d.hpp - sourceTree - SOURCE_ROOT - - 7BC63C2C5B49F4CFBC87C288 - - children - - DA71BD3D5EB1A1F5E64B6751 - C7178EBE5A9A3912E58D1F0F - B353080168DCA97D7DF8732F - D078C50BFCDE342496B5D1F3 - - isa - PBXGroup - name - nonfree - sourceTree - <group> - - 0F07FE174552DEF007BF5AD5 - - children - - 7BC63C2C5B49F4CFBC87C288 - ED977EFE7B82B0D53CB5C778 - C58CC92A5283B95AA31D50FB - 5236346776DB8ECC4B121CA3 - 1E45F8C3CCFF6847BFF957AA - A5A3A2F98919E2243C73199C - AF43D9569510BEB0E2DFB944 - 9B7D592E7AB311451A27C46E - 3E44059DCBC2444D65660B9C - D0CAFE48EE488EEED9149670 - 961A625BD21068033782887C - 170C3384C93B182490DDC9CC - 0F288FD421D474F4AE2684D3 - 9C99831C330874C2B245AB48 - 86FEC009E2721D0FB23338D7 - 0478E60892BF4C0731AE0763 - 38D119387412EF71F9FAA033 - 9ABD8CF34D37FADFEB352B88 - 3B8F70BFDA30BBA2A5A060FC - 428EB732FD42504F37BCA78A - - isa - PBXGroup - name - opencv2 - sourceTree - <group> - - DA71BD3D5EB1A1F5E64B6751 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - gpu.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/nonfree/gpu.hpp - sourceTree - SOURCE_ROOT - - 319268D200F1BA567E4CCFF9 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cxeigen.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/cxeigen.hpp - sourceTree - SOURCE_ROOT - - 30884ECD9C171AB1B1BDFC3F - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cv.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/cv.hpp - sourceTree - SOURCE_ROOT - - 7C3D9C0EAC738ED2624D264B - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ml.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/ml.h - sourceTree - SOURCE_ROOT - - 7101CF2125B8B2BF46AA2662 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cxcore.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/cxcore.hpp - sourceTree - SOURCE_ROOT - - CF29BFB3FD3CAA54F336E6FD - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cvaux.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/cvaux.hpp - sourceTree - SOURCE_ROOT - - DB8653D6433E14BF06F3EFAF - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cvwimage.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/cvwimage.h - sourceTree - SOURCE_ROOT - - D76A59E7B3601E76351C9BDB - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cvaux.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/cvaux.h - sourceTree - SOURCE_ROOT - - B8427966039B53A0FE69C1F0 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cxcore.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/cxcore.h - sourceTree - SOURCE_ROOT - - E90542C149C83316678AB011 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cxmisc.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/cxmisc.h - sourceTree - SOURCE_ROOT - - 33FF03222909C1A0ECE43753 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cv.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/cv.h - sourceTree - SOURCE_ROOT - - 737B033AA777B67BA4F8F4D2 - - children - - 9FF9126184DFBDE8A912373E - 33FF03222909C1A0ECE43753 - E90542C149C83316678AB011 - B8427966039B53A0FE69C1F0 - D76A59E7B3601E76351C9BDB - DB8653D6433E14BF06F3EFAF - CF29BFB3FD3CAA54F336E6FD - 7101CF2125B8B2BF46AA2662 - 7C3D9C0EAC738ED2624D264B - 30884ECD9C171AB1B1BDFC3F - 319268D200F1BA567E4CCFF9 - - isa - PBXGroup - name - opencv - sourceTree - <group> - - F9F05170CB9BDF47DA2B6E6A - - children - - 737B033AA777B67BA4F8F4D2 - 0F07FE174552DEF007BF5AD5 - - isa - PBXGroup - name - include - sourceTree - <group> - - AAA97F42C2FE4A31ECFD0585 - - children - - F9F05170CB9BDF47DA2B6E6A - - isa - PBXGroup - name - opencv - sourceTree - <group> - - DCC60D6724B56635AE867535 - - children - - AAA97F42C2FE4A31ECFD0585 - - isa - PBXGroup - name - libs - sourceTree - <group> - - 9FF9126184DFBDE8A912373E - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - highgui.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/highgui.h - sourceTree - SOURCE_ROOT - - 516717F84C0146512C47A3EC - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvHaarFinder.h - path - ../../../addons/ofxOpenCv/src/ofxCvHaarFinder.h - sourceTree - SOURCE_ROOT - - D847EBE484F4F500F9CF2549 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvImage.h - path - ../../../addons/ofxOpenCv/src/ofxCvImage.h - sourceTree - SOURCE_ROOT - - 9A048549F08C6DFFA79E6DEF - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvGrayscaleImage.h - path - ../../../addons/ofxOpenCv/src/ofxCvGrayscaleImage.h - sourceTree - SOURCE_ROOT - - FB09C6B2A1DA0EA217240CB8 - - fileRef - 057122A817D12571F8C0C7A4 - isa - PBXBuildFile - - 057122A817D12571F8C0C7A4 - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvGrayscaleImage.cpp - path - ../../../addons/ofxOpenCv/src/ofxCvGrayscaleImage.cpp - sourceTree - SOURCE_ROOT - - 169D3C72FDE6C5590A1616F5 - - fileRef - 7B6A03390302D5A2C9F0E4AB - isa - PBXBuildFile - - 7B6A03390302D5A2C9F0E4AB - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvFloatImage.cpp - path - ../../../addons/ofxOpenCv/src/ofxCvFloatImage.cpp - sourceTree - SOURCE_ROOT - - F7269F96AC34A2B44A680D03 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvFloatImage.h - path - ../../../addons/ofxOpenCv/src/ofxCvFloatImage.h - sourceTree - SOURCE_ROOT - - 63020F16C7E8DED980111241 - - fileRef - C6151136D101F857DAE12722 - isa - PBXBuildFile - - C6151136D101F857DAE12722 - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvImage.cpp - path - ../../../addons/ofxOpenCv/src/ofxCvImage.cpp - sourceTree - SOURCE_ROOT - - E212C821D1064B92DD953A42 - - fileRef - 9A16CBF2E8CFE43AF54FE6F5 - isa - PBXBuildFile - - 9A16CBF2E8CFE43AF54FE6F5 - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvHaarFinder.cpp - path - ../../../addons/ofxOpenCv/src/ofxCvHaarFinder.cpp - sourceTree - SOURCE_ROOT - - 1D5F3298C2FA073628012944 - - fileRef - C76DE5C29BDBD2CAA1DD0021 - isa - PBXBuildFile - - C76DE5C29BDBD2CAA1DD0021 - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvContourFinder.cpp - path - ../../../addons/ofxOpenCv/src/ofxCvContourFinder.cpp - sourceTree - SOURCE_ROOT - - C1C56D20A1A57DC44096BFE7 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvContourFinder.h - path - ../../../addons/ofxOpenCv/src/ofxCvContourFinder.h - sourceTree - SOURCE_ROOT - - CE81A5E39EB3C871FDF3D4D5 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxOpenCv.h - path - ../../../addons/ofxOpenCv/src/ofxOpenCv.h - sourceTree - SOURCE_ROOT - - D5BB6F0357B6422E1B1656B4 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvColorImage.h - path - ../../../addons/ofxOpenCv/src/ofxCvColorImage.h - sourceTree - SOURCE_ROOT - - 603F2267D449084A4187A049 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvBlob.h - path - ../../../addons/ofxOpenCv/src/ofxCvBlob.h - sourceTree - SOURCE_ROOT - - 8E79CF8911DFABAFE23EA45B - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvConstants.h - path - ../../../addons/ofxOpenCv/src/ofxCvConstants.h - sourceTree - SOURCE_ROOT - - DEA2EDC0AFD59176FDEDC222 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvShortImage.h - path - ../../../addons/ofxOpenCv/src/ofxCvShortImage.h - sourceTree - SOURCE_ROOT - - D3301F6A0B43BB293ED97C1D - - fileRef - 8A4DD23693DFAB8EC05FAA5D - isa - PBXBuildFile - - 8A4DD23693DFAB8EC05FAA5D - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvShortImage.cpp - path - ../../../addons/ofxOpenCv/src/ofxCvShortImage.cpp - sourceTree - SOURCE_ROOT - - C756CAAFD542831674E15FE6 - - children - - CE9C7160245B19131DAE6128 - 8A4DD23693DFAB8EC05FAA5D - DEA2EDC0AFD59176FDEDC222 - 8E79CF8911DFABAFE23EA45B - 603F2267D449084A4187A049 - D5BB6F0357B6422E1B1656B4 - CE81A5E39EB3C871FDF3D4D5 - C1C56D20A1A57DC44096BFE7 - C76DE5C29BDBD2CAA1DD0021 - 9A16CBF2E8CFE43AF54FE6F5 - C6151136D101F857DAE12722 - F7269F96AC34A2B44A680D03 - 7B6A03390302D5A2C9F0E4AB - 057122A817D12571F8C0C7A4 - 9A048549F08C6DFFA79E6DEF - D847EBE484F4F500F9CF2549 - 516717F84C0146512C47A3EC - - isa - PBXGroup - name - src - sourceTree - <group> - - A0B90D3B0ADB9C1716816714 - - children - - C756CAAFD542831674E15FE6 - DCC60D6724B56635AE867535 - - isa - PBXGroup - name - ofxOpenCv - sourceTree - <group> - - 250A95BA26587BE85DB0A353 - - fileRef - CE9C7160245B19131DAE6128 - isa - PBXBuildFile - - CE9C7160245B19131DAE6128 - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvColorImage.cpp - path - ../../../addons/ofxOpenCv/src/ofxCvColorImage.cpp - sourceTree - SOURCE_ROOT - - 6948EE371B920CB800B5AC1A - - children - - isa - PBXGroup - name - local_addons - sourceTree - <group> - - BB4B014C10F69532006C3DED - - children - - A0B90D3B0ADB9C1716816714 - - isa - PBXGroup - name - addons - sourceTree - <group> - - E4328143138ABC890047C5CB - - isa - PBXFileReference - lastKnownFileType - wrapper.pb-project - name - openFrameworksLib.xcodeproj - path - ../../../libs/openFrameworksCompiled/project/osx/openFrameworksLib.xcodeproj - sourceTree - SOURCE_ROOT - - E4328144138ABC890047C5CB - - children - - E4328148138ABC890047C5CB - - isa - PBXGroup - name - Products - sourceTree - <group> - - E4328147138ABC890047C5CB - - containerPortal - E4328143138ABC890047C5CB - isa - PBXContainerItemProxy - proxyType - 2 - remoteGlobalIDString - E4B27C1510CBEB8E00536013 - remoteInfo - openFrameworks - - E4328148138ABC890047C5CB - - fileType - archive.ar - isa - PBXReferenceProxy - path - openFrameworksDebug.a - remoteRef - E4328147138ABC890047C5CB - sourceTree - BUILT_PRODUCTS_DIR - - E4328149138ABC9F0047C5CB - - fileRef - E4328148138ABC890047C5CB - isa - PBXBuildFile - - E4B69B4A0A3A1720003C02F2 - - children - - E4B6FCAD0C3E899E008CF71C - E4EB6923138AFD0F00A09F29 - E4B69E1C0A3A1BDC003C02F2 - E4EEC9E9138DF44700A80321 - BB4B014C10F69532006C3DED - 6948EE371B920CB800B5AC1A - E4B69B5B0A3A1756003C02F2 - - isa - PBXGroup - sourceTree - <group> - - E4B69B4C0A3A1720003C02F2 - - attributes - - LastUpgradeCheck - 0600 - - buildConfigurationList - E4B69B4D0A3A1720003C02F2 - compatibilityVersion - Xcode 3.2 - developmentRegion - English - hasScannedForEncodings - 0 - isa - PBXProject - knownRegions - - English - Japanese - French - German - - mainGroup - E4B69B4A0A3A1720003C02F2 - productRefGroup - E4B69B4A0A3A1720003C02F2 - projectDirPath - - projectReferences - - - ProductGroup - E4328144138ABC890047C5CB - ProjectRef - E4328143138ABC890047C5CB - - - projectRoot - - targets - - E4B69B5A0A3A1756003C02F2 - - - E4B69B4D0A3A1720003C02F2 - - buildConfigurations - - E4B69B4E0A3A1720003C02F2 - E4B69B4F0A3A1720003C02F2 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - E4B69B4E0A3A1720003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - OTHER_LDFLAGS - - $(OF_CORE_FRAMEWORKS) $(OF_CORE_LIBS) - ../../../addons/ofxOpenCv/libs/opencv/lib/osx/opencv.a - - HEADER_SEARCH_PATHS - - $(OF_CORE_HEADERS) - src - ../../../addons/ofxOpenCv/libs - ../../../addons/ofxOpenCv/libs/opencv - ../../../addons/ofxOpenCv/libs/opencv/include - ../../../addons/ofxOpenCv/libs/opencv/include/opencv - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2 - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/calib3d - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/contrib - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/features2d - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/highgui - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/imgproc - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/legacy - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ml - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/nonfree - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/objdetect - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/photo - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/superres - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ts - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/video - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab - ../../../addons/ofxOpenCv/libs/opencv/lib - ../../../addons/ofxOpenCv/libs/opencv/lib/emscripten - ../../../addons/ofxOpenCv/libs/opencv/lib/osx - ../../../addons/ofxOpenCv/libs/opencv/license - ../../../addons/ofxOpenCv/src - - CONFIGURATION_BUILD_DIR - $(SRCROOT)/bin/ - COPY_PHASE_STRIP - NO - DEAD_CODE_STRIPPING - YES - GCC_AUTO_VECTORIZATION - YES - GCC_ENABLE_SSE3_EXTENSIONS - YES - GCC_ENABLE_SUPPLEMENTAL_SSE3_INSTRUCTIONS - YES - GCC_INLINES_ARE_PRIVATE_EXTERN - NO - GCC_OPTIMIZATION_LEVEL - 0 - GCC_SYMBOLS_PRIVATE_EXTERN - NO - GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS - YES - GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO - NO - GCC_WARN_ALLOW_INCOMPLETE_PROTOCOL - NO - GCC_WARN_UNINITIALIZED_AUTOS - NO - GCC_WARN_UNUSED_VALUE - NO - GCC_WARN_UNUSED_VARIABLE - NO - MACOSX_DEPLOYMENT_TARGET - 10.8 - ONLY_ACTIVE_ARCH - YES - OTHER_CPLUSPLUSFLAGS - - -D__MACOSX_CORE__ - -mtune=native - - SDKROOT - macosx - - isa - XCBuildConfiguration - name - Debug - - E4B69B4F0A3A1720003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - OTHER_LDFLAGS - - $(OF_CORE_FRAMEWORKS) $(OF_CORE_LIBS) - ../../../addons/ofxOpenCv/libs/opencv/lib/osx/opencv.a - - HEADER_SEARCH_PATHS - - $(OF_CORE_HEADERS) - src - ../../../addons/ofxOpenCv/libs - ../../../addons/ofxOpenCv/libs/opencv - ../../../addons/ofxOpenCv/libs/opencv/include - ../../../addons/ofxOpenCv/libs/opencv/include/opencv - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2 - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/calib3d - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/contrib - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/features2d - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/highgui - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/imgproc - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/legacy - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ml - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/nonfree - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/objdetect - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/photo - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/superres - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ts - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/video - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab - ../../../addons/ofxOpenCv/libs/opencv/lib - ../../../addons/ofxOpenCv/libs/opencv/lib/emscripten - ../../../addons/ofxOpenCv/libs/opencv/lib/osx - ../../../addons/ofxOpenCv/libs/opencv/license - ../../../addons/ofxOpenCv/src - - CONFIGURATION_BUILD_DIR - $(SRCROOT)/bin/ - COPY_PHASE_STRIP - YES - DEAD_CODE_STRIPPING - YES - GCC_AUTO_VECTORIZATION - YES - GCC_ENABLE_SSE3_EXTENSIONS - YES - GCC_ENABLE_SUPPLEMENTAL_SSE3_INSTRUCTIONS - YES - GCC_INLINES_ARE_PRIVATE_EXTERN - NO - GCC_OPTIMIZATION_LEVEL - 3 - GCC_SYMBOLS_PRIVATE_EXTERN - NO - GCC_UNROLL_LOOPS - YES - GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS - YES - GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO - NO - GCC_WARN_ALLOW_INCOMPLETE_PROTOCOL - NO - GCC_WARN_UNINITIALIZED_AUTOS - NO - GCC_WARN_UNUSED_VALUE - NO - GCC_WARN_UNUSED_VARIABLE - NO - MACOSX_DEPLOYMENT_TARGET - 10.8 - OTHER_CPLUSPLUSFLAGS - - -D__MACOSX_CORE__ - -mtune=native - - SDKROOT - macosx - - isa - XCBuildConfiguration - name - Release - - E4B69B580A3A1756003C02F2 - - buildActionMask - 2147483647 - files - - E4B69E200A3A1BDC003C02F2 - E4B69E210A3A1BDC003C02F2 - 250A95BA26587BE85DB0A353 - D3301F6A0B43BB293ED97C1D - 1D5F3298C2FA073628012944 - E212C821D1064B92DD953A42 - 63020F16C7E8DED980111241 - 169D3C72FDE6C5590A1616F5 - FB09C6B2A1DA0EA217240CB8 - - isa - PBXSourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - E4B69B590A3A1756003C02F2 - - buildActionMask - 2147483647 - files - - E4328149138ABC9F0047C5CB - - isa - PBXFrameworksBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - E4B69B5A0A3A1756003C02F2 - - buildConfigurationList - E4B69B5F0A3A1757003C02F2 - buildPhases - - E4B69B580A3A1756003C02F2 - E4B69B590A3A1756003C02F2 - E4B6FFFD0C3F9AB9008CF71C - E4C2427710CC5ABF004149E2 - - buildRules - - dependencies - - E4EEB9AC138B136A00A80321 - - isa - PBXNativeTarget - name - WebcamCV_ColorBW - productName - myOFApp - productReference - E4B69B5B0A3A1756003C02F2 - productType - com.apple.product-type.application - - E4B69B5B0A3A1756003C02F2 - - explicitFileType - wrapper.application - includeInIndex - 0 - isa - PBXFileReference - path - WebcamCV_ColorBWDebug.app - sourceTree - BUILT_PRODUCTS_DIR - - E4B69B5F0A3A1757003C02F2 - - buildConfigurations - - E4B69B600A3A1757003C02F2 - E4B69B610A3A1757003C02F2 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - E4B69B600A3A1757003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - OTHER_LDFLAGS - - $(OF_CORE_FRAMEWORKS) $(OF_CORE_LIBS) - ../../../addons/ofxOpenCv/libs/opencv/lib/osx/opencv.a - - HEADER_SEARCH_PATHS - - $(OF_CORE_HEADERS) - src - ../../../addons/ofxOpenCv/libs - ../../../addons/ofxOpenCv/libs/opencv - ../../../addons/ofxOpenCv/libs/opencv/include - ../../../addons/ofxOpenCv/libs/opencv/include/opencv - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2 - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/calib3d - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/contrib - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/features2d - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/highgui - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/imgproc - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/legacy - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ml - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/nonfree - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/objdetect - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/photo - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/superres - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ts - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/video - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab - ../../../addons/ofxOpenCv/libs/opencv/lib - ../../../addons/ofxOpenCv/libs/opencv/lib/emscripten - ../../../addons/ofxOpenCv/libs/opencv/lib/osx - ../../../addons/ofxOpenCv/libs/opencv/license - ../../../addons/ofxOpenCv/src - - COMBINE_HIDPI_IMAGES - YES - COPY_PHASE_STRIP - NO - FRAMEWORK_SEARCH_PATHS - - $(inherited) - $(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1) - - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 - "$(SRCROOT)/../../../libs/glut/lib/osx" - GCC_DYNAMIC_NO_PIC - NO - GCC_GENERATE_DEBUGGING_SYMBOLS - YES - GCC_MODEL_TUNING - NONE - ICON - $(ICON_NAME_DEBUG) - ICON_FILE - $(ICON_FILE_PATH)$(ICON) - INFOPLIST_FILE - openFrameworks-Info.plist - INSTALL_PATH - /Applications - LIBRARY_SEARCH_PATHS - $(inherited) - PRODUCT_NAME - $(TARGET_NAME)Debug - WRAPPER_EXTENSION - app - - isa - XCBuildConfiguration - name - Debug - - E4B69B610A3A1757003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - OTHER_LDFLAGS - - $(OF_CORE_FRAMEWORKS) $(OF_CORE_LIBS) - ../../../addons/ofxOpenCv/libs/opencv/lib/osx/opencv.a - - HEADER_SEARCH_PATHS - - $(OF_CORE_HEADERS) - src - ../../../addons/ofxOpenCv/libs - ../../../addons/ofxOpenCv/libs/opencv - ../../../addons/ofxOpenCv/libs/opencv/include - ../../../addons/ofxOpenCv/libs/opencv/include/opencv - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2 - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/calib3d - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/contrib - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/features2d - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/highgui - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/imgproc - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/legacy - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ml - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/nonfree - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/objdetect - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/photo - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/superres - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ts - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/video - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab - ../../../addons/ofxOpenCv/libs/opencv/lib - ../../../addons/ofxOpenCv/libs/opencv/lib/emscripten - ../../../addons/ofxOpenCv/libs/opencv/lib/osx - ../../../addons/ofxOpenCv/libs/opencv/license - ../../../addons/ofxOpenCv/src - - COMBINE_HIDPI_IMAGES - YES - COPY_PHASE_STRIP - YES - FRAMEWORK_SEARCH_PATHS - - $(inherited) - $(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1) - - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 - "$(SRCROOT)/../../../libs/glut/lib/osx" - GCC_GENERATE_DEBUGGING_SYMBOLS - YES - GCC_MODEL_TUNING - NONE - ICON - $(ICON_NAME_RELEASE) - ICON_FILE - $(ICON_FILE_PATH)$(ICON) - INFOPLIST_FILE - openFrameworks-Info.plist - INSTALL_PATH - /Applications - LIBRARY_SEARCH_PATHS - $(inherited) - PRODUCT_NAME - $(TARGET_NAME) - WRAPPER_EXTENSION - app - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - - isa - XCBuildConfiguration - name - Release - - E4B69E1C0A3A1BDC003C02F2 - - children - - E4B69E1D0A3A1BDC003C02F2 - E4B69E1E0A3A1BDC003C02F2 - E4B69E1F0A3A1BDC003C02F2 - - isa - PBXGroup - path - src - sourceTree - SOURCE_ROOT - - E4B69E1D0A3A1BDC003C02F2 - - fileEncoding - 30 - isa - PBXFileReference - lastKnownFileType - sourcecode.cpp.cpp - name - main.cpp - path - src/main.cpp - sourceTree - SOURCE_ROOT - - E4B69E1E0A3A1BDC003C02F2 - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofApp.cpp - path - src/ofApp.cpp - sourceTree - SOURCE_ROOT - - E4B69E1F0A3A1BDC003C02F2 - - fileEncoding - 30 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - name - ofApp.h - path - src/ofApp.h - sourceTree - SOURCE_ROOT - - E4B69E200A3A1BDC003C02F2 - - fileRef - E4B69E1D0A3A1BDC003C02F2 - isa - PBXBuildFile - - E4B69E210A3A1BDC003C02F2 - - fileRef - E4B69E1E0A3A1BDC003C02F2 - isa - PBXBuildFile - - E4B6FCAD0C3E899E008CF71C - - fileEncoding - 30 - isa - PBXFileReference - lastKnownFileType - text.plist.xml - path - openFrameworks-Info.plist - sourceTree - <group> - - E4B6FFFD0C3F9AB9008CF71C - - buildActionMask - 2147483647 - files - - inputPaths - - isa - PBXShellScriptBuildPhase - outputPaths - - runOnlyForDeploymentPostprocessing - 0 - shellPath - /bin/sh - shellScript - mkdir -p "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Resources/" -# Copy default icon file into App/Resources -rsync -aved "$ICON_FILE" "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Resources/" -# Copy libfmod and change install directory for fmod to run -rsync -aved ../../../libs/fmodex/lib/osx/libfmodex.dylib "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Frameworks/"; -install_name_tool -change @executable_path/libfmodex.dylib @executable_path/../Frameworks/libfmodex.dylib "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/MacOS/$PRODUCT_NAME"; -# Copy GLUT framework (must remove for AppStore submissions) -rsync -aved ../../../libs/glut/lib/osx/GLUT.framework "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Frameworks/" - - - E4C2427710CC5ABF004149E2 - - buildActionMask - 2147483647 - dstPath - - dstSubfolderSpec - 10 - files - - isa - PBXCopyFilesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - E4EB691F138AFCF100A09F29 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - name - CoreOF.xcconfig - path - ../../../libs/openFrameworksCompiled/project/osx/CoreOF.xcconfig - sourceTree - SOURCE_ROOT - - E4EB6923138AFD0F00A09F29 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - path - Project.xcconfig - sourceTree - <group> - - E4EEB9AB138B136A00A80321 - - containerPortal - E4328143138ABC890047C5CB - isa - PBXContainerItemProxy - proxyType - 1 - remoteGlobalIDString - E4B27C1410CBEB8E00536013 - remoteInfo - openFrameworks - - E4EEB9AC138B136A00A80321 - - isa - PBXTargetDependency - name - openFrameworks - targetProxy - E4EEB9AB138B136A00A80321 - - E4EEC9E9138DF44700A80321 - - children - - E4EB691F138AFCF100A09F29 - E4328143138ABC890047C5CB - - isa - PBXGroup - name - openFrameworks - sourceTree - <group> - - - rootObject - E4B69B4C0A3A1720003C02F2 - - diff --git a/WebcamCV_ColorBW/WebcamCV_ColorBW.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/WebcamCV_ColorBW/WebcamCV_ColorBW.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 919434a..0000000 --- a/WebcamCV_ColorBW/WebcamCV_ColorBW.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/WebcamCV_ColorBW/WebcamCV_ColorBW.xcodeproj/project.xcworkspace/xcuserdata/kevinsiwoff.xcuserdatad/UserInterfaceState.xcuserstate b/WebcamCV_ColorBW/WebcamCV_ColorBW.xcodeproj/project.xcworkspace/xcuserdata/kevinsiwoff.xcuserdatad/UserInterfaceState.xcuserstate deleted file mode 100644 index 953b885..0000000 Binary files a/WebcamCV_ColorBW/WebcamCV_ColorBW.xcodeproj/project.xcworkspace/xcuserdata/kevinsiwoff.xcuserdatad/UserInterfaceState.xcuserstate and /dev/null differ diff --git a/WebcamCV_ColorBW/WebcamCV_ColorBW.xcodeproj/xcshareddata/xcschemes/WebcamCV_ColorBW Debug.xcscheme b/WebcamCV_ColorBW/WebcamCV_ColorBW.xcodeproj/xcshareddata/xcschemes/WebcamCV_ColorBW Debug.xcscheme deleted file mode 100644 index 5ec1bea..0000000 --- a/WebcamCV_ColorBW/WebcamCV_ColorBW.xcodeproj/xcshareddata/xcschemes/WebcamCV_ColorBW Debug.xcscheme +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/WebcamCV_ColorBW/WebcamCV_ColorBW.xcodeproj/xcshareddata/xcschemes/WebcamCV_ColorBW Release.xcscheme b/WebcamCV_ColorBW/WebcamCV_ColorBW.xcodeproj/xcshareddata/xcschemes/WebcamCV_ColorBW Release.xcscheme deleted file mode 100644 index 445a85e..0000000 --- a/WebcamCV_ColorBW/WebcamCV_ColorBW.xcodeproj/xcshareddata/xcschemes/WebcamCV_ColorBW Release.xcscheme +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/WebcamCV_ColorBW/addons.make b/WebcamCV_ColorBW/addons.make deleted file mode 100644 index 886857d..0000000 --- a/WebcamCV_ColorBW/addons.make +++ /dev/null @@ -1 +0,0 @@ -ofxOpenCv diff --git a/WebcamCV_ColorBW/bin/data/.gitkeep b/WebcamCV_ColorBW/bin/data/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/WebcamCV_ColorBW/config.make b/WebcamCV_ColorBW/config.make deleted file mode 100644 index df10f64..0000000 --- a/WebcamCV_ColorBW/config.make +++ /dev/null @@ -1,142 +0,0 @@ -################################################################################ -# CONFIGURE PROJECT MAKEFILE (optional) -# This file is where we make project specific configurations. -################################################################################ - -################################################################################ -# OF ROOT -# The location of your root openFrameworks installation -# (default) OF_ROOT = ../../.. -################################################################################ -# OF_ROOT = ../../.. - -################################################################################ -# PROJECT ROOT -# The location of the project - a starting place for searching for files -# (default) PROJECT_ROOT = . (this directory) -# -################################################################################ -# PROJECT_ROOT = . - -################################################################################ -# PROJECT SPECIFIC CHECKS -# This is a project defined section to create internal makefile flags to -# conditionally enable or disable the addition of various features within -# this makefile. For instance, if you want to make changes based on whether -# GTK is installed, one might test that here and create a variable to check. -################################################################################ -# None - -################################################################################ -# PROJECT EXTERNAL SOURCE PATHS -# These are fully qualified paths that are not within the PROJECT_ROOT folder. -# Like source folders in the PROJECT_ROOT, these paths are subject to -# exlclusion via the PROJECT_EXLCUSIONS list. -# -# (default) PROJECT_EXTERNAL_SOURCE_PATHS = (blank) -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_EXTERNAL_SOURCE_PATHS = - -################################################################################ -# PROJECT EXCLUSIONS -# These makefiles assume that all folders in your current project directory -# and any listed in the PROJECT_EXTERNAL_SOURCH_PATHS are are valid locations -# to look for source code. The any folders or files that match any of the -# items in the PROJECT_EXCLUSIONS list below will be ignored. -# -# Each item in the PROJECT_EXCLUSIONS list will be treated as a complete -# string unless teh user adds a wildcard (%) operator to match subdirectories. -# GNU make only allows one wildcard for matching. The second wildcard (%) is -# treated literally. -# -# (default) PROJECT_EXCLUSIONS = (blank) -# -# Will automatically exclude the following: -# -# $(PROJECT_ROOT)/bin% -# $(PROJECT_ROOT)/obj% -# $(PROJECT_ROOT)/%.xcodeproj -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_EXCLUSIONS = - -################################################################################ -# PROJECT LINKER FLAGS -# These flags will be sent to the linker when compiling the executable. -# -# (default) PROJECT_LDFLAGS = -Wl,-rpath=./libs -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ - -# Currently, shared libraries that are needed are copied to the -# $(PROJECT_ROOT)/bin/libs directory. The following LDFLAGS tell the linker to -# add a runtime path to search for those shared libraries, since they aren't -# incorporated directly into the final executable application binary. -# TODO: should this be a default setting? -# PROJECT_LDFLAGS=-Wl,-rpath=./libs - -################################################################################ -# PROJECT DEFINES -# Create a space-delimited list of DEFINES. The list will be converted into -# CFLAGS with the "-D" flag later in the makefile. -# -# (default) PROJECT_DEFINES = (blank) -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_DEFINES = - -################################################################################ -# PROJECT CFLAGS -# This is a list of fully qualified CFLAGS required when compiling for this -# project. These CFLAGS will be used IN ADDITION TO the PLATFORM_CFLAGS -# defined in your platform specific core configuration files. These flags are -# presented to the compiler BEFORE the PROJECT_OPTIMIZATION_CFLAGS below. -# -# (default) PROJECT_CFLAGS = (blank) -# -# Note: Before adding PROJECT_CFLAGS, note that the PLATFORM_CFLAGS defined in -# your platform specific configuration file will be applied by default and -# further flags here may not be needed. -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_CFLAGS = - -################################################################################ -# PROJECT OPTIMIZATION CFLAGS -# These are lists of CFLAGS that are target-specific. While any flags could -# be conditionally added, they are usually limited to optimization flags. -# These flags are added BEFORE the PROJECT_CFLAGS. -# -# PROJECT_OPTIMIZATION_CFLAGS_RELEASE flags are only applied to RELEASE targets. -# -# (default) PROJECT_OPTIMIZATION_CFLAGS_RELEASE = (blank) -# -# PROJECT_OPTIMIZATION_CFLAGS_DEBUG flags are only applied to DEBUG targets. -# -# (default) PROJECT_OPTIMIZATION_CFLAGS_DEBUG = (blank) -# -# Note: Before adding PROJECT_OPTIMIZATION_CFLAGS, please note that the -# PLATFORM_OPTIMIZATION_CFLAGS defined in your platform specific configuration -# file will be applied by default and further optimization flags here may not -# be needed. -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_OPTIMIZATION_CFLAGS_RELEASE = -# PROJECT_OPTIMIZATION_CFLAGS_DEBUG = - -################################################################################ -# PROJECT COMPILERS -# Custom compilers can be set for CC and CXX -# (default) PROJECT_CXX = (blank) -# (default) PROJECT_CC = (blank) -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_CXX = -# PROJECT_CC = diff --git a/WebcamCV_ColorBW/icon.rc b/WebcamCV_ColorBW/icon.rc deleted file mode 100644 index 7e26eb3..0000000 --- a/WebcamCV_ColorBW/icon.rc +++ /dev/null @@ -1,8 +0,0 @@ -// Icon Resource Definition -#define MAIN_ICON 102 - -#if defined(_DEBUG) -MAIN_ICON ICON "icon_debug.ico" -#else -MAIN_ICON ICON "icon.ico" -#endif diff --git a/WebcamCV_ColorBW/openFrameworks-Info.plist b/WebcamCV_ColorBW/openFrameworks-Info.plist deleted file mode 100644 index 8d64d2b..0000000 --- a/WebcamCV_ColorBW/openFrameworks-Info.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - cc.openFrameworks.ofapp - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - APPL - CFBundleSignature - ???? - CFBundleVersion - 1.0 - CFBundleIconFile - ${ICON} - - diff --git a/WebcamCV_ColorBW/src/main.cpp b/WebcamCV_ColorBW/src/main.cpp deleted file mode 100644 index e57370b..0000000 --- a/WebcamCV_ColorBW/src/main.cpp +++ /dev/null @@ -1,13 +0,0 @@ -#include "ofMain.h" -#include "ofApp.h" - -//======================================================================== -int main( ){ - ofSetupOpenGL(1024,768,OF_WINDOW); // <-------- setup the GL context - - // this kicks off the running of my app - // can be OF_WINDOW or OF_FULLSCREEN - // pass in width and height too: - ofRunApp(new ofApp()); - -} diff --git a/WebcamCV_ColorBW/src/ofApp.cpp b/WebcamCV_ColorBW/src/ofApp.cpp deleted file mode 100644 index 2d24491..0000000 --- a/WebcamCV_ColorBW/src/ofApp.cpp +++ /dev/null @@ -1,82 +0,0 @@ -#include "ofApp.h" - -//-------------------------------------------------------------- -void ofApp::setup(){ - mVideoGrabber.setup(320, 240); - mVideoGrabber.setVerbose(true);//set the videoGrabber to verbose so we can get a debug output - mColorImage.allocate(320, 240); - mGrayscaleImage.allocate(320, 240); -} - -//-------------------------------------------------------------- -void ofApp::update(){ - mVideoGrabber.update(); - if(mVideoGrabber.isFrameNew()){ - mColorImage.setFromPixels(mVideoGrabber.getPixels()); - mGrayscaleImage = mColorImage;//notice how we set the grayscale image to the val of our colorImage. This is done through operator overloading in C++ - - } -} - -//-------------------------------------------------------------- -void ofApp::draw(){ - mVideoGrabber.draw(20, 20);//draw the videoGrabber output - mColorImage.draw(20, mVideoGrabber.getWidth() + 20);//draw the colorImage output - mGrayscaleImage.draw(mColorImage.getWidth()+40, mVideoGrabber.getWidth() + 20);//draw the grayscaleImage output - -} - -//-------------------------------------------------------------- -void ofApp::keyPressed(int key){ - -} - -//-------------------------------------------------------------- -void ofApp::keyReleased(int key){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseMoved(int x, int y ){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseDragged(int x, int y, int button){ - -} - -//-------------------------------------------------------------- -void ofApp::mousePressed(int x, int y, int button){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseReleased(int x, int y, int button){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseEntered(int x, int y){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseExited(int x, int y){ - -} - -//-------------------------------------------------------------- -void ofApp::windowResized(int w, int h){ - -} - -//-------------------------------------------------------------- -void ofApp::gotMessage(ofMessage msg){ - -} - -//-------------------------------------------------------------- -void ofApp::dragEvent(ofDragInfo dragInfo){ - -} diff --git a/WebcamCV_ColorBW/src/ofApp.h b/WebcamCV_ColorBW/src/ofApp.h deleted file mode 100644 index 08da08f..0000000 --- a/WebcamCV_ColorBW/src/ofApp.h +++ /dev/null @@ -1,30 +0,0 @@ -#pragma once - -#include "ofMain.h" -//comes with OpenFrameworks but we must include it as addon in project generator -#include "ofxOpenCv.h" - -class ofApp : public ofBaseApp{ - - public: - void setup(); - void update(); - void draw(); - - void keyPressed(int key); - void keyReleased(int key); - void mouseMoved(int x, int y ); - void mouseDragged(int x, int y, int button); - void mousePressed(int x, int y, int button); - void mouseReleased(int x, int y, int button); - void mouseEntered(int x, int y); - void mouseExited(int x, int y); - void windowResized(int w, int h); - void dragEvent(ofDragInfo dragInfo); - void gotMessage(ofMessage msg); - - ofVideoGrabber mVideoGrabber; - ofxCvColorImage mColorImage; - ofxCvGrayscaleImage mGrayscaleImage; - -}; diff --git a/WebcamFbo/Makefile b/WebcamFbo/Makefile deleted file mode 100644 index 8d8e4c0..0000000 --- a/WebcamFbo/Makefile +++ /dev/null @@ -1,13 +0,0 @@ -# Attempt to load a config.make file. -# If none is found, project defaults in config.project.make will be used. -ifneq ($(wildcard config.make),) - include config.make -endif - -# make sure the the OF_ROOT location is defined -ifndef OF_ROOT - OF_ROOT=$(realpath ../../..) -endif - -# call the project makefile! -include $(OF_ROOT)/libs/openFrameworksCompiled/project/makefileCommon/compile.project.mk diff --git a/WebcamFbo/Project.xcconfig b/WebcamFbo/Project.xcconfig deleted file mode 100644 index e570b15..0000000 --- a/WebcamFbo/Project.xcconfig +++ /dev/null @@ -1,17 +0,0 @@ -//THE PATH TO THE ROOT OF OUR OF PATH RELATIVE TO THIS PROJECT. -//THIS NEEDS TO BE DEFINED BEFORE CoreOF.xcconfig IS INCLUDED -OF_PATH = ../../.. - -//THIS HAS ALL THE HEADER AND LIBS FOR OF CORE -#include "../../../libs/openFrameworksCompiled/project/osx/CoreOF.xcconfig" - -//ICONS - NEW IN 0072 -ICON_NAME_DEBUG = icon-debug.icns -ICON_NAME_RELEASE = icon.icns -ICON_FILE_PATH = $(OF_PATH)/libs/openFrameworksCompiled/project/osx/ - -//IF YOU WANT AN APP TO HAVE A CUSTOM ICON - PUT THEM IN YOUR DATA FOLDER AND CHANGE ICON_FILE_PATH to: -//ICON_FILE_PATH = bin/data/ - -OTHER_LDFLAGS = $(OF_CORE_LIBS) $(OF_CORE_FRAMEWORKS) -HEADER_SEARCH_PATHS = $(OF_CORE_HEADERS) diff --git a/WebcamFbo/WebcamFbo.sln b/WebcamFbo/WebcamFbo.sln deleted file mode 100644 index 623ab8a..0000000 --- a/WebcamFbo/WebcamFbo.sln +++ /dev/null @@ -1,35 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 14 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "WebcamFbo", "WebcamFbo.vcxproj", "{7FD42DF7-442E-479A-BA76-D0022F99702A}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "openframeworksLib", "..\..\..\libs\openFrameworksCompiled\project\vs\openframeworksLib.vcxproj", "{5837595D-ACA9-485C-8E76-729040CE4B0B}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Debug|Win32.ActiveCfg = Debug|Win32 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Debug|Win32.Build.0 = Debug|Win32 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Debug|x64.ActiveCfg = Debug|x64 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Debug|x64.Build.0 = Debug|x64 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|Win32.ActiveCfg = Release|Win32 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|Win32.Build.0 = Release|Win32 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|x64.ActiveCfg = Release|x64 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|x64.Build.0 = Release|x64 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Debug|Win32.ActiveCfg = Debug|Win32 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Debug|Win32.Build.0 = Debug|Win32 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Debug|x64.ActiveCfg = Debug|x64 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Debug|x64.Build.0 = Debug|x64 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|Win32.ActiveCfg = Release|Win32 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|Win32.Build.0 = Release|Win32 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|x64.ActiveCfg = Release|x64 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/WebcamFbo/WebcamFbo.vcxproj b/WebcamFbo/WebcamFbo.vcxproj deleted file mode 100644 index f04b3ec..0000000 --- a/WebcamFbo/WebcamFbo.vcxproj +++ /dev/null @@ -1,198 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {7FD42DF7-442E-479A-BA76-D0022F99702A} - Win32Proj - WebcamFbo - - - - Application - Unicode - v140 - - - Application - Unicode - v140 - - - Application - Unicode - true - v140 - - - Application - Unicode - true - v140 - - - - - - - - - - - - - - - - - - - - - bin\ - obj\$(Configuration)\ - $(ProjectName)_debug - true - true - - - bin\ - obj\$(Configuration)\ - $(ProjectName)_debug - true - true - - - bin\ - obj\$(Configuration)\ - false - - - bin\ - obj\$(Configuration)\ - false - - - - Disabled - EnableFastChecks - %(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - %(AdditionalIncludeDirectories);src - CompileAsCpp - - - true - Console - false - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - - - - - - Disabled - EnableFastChecks - %(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - %(AdditionalIncludeDirectories);src - CompileAsCpp - true - - - true - Console - false - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - - - - - - false - %(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - %(AdditionalIncludeDirectories);src - CompileAsCpp - true - - - false - false - Console - true - true - false - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - - - - - - false - %(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - %(AdditionalIncludeDirectories);src - CompileAsCpp - - - false - false - Console - true - true - false - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - - - - - - - - - - - - - {5837595d-aca9-485c-8e76-729040ce4b0b} - - - - - /D_DEBUG %(AdditionalOptions) - /D_DEBUG %(AdditionalOptions) - $(OF_ROOT)\libs\openFrameworksCompiled\project\vs - - - - - - - - - diff --git a/WebcamFbo/WebcamFbo.vcxproj.filters b/WebcamFbo/WebcamFbo.vcxproj.filters deleted file mode 100644 index c532538..0000000 --- a/WebcamFbo/WebcamFbo.vcxproj.filters +++ /dev/null @@ -1,24 +0,0 @@ - - - - - src - - - src - - - - - {d8376475-7454-4a24-b08a-aac121d3ad6f} - - - - - src - - - - - - diff --git a/WebcamFbo/WebcamFbo.vcxproj.user b/WebcamFbo/WebcamFbo.vcxproj.user deleted file mode 100644 index 988b987..0000000 --- a/WebcamFbo/WebcamFbo.vcxproj.user +++ /dev/null @@ -1,19 +0,0 @@ - - - - $(ProjectDir)/bin - WindowsLocalDebugger - - - $(ProjectDir)/bin - WindowsLocalDebugger - - - $(ProjectDir)/bin - WindowsLocalDebugger - - - $(ProjectDir)/bin - WindowsLocalDebugger - - \ No newline at end of file diff --git a/WebcamFbo/WebcamFbo.xcodeproj/project.pbxproj b/WebcamFbo/WebcamFbo.xcodeproj/project.pbxproj deleted file mode 100644 index 0070fa7..0000000 --- a/WebcamFbo/WebcamFbo.xcodeproj/project.pbxproj +++ /dev/null @@ -1,641 +0,0 @@ - - - - archiveVersion - 1 - classes - - objectVersion - 46 - objects - - 6948EE371B920CB800B5AC1A - - children - - isa - PBXGroup - name - local_addons - sourceTree - <group> - - BB4B014C10F69532006C3DED - - children - - isa - PBXGroup - name - addons - sourceTree - <group> - - E4328143138ABC890047C5CB - - isa - PBXFileReference - lastKnownFileType - wrapper.pb-project - name - openFrameworksLib.xcodeproj - path - ../../../libs/openFrameworksCompiled/project/osx/openFrameworksLib.xcodeproj - sourceTree - SOURCE_ROOT - - E4328144138ABC890047C5CB - - children - - E4328148138ABC890047C5CB - - isa - PBXGroup - name - Products - sourceTree - <group> - - E4328147138ABC890047C5CB - - containerPortal - E4328143138ABC890047C5CB - isa - PBXContainerItemProxy - proxyType - 2 - remoteGlobalIDString - E4B27C1510CBEB8E00536013 - remoteInfo - openFrameworks - - E4328148138ABC890047C5CB - - fileType - archive.ar - isa - PBXReferenceProxy - path - openFrameworksDebug.a - remoteRef - E4328147138ABC890047C5CB - sourceTree - BUILT_PRODUCTS_DIR - - E4328149138ABC9F0047C5CB - - fileRef - E4328148138ABC890047C5CB - isa - PBXBuildFile - - E4B69B4A0A3A1720003C02F2 - - children - - E4B6FCAD0C3E899E008CF71C - E4EB6923138AFD0F00A09F29 - E4B69E1C0A3A1BDC003C02F2 - E4EEC9E9138DF44700A80321 - BB4B014C10F69532006C3DED - 6948EE371B920CB800B5AC1A - E4B69B5B0A3A1756003C02F2 - - isa - PBXGroup - sourceTree - <group> - - E4B69B4C0A3A1720003C02F2 - - attributes - - LastUpgradeCheck - 0600 - - buildConfigurationList - E4B69B4D0A3A1720003C02F2 - compatibilityVersion - Xcode 3.2 - developmentRegion - English - hasScannedForEncodings - 0 - isa - PBXProject - knownRegions - - English - Japanese - French - German - - mainGroup - E4B69B4A0A3A1720003C02F2 - productRefGroup - E4B69B4A0A3A1720003C02F2 - projectDirPath - - projectReferences - - - ProductGroup - E4328144138ABC890047C5CB - ProjectRef - E4328143138ABC890047C5CB - - - projectRoot - - targets - - E4B69B5A0A3A1756003C02F2 - - - E4B69B4D0A3A1720003C02F2 - - buildConfigurations - - E4B69B4E0A3A1720003C02F2 - E4B69B4F0A3A1720003C02F2 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - E4B69B4E0A3A1720003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - CONFIGURATION_BUILD_DIR - $(SRCROOT)/bin/ - COPY_PHASE_STRIP - NO - DEAD_CODE_STRIPPING - YES - GCC_AUTO_VECTORIZATION - YES - GCC_ENABLE_SSE3_EXTENSIONS - YES - GCC_ENABLE_SUPPLEMENTAL_SSE3_INSTRUCTIONS - YES - GCC_INLINES_ARE_PRIVATE_EXTERN - NO - GCC_OPTIMIZATION_LEVEL - 0 - GCC_SYMBOLS_PRIVATE_EXTERN - NO - GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS - YES - GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO - NO - GCC_WARN_ALLOW_INCOMPLETE_PROTOCOL - NO - GCC_WARN_UNINITIALIZED_AUTOS - NO - GCC_WARN_UNUSED_VALUE - NO - GCC_WARN_UNUSED_VARIABLE - NO - MACOSX_DEPLOYMENT_TARGET - 10.8 - ONLY_ACTIVE_ARCH - YES - OTHER_CPLUSPLUSFLAGS - - -D__MACOSX_CORE__ - -mtune=native - - SDKROOT - macosx - - isa - XCBuildConfiguration - name - Debug - - E4B69B4F0A3A1720003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - CONFIGURATION_BUILD_DIR - $(SRCROOT)/bin/ - COPY_PHASE_STRIP - YES - DEAD_CODE_STRIPPING - YES - GCC_AUTO_VECTORIZATION - YES - GCC_ENABLE_SSE3_EXTENSIONS - YES - GCC_ENABLE_SUPPLEMENTAL_SSE3_INSTRUCTIONS - YES - GCC_INLINES_ARE_PRIVATE_EXTERN - NO - GCC_OPTIMIZATION_LEVEL - 3 - GCC_SYMBOLS_PRIVATE_EXTERN - NO - GCC_UNROLL_LOOPS - YES - GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS - YES - GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO - NO - GCC_WARN_ALLOW_INCOMPLETE_PROTOCOL - NO - GCC_WARN_UNINITIALIZED_AUTOS - NO - GCC_WARN_UNUSED_VALUE - NO - GCC_WARN_UNUSED_VARIABLE - NO - MACOSX_DEPLOYMENT_TARGET - 10.8 - OTHER_CPLUSPLUSFLAGS - - -D__MACOSX_CORE__ - -mtune=native - - SDKROOT - macosx - - isa - XCBuildConfiguration - name - Release - - E4B69B580A3A1756003C02F2 - - buildActionMask - 2147483647 - files - - E4B69E200A3A1BDC003C02F2 - E4B69E210A3A1BDC003C02F2 - - isa - PBXSourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - E4B69B590A3A1756003C02F2 - - buildActionMask - 2147483647 - files - - E4328149138ABC9F0047C5CB - - isa - PBXFrameworksBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - E4B69B5A0A3A1756003C02F2 - - buildConfigurationList - E4B69B5F0A3A1757003C02F2 - buildPhases - - E4B69B580A3A1756003C02F2 - E4B69B590A3A1756003C02F2 - E4B6FFFD0C3F9AB9008CF71C - E4C2427710CC5ABF004149E2 - - buildRules - - dependencies - - E4EEB9AC138B136A00A80321 - - isa - PBXNativeTarget - name - WebcamFbo - productName - myOFApp - productReference - E4B69B5B0A3A1756003C02F2 - productType - com.apple.product-type.application - - E4B69B5B0A3A1756003C02F2 - - explicitFileType - wrapper.application - includeInIndex - 0 - isa - PBXFileReference - path - WebcamFboDebug.app - sourceTree - BUILT_PRODUCTS_DIR - - E4B69B5F0A3A1757003C02F2 - - buildConfigurations - - E4B69B600A3A1757003C02F2 - E4B69B610A3A1757003C02F2 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - E4B69B600A3A1757003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - COMBINE_HIDPI_IMAGES - YES - COPY_PHASE_STRIP - NO - FRAMEWORK_SEARCH_PATHS - - $(inherited) - $(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1) - - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 - "$(SRCROOT)/../../../libs/glut/lib/osx" - GCC_DYNAMIC_NO_PIC - NO - GCC_GENERATE_DEBUGGING_SYMBOLS - YES - GCC_MODEL_TUNING - NONE - ICON - $(ICON_NAME_DEBUG) - ICON_FILE - $(ICON_FILE_PATH)$(ICON) - INFOPLIST_FILE - openFrameworks-Info.plist - INSTALL_PATH - /Applications - LIBRARY_SEARCH_PATHS - $(inherited) - PRODUCT_NAME - $(TARGET_NAME)Debug - WRAPPER_EXTENSION - app - - isa - XCBuildConfiguration - name - Debug - - E4B69B610A3A1757003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - COMBINE_HIDPI_IMAGES - YES - COPY_PHASE_STRIP - YES - FRAMEWORK_SEARCH_PATHS - - $(inherited) - $(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1) - - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 - "$(SRCROOT)/../../../libs/glut/lib/osx" - GCC_GENERATE_DEBUGGING_SYMBOLS - YES - GCC_MODEL_TUNING - NONE - ICON - $(ICON_NAME_RELEASE) - ICON_FILE - $(ICON_FILE_PATH)$(ICON) - INFOPLIST_FILE - openFrameworks-Info.plist - INSTALL_PATH - /Applications - LIBRARY_SEARCH_PATHS - $(inherited) - PRODUCT_NAME - $(TARGET_NAME) - WRAPPER_EXTENSION - app - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - - isa - XCBuildConfiguration - name - Release - - E4B69E1C0A3A1BDC003C02F2 - - children - - E4B69E1D0A3A1BDC003C02F2 - E4B69E1E0A3A1BDC003C02F2 - E4B69E1F0A3A1BDC003C02F2 - - isa - PBXGroup - path - src - sourceTree - SOURCE_ROOT - - E4B69E1D0A3A1BDC003C02F2 - - fileEncoding - 30 - isa - PBXFileReference - lastKnownFileType - sourcecode.cpp.cpp - name - main.cpp - path - src/main.cpp - sourceTree - SOURCE_ROOT - - E4B69E1E0A3A1BDC003C02F2 - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofApp.cpp - path - src/ofApp.cpp - sourceTree - SOURCE_ROOT - - E4B69E1F0A3A1BDC003C02F2 - - fileEncoding - 30 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - name - ofApp.h - path - src/ofApp.h - sourceTree - SOURCE_ROOT - - E4B69E200A3A1BDC003C02F2 - - fileRef - E4B69E1D0A3A1BDC003C02F2 - isa - PBXBuildFile - - E4B69E210A3A1BDC003C02F2 - - fileRef - E4B69E1E0A3A1BDC003C02F2 - isa - PBXBuildFile - - E4B6FCAD0C3E899E008CF71C - - fileEncoding - 30 - isa - PBXFileReference - lastKnownFileType - text.plist.xml - path - openFrameworks-Info.plist - sourceTree - <group> - - E4B6FFFD0C3F9AB9008CF71C - - buildActionMask - 2147483647 - files - - inputPaths - - isa - PBXShellScriptBuildPhase - outputPaths - - runOnlyForDeploymentPostprocessing - 0 - shellPath - /bin/sh - shellScript - mkdir -p "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Resources/" -# Copy default icon file into App/Resources -rsync -aved "$ICON_FILE" "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Resources/" -# Copy libfmod and change install directory for fmod to run -rsync -aved ../../../libs/fmodex/lib/osx/libfmodex.dylib "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Frameworks/"; -install_name_tool -change @executable_path/libfmodex.dylib @executable_path/../Frameworks/libfmodex.dylib "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/MacOS/$PRODUCT_NAME"; -# Copy GLUT framework (must remove for AppStore submissions) -rsync -aved ../../../libs/glut/lib/osx/GLUT.framework "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Frameworks/" - - - E4C2427710CC5ABF004149E2 - - buildActionMask - 2147483647 - dstPath - - dstSubfolderSpec - 10 - files - - isa - PBXCopyFilesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - E4EB691F138AFCF100A09F29 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - name - CoreOF.xcconfig - path - ../../../libs/openFrameworksCompiled/project/osx/CoreOF.xcconfig - sourceTree - SOURCE_ROOT - - E4EB6923138AFD0F00A09F29 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - path - Project.xcconfig - sourceTree - <group> - - E4EEB9AB138B136A00A80321 - - containerPortal - E4328143138ABC890047C5CB - isa - PBXContainerItemProxy - proxyType - 1 - remoteGlobalIDString - E4B27C1410CBEB8E00536013 - remoteInfo - openFrameworks - - E4EEB9AC138B136A00A80321 - - isa - PBXTargetDependency - name - openFrameworks - targetProxy - E4EEB9AB138B136A00A80321 - - E4EEC9E9138DF44700A80321 - - children - - E4EB691F138AFCF100A09F29 - E4328143138ABC890047C5CB - - isa - PBXGroup - name - openFrameworks - sourceTree - <group> - - - rootObject - E4B69B4C0A3A1720003C02F2 - - diff --git a/WebcamFbo/WebcamFbo.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/WebcamFbo/WebcamFbo.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 919434a..0000000 --- a/WebcamFbo/WebcamFbo.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/WebcamFbo/WebcamFbo.xcodeproj/project.xcworkspace/xcuserdata/kevinsiwoff.xcuserdatad/UserInterfaceState.xcuserstate b/WebcamFbo/WebcamFbo.xcodeproj/project.xcworkspace/xcuserdata/kevinsiwoff.xcuserdatad/UserInterfaceState.xcuserstate deleted file mode 100644 index 2b77f91..0000000 Binary files a/WebcamFbo/WebcamFbo.xcodeproj/project.xcworkspace/xcuserdata/kevinsiwoff.xcuserdatad/UserInterfaceState.xcuserstate and /dev/null differ diff --git a/WebcamFbo/WebcamFbo.xcodeproj/xcshareddata/xcschemes/WebcamFbo Debug.xcscheme b/WebcamFbo/WebcamFbo.xcodeproj/xcshareddata/xcschemes/WebcamFbo Debug.xcscheme deleted file mode 100644 index 10f613c..0000000 --- a/WebcamFbo/WebcamFbo.xcodeproj/xcshareddata/xcschemes/WebcamFbo Debug.xcscheme +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/WebcamFbo/WebcamFbo.xcodeproj/xcshareddata/xcschemes/WebcamFbo Release.xcscheme b/WebcamFbo/WebcamFbo.xcodeproj/xcshareddata/xcschemes/WebcamFbo Release.xcscheme deleted file mode 100644 index 1997e82..0000000 --- a/WebcamFbo/WebcamFbo.xcodeproj/xcshareddata/xcschemes/WebcamFbo Release.xcscheme +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/WebcamFbo/addons.make b/WebcamFbo/addons.make deleted file mode 100644 index e69de29..0000000 diff --git a/WebcamFbo/bin/data/.gitkeep b/WebcamFbo/bin/data/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/WebcamFbo/config.make b/WebcamFbo/config.make deleted file mode 100644 index df10f64..0000000 --- a/WebcamFbo/config.make +++ /dev/null @@ -1,142 +0,0 @@ -################################################################################ -# CONFIGURE PROJECT MAKEFILE (optional) -# This file is where we make project specific configurations. -################################################################################ - -################################################################################ -# OF ROOT -# The location of your root openFrameworks installation -# (default) OF_ROOT = ../../.. -################################################################################ -# OF_ROOT = ../../.. - -################################################################################ -# PROJECT ROOT -# The location of the project - a starting place for searching for files -# (default) PROJECT_ROOT = . (this directory) -# -################################################################################ -# PROJECT_ROOT = . - -################################################################################ -# PROJECT SPECIFIC CHECKS -# This is a project defined section to create internal makefile flags to -# conditionally enable or disable the addition of various features within -# this makefile. For instance, if you want to make changes based on whether -# GTK is installed, one might test that here and create a variable to check. -################################################################################ -# None - -################################################################################ -# PROJECT EXTERNAL SOURCE PATHS -# These are fully qualified paths that are not within the PROJECT_ROOT folder. -# Like source folders in the PROJECT_ROOT, these paths are subject to -# exlclusion via the PROJECT_EXLCUSIONS list. -# -# (default) PROJECT_EXTERNAL_SOURCE_PATHS = (blank) -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_EXTERNAL_SOURCE_PATHS = - -################################################################################ -# PROJECT EXCLUSIONS -# These makefiles assume that all folders in your current project directory -# and any listed in the PROJECT_EXTERNAL_SOURCH_PATHS are are valid locations -# to look for source code. The any folders or files that match any of the -# items in the PROJECT_EXCLUSIONS list below will be ignored. -# -# Each item in the PROJECT_EXCLUSIONS list will be treated as a complete -# string unless teh user adds a wildcard (%) operator to match subdirectories. -# GNU make only allows one wildcard for matching. The second wildcard (%) is -# treated literally. -# -# (default) PROJECT_EXCLUSIONS = (blank) -# -# Will automatically exclude the following: -# -# $(PROJECT_ROOT)/bin% -# $(PROJECT_ROOT)/obj% -# $(PROJECT_ROOT)/%.xcodeproj -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_EXCLUSIONS = - -################################################################################ -# PROJECT LINKER FLAGS -# These flags will be sent to the linker when compiling the executable. -# -# (default) PROJECT_LDFLAGS = -Wl,-rpath=./libs -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ - -# Currently, shared libraries that are needed are copied to the -# $(PROJECT_ROOT)/bin/libs directory. The following LDFLAGS tell the linker to -# add a runtime path to search for those shared libraries, since they aren't -# incorporated directly into the final executable application binary. -# TODO: should this be a default setting? -# PROJECT_LDFLAGS=-Wl,-rpath=./libs - -################################################################################ -# PROJECT DEFINES -# Create a space-delimited list of DEFINES. The list will be converted into -# CFLAGS with the "-D" flag later in the makefile. -# -# (default) PROJECT_DEFINES = (blank) -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_DEFINES = - -################################################################################ -# PROJECT CFLAGS -# This is a list of fully qualified CFLAGS required when compiling for this -# project. These CFLAGS will be used IN ADDITION TO the PLATFORM_CFLAGS -# defined in your platform specific core configuration files. These flags are -# presented to the compiler BEFORE the PROJECT_OPTIMIZATION_CFLAGS below. -# -# (default) PROJECT_CFLAGS = (blank) -# -# Note: Before adding PROJECT_CFLAGS, note that the PLATFORM_CFLAGS defined in -# your platform specific configuration file will be applied by default and -# further flags here may not be needed. -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_CFLAGS = - -################################################################################ -# PROJECT OPTIMIZATION CFLAGS -# These are lists of CFLAGS that are target-specific. While any flags could -# be conditionally added, they are usually limited to optimization flags. -# These flags are added BEFORE the PROJECT_CFLAGS. -# -# PROJECT_OPTIMIZATION_CFLAGS_RELEASE flags are only applied to RELEASE targets. -# -# (default) PROJECT_OPTIMIZATION_CFLAGS_RELEASE = (blank) -# -# PROJECT_OPTIMIZATION_CFLAGS_DEBUG flags are only applied to DEBUG targets. -# -# (default) PROJECT_OPTIMIZATION_CFLAGS_DEBUG = (blank) -# -# Note: Before adding PROJECT_OPTIMIZATION_CFLAGS, please note that the -# PLATFORM_OPTIMIZATION_CFLAGS defined in your platform specific configuration -# file will be applied by default and further optimization flags here may not -# be needed. -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_OPTIMIZATION_CFLAGS_RELEASE = -# PROJECT_OPTIMIZATION_CFLAGS_DEBUG = - -################################################################################ -# PROJECT COMPILERS -# Custom compilers can be set for CC and CXX -# (default) PROJECT_CXX = (blank) -# (default) PROJECT_CC = (blank) -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_CXX = -# PROJECT_CC = diff --git a/WebcamFbo/icon.rc b/WebcamFbo/icon.rc deleted file mode 100644 index 7e26eb3..0000000 --- a/WebcamFbo/icon.rc +++ /dev/null @@ -1,8 +0,0 @@ -// Icon Resource Definition -#define MAIN_ICON 102 - -#if defined(_DEBUG) -MAIN_ICON ICON "icon_debug.ico" -#else -MAIN_ICON ICON "icon.ico" -#endif diff --git a/WebcamFbo/openFrameworks-Info.plist b/WebcamFbo/openFrameworks-Info.plist deleted file mode 100644 index 8d64d2b..0000000 --- a/WebcamFbo/openFrameworks-Info.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - cc.openFrameworks.ofapp - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - APPL - CFBundleSignature - ???? - CFBundleVersion - 1.0 - CFBundleIconFile - ${ICON} - - diff --git a/WebcamFbo/src/main.cpp b/WebcamFbo/src/main.cpp deleted file mode 100644 index e57370b..0000000 --- a/WebcamFbo/src/main.cpp +++ /dev/null @@ -1,13 +0,0 @@ -#include "ofMain.h" -#include "ofApp.h" - -//======================================================================== -int main( ){ - ofSetupOpenGL(1024,768,OF_WINDOW); // <-------- setup the GL context - - // this kicks off the running of my app - // can be OF_WINDOW or OF_FULLSCREEN - // pass in width and height too: - ofRunApp(new ofApp()); - -} diff --git a/WebcamFbo/src/ofApp.cpp b/WebcamFbo/src/ofApp.cpp deleted file mode 100644 index d6b4abf..0000000 --- a/WebcamFbo/src/ofApp.cpp +++ /dev/null @@ -1,94 +0,0 @@ -#include "ofApp.h" - -//-------------------------------------------------------------- -void ofApp::setup(){ - mVideoGrabber.setup(320, 240); - mVideoGrabber.setVerbose(true); - mFbo.allocate(mVideoGrabber.getWidth(), mVideoGrabber.getHeight(), GL_RGBA); - - //now we add lines to our path - mPath.lineTo(mVideoGrabber.getWidth()/4, mVideoGrabber.getHeight()); - mPath.lineTo(mVideoGrabber.getWidth()/2, mVideoGrabber.getHeight()/ 2); - mPath.lineTo(mVideoGrabber.getWidth(), 0); - mPath.close(); - - mFbo.begin(); - ofClear(0,0,0,0); - ofSetColor(255,255,255,255); - mPath.draw(); - mFbo.end(); - -} - -//-------------------------------------------------------------- -void ofApp::update(){ - mVideoGrabber.update(); - // we check whether the videoGrabber has a new frame - if(mVideoGrabber.isFrameNew()){ - //if so we get the videoGrabber texture, and set an alpha mask on it from our fbo - mVideoGrabber. - getTexture(). - setAlphaMask(mFbo.getTexture()); - } -} - -//-------------------------------------------------------------- -void ofApp::draw(){ - //draw the webcam - mVideoGrabber.draw(ofGetMouseX(), ofGetMouseY()); -} - -//-------------------------------------------------------------- -void ofApp::keyPressed(int key){ - -} - -//-------------------------------------------------------------- -void ofApp::keyReleased(int key){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseMoved(int x, int y ){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseDragged(int x, int y, int button){ - -} - -//-------------------------------------------------------------- -void ofApp::mousePressed(int x, int y, int button){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseReleased(int x, int y, int button){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseEntered(int x, int y){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseExited(int x, int y){ - -} - -//-------------------------------------------------------------- -void ofApp::windowResized(int w, int h){ - -} - -//-------------------------------------------------------------- -void ofApp::gotMessage(ofMessage msg){ - -} - -//-------------------------------------------------------------- -void ofApp::dragEvent(ofDragInfo dragInfo){ - -} diff --git a/WebcamFbo/src/ofApp.h b/WebcamFbo/src/ofApp.h deleted file mode 100644 index 5caf58a..0000000 --- a/WebcamFbo/src/ofApp.h +++ /dev/null @@ -1,27 +0,0 @@ -#pragma once - -#include "ofMain.h" - -class ofApp : public ofBaseApp{ - - public: - void setup(); - void update(); - void draw(); - - void keyPressed(int key); - void keyReleased(int key); - void mouseMoved(int x, int y ); - void mouseDragged(int x, int y, int button); - void mousePressed(int x, int y, int button); - void mouseReleased(int x, int y, int button); - void mouseEntered(int x, int y); - void mouseExited(int x, int y); - void windowResized(int w, int h); - void dragEvent(ofDragInfo dragInfo); - void gotMessage(ofMessage msg); - - ofVideoGrabber mVideoGrabber; - ofFbo mFbo; - ofPath mPath; -}; diff --git a/WebcamGettingStarted/Makefile b/WebcamGettingStarted/Makefile deleted file mode 100644 index 8d8e4c0..0000000 --- a/WebcamGettingStarted/Makefile +++ /dev/null @@ -1,13 +0,0 @@ -# Attempt to load a config.make file. -# If none is found, project defaults in config.project.make will be used. -ifneq ($(wildcard config.make),) - include config.make -endif - -# make sure the the OF_ROOT location is defined -ifndef OF_ROOT - OF_ROOT=$(realpath ../../..) -endif - -# call the project makefile! -include $(OF_ROOT)/libs/openFrameworksCompiled/project/makefileCommon/compile.project.mk diff --git a/WebcamGettingStarted/Project.xcconfig b/WebcamGettingStarted/Project.xcconfig deleted file mode 100644 index e570b15..0000000 --- a/WebcamGettingStarted/Project.xcconfig +++ /dev/null @@ -1,17 +0,0 @@ -//THE PATH TO THE ROOT OF OUR OF PATH RELATIVE TO THIS PROJECT. -//THIS NEEDS TO BE DEFINED BEFORE CoreOF.xcconfig IS INCLUDED -OF_PATH = ../../.. - -//THIS HAS ALL THE HEADER AND LIBS FOR OF CORE -#include "../../../libs/openFrameworksCompiled/project/osx/CoreOF.xcconfig" - -//ICONS - NEW IN 0072 -ICON_NAME_DEBUG = icon-debug.icns -ICON_NAME_RELEASE = icon.icns -ICON_FILE_PATH = $(OF_PATH)/libs/openFrameworksCompiled/project/osx/ - -//IF YOU WANT AN APP TO HAVE A CUSTOM ICON - PUT THEM IN YOUR DATA FOLDER AND CHANGE ICON_FILE_PATH to: -//ICON_FILE_PATH = bin/data/ - -OTHER_LDFLAGS = $(OF_CORE_LIBS) $(OF_CORE_FRAMEWORKS) -HEADER_SEARCH_PATHS = $(OF_CORE_HEADERS) diff --git a/WebcamGettingStarted/WebcamGettingStarted.sln b/WebcamGettingStarted/WebcamGettingStarted.sln deleted file mode 100644 index 8fdfd15..0000000 --- a/WebcamGettingStarted/WebcamGettingStarted.sln +++ /dev/null @@ -1,35 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 14 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "WebcamGettingStarted", "WebcamGettingStarted.vcxproj", "{7FD42DF7-442E-479A-BA76-D0022F99702A}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "openframeworksLib", "..\..\..\libs\openFrameworksCompiled\project\vs\openframeworksLib.vcxproj", "{5837595D-ACA9-485C-8E76-729040CE4B0B}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Debug|Win32.ActiveCfg = Debug|Win32 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Debug|Win32.Build.0 = Debug|Win32 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Debug|x64.ActiveCfg = Debug|x64 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Debug|x64.Build.0 = Debug|x64 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|Win32.ActiveCfg = Release|Win32 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|Win32.Build.0 = Release|Win32 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|x64.ActiveCfg = Release|x64 - {7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|x64.Build.0 = Release|x64 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Debug|Win32.ActiveCfg = Debug|Win32 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Debug|Win32.Build.0 = Debug|Win32 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Debug|x64.ActiveCfg = Debug|x64 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Debug|x64.Build.0 = Debug|x64 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|Win32.ActiveCfg = Release|Win32 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|Win32.Build.0 = Release|Win32 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|x64.ActiveCfg = Release|x64 - {5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/WebcamGettingStarted/WebcamGettingStarted.vcxproj b/WebcamGettingStarted/WebcamGettingStarted.vcxproj deleted file mode 100644 index 244d2a2..0000000 --- a/WebcamGettingStarted/WebcamGettingStarted.vcxproj +++ /dev/null @@ -1,198 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {7FD42DF7-442E-479A-BA76-D0022F99702A} - Win32Proj - WebcamGettingStarted - - - - Application - Unicode - v140 - - - Application - Unicode - v140 - - - Application - Unicode - true - v140 - - - Application - Unicode - true - v140 - - - - - - - - - - - - - - - - - - - - - bin\ - obj\$(Configuration)\ - $(ProjectName)_debug - true - true - - - bin\ - obj\$(Configuration)\ - $(ProjectName)_debug - true - true - - - bin\ - obj\$(Configuration)\ - false - - - bin\ - obj\$(Configuration)\ - false - - - - Disabled - EnableFastChecks - %(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - %(AdditionalIncludeDirectories);src - CompileAsCpp - - - true - Console - false - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - - - - - - Disabled - EnableFastChecks - %(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - %(AdditionalIncludeDirectories);src - CompileAsCpp - true - - - true - Console - false - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - - - - - - false - %(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - %(AdditionalIncludeDirectories);src - CompileAsCpp - true - - - false - false - Console - true - true - false - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - - - - - - false - %(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - %(AdditionalIncludeDirectories);src - CompileAsCpp - - - false - false - Console - true - true - false - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - - - - - - - - - - - - - {5837595d-aca9-485c-8e76-729040ce4b0b} - - - - - /D_DEBUG %(AdditionalOptions) - /D_DEBUG %(AdditionalOptions) - $(OF_ROOT)\libs\openFrameworksCompiled\project\vs - - - - - - - - - diff --git a/WebcamGettingStarted/WebcamGettingStarted.vcxproj.filters b/WebcamGettingStarted/WebcamGettingStarted.vcxproj.filters deleted file mode 100644 index c532538..0000000 --- a/WebcamGettingStarted/WebcamGettingStarted.vcxproj.filters +++ /dev/null @@ -1,24 +0,0 @@ - - - - - src - - - src - - - - - {d8376475-7454-4a24-b08a-aac121d3ad6f} - - - - - src - - - - - - diff --git a/WebcamGettingStarted/WebcamGettingStarted.vcxproj.user b/WebcamGettingStarted/WebcamGettingStarted.vcxproj.user deleted file mode 100644 index 988b987..0000000 --- a/WebcamGettingStarted/WebcamGettingStarted.vcxproj.user +++ /dev/null @@ -1,19 +0,0 @@ - - - - $(ProjectDir)/bin - WindowsLocalDebugger - - - $(ProjectDir)/bin - WindowsLocalDebugger - - - $(ProjectDir)/bin - WindowsLocalDebugger - - - $(ProjectDir)/bin - WindowsLocalDebugger - - \ No newline at end of file diff --git a/WebcamGettingStarted/WebcamGettingStarted.xcodeproj/project.pbxproj b/WebcamGettingStarted/WebcamGettingStarted.xcodeproj/project.pbxproj deleted file mode 100644 index cfebc67..0000000 --- a/WebcamGettingStarted/WebcamGettingStarted.xcodeproj/project.pbxproj +++ /dev/null @@ -1,641 +0,0 @@ - - - - archiveVersion - 1 - classes - - objectVersion - 46 - objects - - 6948EE371B920CB800B5AC1A - - children - - isa - PBXGroup - name - local_addons - sourceTree - <group> - - BB4B014C10F69532006C3DED - - children - - isa - PBXGroup - name - addons - sourceTree - <group> - - E4328143138ABC890047C5CB - - isa - PBXFileReference - lastKnownFileType - wrapper.pb-project - name - openFrameworksLib.xcodeproj - path - ../../../libs/openFrameworksCompiled/project/osx/openFrameworksLib.xcodeproj - sourceTree - SOURCE_ROOT - - E4328144138ABC890047C5CB - - children - - E4328148138ABC890047C5CB - - isa - PBXGroup - name - Products - sourceTree - <group> - - E4328147138ABC890047C5CB - - containerPortal - E4328143138ABC890047C5CB - isa - PBXContainerItemProxy - proxyType - 2 - remoteGlobalIDString - E4B27C1510CBEB8E00536013 - remoteInfo - openFrameworks - - E4328148138ABC890047C5CB - - fileType - archive.ar - isa - PBXReferenceProxy - path - openFrameworksDebug.a - remoteRef - E4328147138ABC890047C5CB - sourceTree - BUILT_PRODUCTS_DIR - - E4328149138ABC9F0047C5CB - - fileRef - E4328148138ABC890047C5CB - isa - PBXBuildFile - - E4B69B4A0A3A1720003C02F2 - - children - - E4B6FCAD0C3E899E008CF71C - E4EB6923138AFD0F00A09F29 - E4B69E1C0A3A1BDC003C02F2 - E4EEC9E9138DF44700A80321 - BB4B014C10F69532006C3DED - 6948EE371B920CB800B5AC1A - E4B69B5B0A3A1756003C02F2 - - isa - PBXGroup - sourceTree - <group> - - E4B69B4C0A3A1720003C02F2 - - attributes - - LastUpgradeCheck - 0600 - - buildConfigurationList - E4B69B4D0A3A1720003C02F2 - compatibilityVersion - Xcode 3.2 - developmentRegion - English - hasScannedForEncodings - 0 - isa - PBXProject - knownRegions - - English - Japanese - French - German - - mainGroup - E4B69B4A0A3A1720003C02F2 - productRefGroup - E4B69B4A0A3A1720003C02F2 - projectDirPath - - projectReferences - - - ProductGroup - E4328144138ABC890047C5CB - ProjectRef - E4328143138ABC890047C5CB - - - projectRoot - - targets - - E4B69B5A0A3A1756003C02F2 - - - E4B69B4D0A3A1720003C02F2 - - buildConfigurations - - E4B69B4E0A3A1720003C02F2 - E4B69B4F0A3A1720003C02F2 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - E4B69B4E0A3A1720003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - CONFIGURATION_BUILD_DIR - $(SRCROOT)/bin/ - COPY_PHASE_STRIP - NO - DEAD_CODE_STRIPPING - YES - GCC_AUTO_VECTORIZATION - YES - GCC_ENABLE_SSE3_EXTENSIONS - YES - GCC_ENABLE_SUPPLEMENTAL_SSE3_INSTRUCTIONS - YES - GCC_INLINES_ARE_PRIVATE_EXTERN - NO - GCC_OPTIMIZATION_LEVEL - 0 - GCC_SYMBOLS_PRIVATE_EXTERN - NO - GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS - YES - GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO - NO - GCC_WARN_ALLOW_INCOMPLETE_PROTOCOL - NO - GCC_WARN_UNINITIALIZED_AUTOS - NO - GCC_WARN_UNUSED_VALUE - NO - GCC_WARN_UNUSED_VARIABLE - NO - MACOSX_DEPLOYMENT_TARGET - 10.8 - ONLY_ACTIVE_ARCH - YES - OTHER_CPLUSPLUSFLAGS - - -D__MACOSX_CORE__ - -mtune=native - - SDKROOT - macosx - - isa - XCBuildConfiguration - name - Debug - - E4B69B4F0A3A1720003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - CONFIGURATION_BUILD_DIR - $(SRCROOT)/bin/ - COPY_PHASE_STRIP - YES - DEAD_CODE_STRIPPING - YES - GCC_AUTO_VECTORIZATION - YES - GCC_ENABLE_SSE3_EXTENSIONS - YES - GCC_ENABLE_SUPPLEMENTAL_SSE3_INSTRUCTIONS - YES - GCC_INLINES_ARE_PRIVATE_EXTERN - NO - GCC_OPTIMIZATION_LEVEL - 3 - GCC_SYMBOLS_PRIVATE_EXTERN - NO - GCC_UNROLL_LOOPS - YES - GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS - YES - GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO - NO - GCC_WARN_ALLOW_INCOMPLETE_PROTOCOL - NO - GCC_WARN_UNINITIALIZED_AUTOS - NO - GCC_WARN_UNUSED_VALUE - NO - GCC_WARN_UNUSED_VARIABLE - NO - MACOSX_DEPLOYMENT_TARGET - 10.8 - OTHER_CPLUSPLUSFLAGS - - -D__MACOSX_CORE__ - -mtune=native - - SDKROOT - macosx - - isa - XCBuildConfiguration - name - Release - - E4B69B580A3A1756003C02F2 - - buildActionMask - 2147483647 - files - - E4B69E200A3A1BDC003C02F2 - E4B69E210A3A1BDC003C02F2 - - isa - PBXSourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - E4B69B590A3A1756003C02F2 - - buildActionMask - 2147483647 - files - - E4328149138ABC9F0047C5CB - - isa - PBXFrameworksBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - E4B69B5A0A3A1756003C02F2 - - buildConfigurationList - E4B69B5F0A3A1757003C02F2 - buildPhases - - E4B69B580A3A1756003C02F2 - E4B69B590A3A1756003C02F2 - E4B6FFFD0C3F9AB9008CF71C - E4C2427710CC5ABF004149E2 - - buildRules - - dependencies - - E4EEB9AC138B136A00A80321 - - isa - PBXNativeTarget - name - WebcamGettingStarted - productName - myOFApp - productReference - E4B69B5B0A3A1756003C02F2 - productType - com.apple.product-type.application - - E4B69B5B0A3A1756003C02F2 - - explicitFileType - wrapper.application - includeInIndex - 0 - isa - PBXFileReference - path - WebcamGettingStartedDebug.app - sourceTree - BUILT_PRODUCTS_DIR - - E4B69B5F0A3A1757003C02F2 - - buildConfigurations - - E4B69B600A3A1757003C02F2 - E4B69B610A3A1757003C02F2 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - E4B69B600A3A1757003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - COMBINE_HIDPI_IMAGES - YES - COPY_PHASE_STRIP - NO - FRAMEWORK_SEARCH_PATHS - - $(inherited) - $(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1) - - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 - "$(SRCROOT)/../../../libs/glut/lib/osx" - GCC_DYNAMIC_NO_PIC - NO - GCC_GENERATE_DEBUGGING_SYMBOLS - YES - GCC_MODEL_TUNING - NONE - ICON - $(ICON_NAME_DEBUG) - ICON_FILE - $(ICON_FILE_PATH)$(ICON) - INFOPLIST_FILE - openFrameworks-Info.plist - INSTALL_PATH - /Applications - LIBRARY_SEARCH_PATHS - $(inherited) - PRODUCT_NAME - $(TARGET_NAME)Debug - WRAPPER_EXTENSION - app - - isa - XCBuildConfiguration - name - Debug - - E4B69B610A3A1757003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - COMBINE_HIDPI_IMAGES - YES - COPY_PHASE_STRIP - YES - FRAMEWORK_SEARCH_PATHS - - $(inherited) - $(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1) - - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 - "$(SRCROOT)/../../../libs/glut/lib/osx" - GCC_GENERATE_DEBUGGING_SYMBOLS - YES - GCC_MODEL_TUNING - NONE - ICON - $(ICON_NAME_RELEASE) - ICON_FILE - $(ICON_FILE_PATH)$(ICON) - INFOPLIST_FILE - openFrameworks-Info.plist - INSTALL_PATH - /Applications - LIBRARY_SEARCH_PATHS - $(inherited) - PRODUCT_NAME - $(TARGET_NAME) - WRAPPER_EXTENSION - app - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - - isa - XCBuildConfiguration - name - Release - - E4B69E1C0A3A1BDC003C02F2 - - children - - E4B69E1D0A3A1BDC003C02F2 - E4B69E1E0A3A1BDC003C02F2 - E4B69E1F0A3A1BDC003C02F2 - - isa - PBXGroup - path - src - sourceTree - SOURCE_ROOT - - E4B69E1D0A3A1BDC003C02F2 - - fileEncoding - 30 - isa - PBXFileReference - lastKnownFileType - sourcecode.cpp.cpp - name - main.cpp - path - src/main.cpp - sourceTree - SOURCE_ROOT - - E4B69E1E0A3A1BDC003C02F2 - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofApp.cpp - path - src/ofApp.cpp - sourceTree - SOURCE_ROOT - - E4B69E1F0A3A1BDC003C02F2 - - fileEncoding - 30 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - name - ofApp.h - path - src/ofApp.h - sourceTree - SOURCE_ROOT - - E4B69E200A3A1BDC003C02F2 - - fileRef - E4B69E1D0A3A1BDC003C02F2 - isa - PBXBuildFile - - E4B69E210A3A1BDC003C02F2 - - fileRef - E4B69E1E0A3A1BDC003C02F2 - isa - PBXBuildFile - - E4B6FCAD0C3E899E008CF71C - - fileEncoding - 30 - isa - PBXFileReference - lastKnownFileType - text.plist.xml - path - openFrameworks-Info.plist - sourceTree - <group> - - E4B6FFFD0C3F9AB9008CF71C - - buildActionMask - 2147483647 - files - - inputPaths - - isa - PBXShellScriptBuildPhase - outputPaths - - runOnlyForDeploymentPostprocessing - 0 - shellPath - /bin/sh - shellScript - mkdir -p "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Resources/" -# Copy default icon file into App/Resources -rsync -aved "$ICON_FILE" "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Resources/" -# Copy libfmod and change install directory for fmod to run -rsync -aved ../../../libs/fmodex/lib/osx/libfmodex.dylib "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Frameworks/"; -install_name_tool -change @executable_path/libfmodex.dylib @executable_path/../Frameworks/libfmodex.dylib "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/MacOS/$PRODUCT_NAME"; -# Copy GLUT framework (must remove for AppStore submissions) -rsync -aved ../../../libs/glut/lib/osx/GLUT.framework "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Frameworks/" - - - E4C2427710CC5ABF004149E2 - - buildActionMask - 2147483647 - dstPath - - dstSubfolderSpec - 10 - files - - isa - PBXCopyFilesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - E4EB691F138AFCF100A09F29 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - name - CoreOF.xcconfig - path - ../../../libs/openFrameworksCompiled/project/osx/CoreOF.xcconfig - sourceTree - SOURCE_ROOT - - E4EB6923138AFD0F00A09F29 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - path - Project.xcconfig - sourceTree - <group> - - E4EEB9AB138B136A00A80321 - - containerPortal - E4328143138ABC890047C5CB - isa - PBXContainerItemProxy - proxyType - 1 - remoteGlobalIDString - E4B27C1410CBEB8E00536013 - remoteInfo - openFrameworks - - E4EEB9AC138B136A00A80321 - - isa - PBXTargetDependency - name - openFrameworks - targetProxy - E4EEB9AB138B136A00A80321 - - E4EEC9E9138DF44700A80321 - - children - - E4EB691F138AFCF100A09F29 - E4328143138ABC890047C5CB - - isa - PBXGroup - name - openFrameworks - sourceTree - <group> - - - rootObject - E4B69B4C0A3A1720003C02F2 - - diff --git a/WebcamGettingStarted/WebcamGettingStarted.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/WebcamGettingStarted/WebcamGettingStarted.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 919434a..0000000 --- a/WebcamGettingStarted/WebcamGettingStarted.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/WebcamGettingStarted/WebcamGettingStarted.xcodeproj/project.xcworkspace/xcuserdata/kevinsiwoff.xcuserdatad/UserInterfaceState.xcuserstate b/WebcamGettingStarted/WebcamGettingStarted.xcodeproj/project.xcworkspace/xcuserdata/kevinsiwoff.xcuserdatad/UserInterfaceState.xcuserstate deleted file mode 100644 index ce8f3d2..0000000 Binary files a/WebcamGettingStarted/WebcamGettingStarted.xcodeproj/project.xcworkspace/xcuserdata/kevinsiwoff.xcuserdatad/UserInterfaceState.xcuserstate and /dev/null differ diff --git a/WebcamGettingStarted/WebcamGettingStarted.xcodeproj/xcshareddata/xcschemes/WebcamGettingStarted Debug.xcscheme b/WebcamGettingStarted/WebcamGettingStarted.xcodeproj/xcshareddata/xcschemes/WebcamGettingStarted Debug.xcscheme deleted file mode 100644 index ffe37e0..0000000 --- a/WebcamGettingStarted/WebcamGettingStarted.xcodeproj/xcshareddata/xcschemes/WebcamGettingStarted Debug.xcscheme +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/WebcamGettingStarted/WebcamGettingStarted.xcodeproj/xcshareddata/xcschemes/WebcamGettingStarted Release.xcscheme b/WebcamGettingStarted/WebcamGettingStarted.xcodeproj/xcshareddata/xcschemes/WebcamGettingStarted Release.xcscheme deleted file mode 100644 index af8b775..0000000 --- a/WebcamGettingStarted/WebcamGettingStarted.xcodeproj/xcshareddata/xcschemes/WebcamGettingStarted Release.xcscheme +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/WebcamGettingStarted/addons.make b/WebcamGettingStarted/addons.make deleted file mode 100644 index e69de29..0000000 diff --git a/WebcamGettingStarted/bin/data/.gitkeep b/WebcamGettingStarted/bin/data/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/WebcamGettingStarted/config.make b/WebcamGettingStarted/config.make deleted file mode 100644 index df10f64..0000000 --- a/WebcamGettingStarted/config.make +++ /dev/null @@ -1,142 +0,0 @@ -################################################################################ -# CONFIGURE PROJECT MAKEFILE (optional) -# This file is where we make project specific configurations. -################################################################################ - -################################################################################ -# OF ROOT -# The location of your root openFrameworks installation -# (default) OF_ROOT = ../../.. -################################################################################ -# OF_ROOT = ../../.. - -################################################################################ -# PROJECT ROOT -# The location of the project - a starting place for searching for files -# (default) PROJECT_ROOT = . (this directory) -# -################################################################################ -# PROJECT_ROOT = . - -################################################################################ -# PROJECT SPECIFIC CHECKS -# This is a project defined section to create internal makefile flags to -# conditionally enable or disable the addition of various features within -# this makefile. For instance, if you want to make changes based on whether -# GTK is installed, one might test that here and create a variable to check. -################################################################################ -# None - -################################################################################ -# PROJECT EXTERNAL SOURCE PATHS -# These are fully qualified paths that are not within the PROJECT_ROOT folder. -# Like source folders in the PROJECT_ROOT, these paths are subject to -# exlclusion via the PROJECT_EXLCUSIONS list. -# -# (default) PROJECT_EXTERNAL_SOURCE_PATHS = (blank) -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_EXTERNAL_SOURCE_PATHS = - -################################################################################ -# PROJECT EXCLUSIONS -# These makefiles assume that all folders in your current project directory -# and any listed in the PROJECT_EXTERNAL_SOURCH_PATHS are are valid locations -# to look for source code. The any folders or files that match any of the -# items in the PROJECT_EXCLUSIONS list below will be ignored. -# -# Each item in the PROJECT_EXCLUSIONS list will be treated as a complete -# string unless teh user adds a wildcard (%) operator to match subdirectories. -# GNU make only allows one wildcard for matching. The second wildcard (%) is -# treated literally. -# -# (default) PROJECT_EXCLUSIONS = (blank) -# -# Will automatically exclude the following: -# -# $(PROJECT_ROOT)/bin% -# $(PROJECT_ROOT)/obj% -# $(PROJECT_ROOT)/%.xcodeproj -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_EXCLUSIONS = - -################################################################################ -# PROJECT LINKER FLAGS -# These flags will be sent to the linker when compiling the executable. -# -# (default) PROJECT_LDFLAGS = -Wl,-rpath=./libs -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ - -# Currently, shared libraries that are needed are copied to the -# $(PROJECT_ROOT)/bin/libs directory. The following LDFLAGS tell the linker to -# add a runtime path to search for those shared libraries, since they aren't -# incorporated directly into the final executable application binary. -# TODO: should this be a default setting? -# PROJECT_LDFLAGS=-Wl,-rpath=./libs - -################################################################################ -# PROJECT DEFINES -# Create a space-delimited list of DEFINES. The list will be converted into -# CFLAGS with the "-D" flag later in the makefile. -# -# (default) PROJECT_DEFINES = (blank) -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_DEFINES = - -################################################################################ -# PROJECT CFLAGS -# This is a list of fully qualified CFLAGS required when compiling for this -# project. These CFLAGS will be used IN ADDITION TO the PLATFORM_CFLAGS -# defined in your platform specific core configuration files. These flags are -# presented to the compiler BEFORE the PROJECT_OPTIMIZATION_CFLAGS below. -# -# (default) PROJECT_CFLAGS = (blank) -# -# Note: Before adding PROJECT_CFLAGS, note that the PLATFORM_CFLAGS defined in -# your platform specific configuration file will be applied by default and -# further flags here may not be needed. -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_CFLAGS = - -################################################################################ -# PROJECT OPTIMIZATION CFLAGS -# These are lists of CFLAGS that are target-specific. While any flags could -# be conditionally added, they are usually limited to optimization flags. -# These flags are added BEFORE the PROJECT_CFLAGS. -# -# PROJECT_OPTIMIZATION_CFLAGS_RELEASE flags are only applied to RELEASE targets. -# -# (default) PROJECT_OPTIMIZATION_CFLAGS_RELEASE = (blank) -# -# PROJECT_OPTIMIZATION_CFLAGS_DEBUG flags are only applied to DEBUG targets. -# -# (default) PROJECT_OPTIMIZATION_CFLAGS_DEBUG = (blank) -# -# Note: Before adding PROJECT_OPTIMIZATION_CFLAGS, please note that the -# PLATFORM_OPTIMIZATION_CFLAGS defined in your platform specific configuration -# file will be applied by default and further optimization flags here may not -# be needed. -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_OPTIMIZATION_CFLAGS_RELEASE = -# PROJECT_OPTIMIZATION_CFLAGS_DEBUG = - -################################################################################ -# PROJECT COMPILERS -# Custom compilers can be set for CC and CXX -# (default) PROJECT_CXX = (blank) -# (default) PROJECT_CC = (blank) -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_CXX = -# PROJECT_CC = diff --git a/WebcamGettingStarted/icon.rc b/WebcamGettingStarted/icon.rc deleted file mode 100644 index 7e26eb3..0000000 --- a/WebcamGettingStarted/icon.rc +++ /dev/null @@ -1,8 +0,0 @@ -// Icon Resource Definition -#define MAIN_ICON 102 - -#if defined(_DEBUG) -MAIN_ICON ICON "icon_debug.ico" -#else -MAIN_ICON ICON "icon.ico" -#endif diff --git a/WebcamGettingStarted/openFrameworks-Info.plist b/WebcamGettingStarted/openFrameworks-Info.plist deleted file mode 100644 index 8d64d2b..0000000 --- a/WebcamGettingStarted/openFrameworks-Info.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - cc.openFrameworks.ofapp - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - APPL - CFBundleSignature - ???? - CFBundleVersion - 1.0 - CFBundleIconFile - ${ICON} - - diff --git a/WebcamGettingStarted/src/main.cpp b/WebcamGettingStarted/src/main.cpp deleted file mode 100644 index e57370b..0000000 --- a/WebcamGettingStarted/src/main.cpp +++ /dev/null @@ -1,13 +0,0 @@ -#include "ofMain.h" -#include "ofApp.h" - -//======================================================================== -int main( ){ - ofSetupOpenGL(1024,768,OF_WINDOW); // <-------- setup the GL context - - // this kicks off the running of my app - // can be OF_WINDOW or OF_FULLSCREEN - // pass in width and height too: - ofRunApp(new ofApp()); - -} diff --git a/WebcamGettingStarted/src/ofApp.cpp b/WebcamGettingStarted/src/ofApp.cpp deleted file mode 100644 index 3a14029..0000000 --- a/WebcamGettingStarted/src/ofApp.cpp +++ /dev/null @@ -1,76 +0,0 @@ -#include "ofApp.h" - -//-------------------------------------------------------------- -void ofApp::setup(){ - mVidGrabber.setVerbose(true); - mVidGrabber.setup(320,240); -} - -//-------------------------------------------------------------- -void ofApp::update(){ - mVidGrabber.update(); - if(mVidGrabber.isFrameNew()){ - ofLogNotice() << "frame new" << endl; - } -} - -//-------------------------------------------------------------- -void ofApp::draw(){ - ofSetHexColor(0xffffff); - mVidGrabber.draw(ofGetWidth()/2 - mVidGrabber.getWidth()/2, ofGetHeight()/2 - mVidGrabber.getHeight()/2); -} - -//-------------------------------------------------------------- -void ofApp::keyPressed(int key){ - -} - -//-------------------------------------------------------------- -void ofApp::keyReleased(int key){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseMoved(int x, int y ){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseDragged(int x, int y, int button){ - -} - -//-------------------------------------------------------------- -void ofApp::mousePressed(int x, int y, int button){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseReleased(int x, int y, int button){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseEntered(int x, int y){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseExited(int x, int y){ - -} - -//-------------------------------------------------------------- -void ofApp::windowResized(int w, int h){ - -} - -//-------------------------------------------------------------- -void ofApp::gotMessage(ofMessage msg){ - -} - -//-------------------------------------------------------------- -void ofApp::dragEvent(ofDragInfo dragInfo){ - -} diff --git a/WebcamGettingStarted/src/ofApp.h b/WebcamGettingStarted/src/ofApp.h deleted file mode 100644 index 026010e..0000000 --- a/WebcamGettingStarted/src/ofApp.h +++ /dev/null @@ -1,25 +0,0 @@ -#pragma once - -#include "ofMain.h" - -class ofApp : public ofBaseApp{ - - public: - void setup(); - void update(); - void draw(); - - void keyPressed(int key); - void keyReleased(int key); - void mouseMoved(int x, int y ); - void mouseDragged(int x, int y, int button); - void mousePressed(int x, int y, int button); - void mouseReleased(int x, int y, int button); - void mouseEntered(int x, int y); - void mouseExited(int x, int y); - void windowResized(int w, int h); - void dragEvent(ofDragInfo dragInfo); - void gotMessage(ofMessage msg); - - ofVideoGrabber mVidGrabber; -}; diff --git a/opencvExampleDrawing/Makefile b/opencvExampleDrawing/Makefile deleted file mode 100644 index 8d8e4c0..0000000 --- a/opencvExampleDrawing/Makefile +++ /dev/null @@ -1,13 +0,0 @@ -# Attempt to load a config.make file. -# If none is found, project defaults in config.project.make will be used. -ifneq ($(wildcard config.make),) - include config.make -endif - -# make sure the the OF_ROOT location is defined -ifndef OF_ROOT - OF_ROOT=$(realpath ../../..) -endif - -# call the project makefile! -include $(OF_ROOT)/libs/openFrameworksCompiled/project/makefileCommon/compile.project.mk diff --git a/opencvExampleDrawing/Project.xcconfig b/opencvExampleDrawing/Project.xcconfig deleted file mode 100644 index e570b15..0000000 --- a/opencvExampleDrawing/Project.xcconfig +++ /dev/null @@ -1,17 +0,0 @@ -//THE PATH TO THE ROOT OF OUR OF PATH RELATIVE TO THIS PROJECT. -//THIS NEEDS TO BE DEFINED BEFORE CoreOF.xcconfig IS INCLUDED -OF_PATH = ../../.. - -//THIS HAS ALL THE HEADER AND LIBS FOR OF CORE -#include "../../../libs/openFrameworksCompiled/project/osx/CoreOF.xcconfig" - -//ICONS - NEW IN 0072 -ICON_NAME_DEBUG = icon-debug.icns -ICON_NAME_RELEASE = icon.icns -ICON_FILE_PATH = $(OF_PATH)/libs/openFrameworksCompiled/project/osx/ - -//IF YOU WANT AN APP TO HAVE A CUSTOM ICON - PUT THEM IN YOUR DATA FOLDER AND CHANGE ICON_FILE_PATH to: -//ICON_FILE_PATH = bin/data/ - -OTHER_LDFLAGS = $(OF_CORE_LIBS) $(OF_CORE_FRAMEWORKS) -HEADER_SEARCH_PATHS = $(OF_CORE_HEADERS) diff --git a/opencvExampleDrawing/addons.make b/opencvExampleDrawing/addons.make deleted file mode 100644 index 886857d..0000000 --- a/opencvExampleDrawing/addons.make +++ /dev/null @@ -1 +0,0 @@ -ofxOpenCv diff --git a/opencvExampleDrawing/bin/data/.gitkeep b/opencvExampleDrawing/bin/data/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/opencvExampleDrawing/bin/data/fingers.mov b/opencvExampleDrawing/bin/data/fingers.mov deleted file mode 100644 index ceafe2b..0000000 --- a/opencvExampleDrawing/bin/data/fingers.mov +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4a0efb056d5671f3c8fe7fbee0236b0b5af3cc5d534016ce0ecf6df844f23942 -size 1879935 diff --git a/opencvExampleDrawing/config.make b/opencvExampleDrawing/config.make deleted file mode 100644 index df10f64..0000000 --- a/opencvExampleDrawing/config.make +++ /dev/null @@ -1,142 +0,0 @@ -################################################################################ -# CONFIGURE PROJECT MAKEFILE (optional) -# This file is where we make project specific configurations. -################################################################################ - -################################################################################ -# OF ROOT -# The location of your root openFrameworks installation -# (default) OF_ROOT = ../../.. -################################################################################ -# OF_ROOT = ../../.. - -################################################################################ -# PROJECT ROOT -# The location of the project - a starting place for searching for files -# (default) PROJECT_ROOT = . (this directory) -# -################################################################################ -# PROJECT_ROOT = . - -################################################################################ -# PROJECT SPECIFIC CHECKS -# This is a project defined section to create internal makefile flags to -# conditionally enable or disable the addition of various features within -# this makefile. For instance, if you want to make changes based on whether -# GTK is installed, one might test that here and create a variable to check. -################################################################################ -# None - -################################################################################ -# PROJECT EXTERNAL SOURCE PATHS -# These are fully qualified paths that are not within the PROJECT_ROOT folder. -# Like source folders in the PROJECT_ROOT, these paths are subject to -# exlclusion via the PROJECT_EXLCUSIONS list. -# -# (default) PROJECT_EXTERNAL_SOURCE_PATHS = (blank) -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_EXTERNAL_SOURCE_PATHS = - -################################################################################ -# PROJECT EXCLUSIONS -# These makefiles assume that all folders in your current project directory -# and any listed in the PROJECT_EXTERNAL_SOURCH_PATHS are are valid locations -# to look for source code. The any folders or files that match any of the -# items in the PROJECT_EXCLUSIONS list below will be ignored. -# -# Each item in the PROJECT_EXCLUSIONS list will be treated as a complete -# string unless teh user adds a wildcard (%) operator to match subdirectories. -# GNU make only allows one wildcard for matching. The second wildcard (%) is -# treated literally. -# -# (default) PROJECT_EXCLUSIONS = (blank) -# -# Will automatically exclude the following: -# -# $(PROJECT_ROOT)/bin% -# $(PROJECT_ROOT)/obj% -# $(PROJECT_ROOT)/%.xcodeproj -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_EXCLUSIONS = - -################################################################################ -# PROJECT LINKER FLAGS -# These flags will be sent to the linker when compiling the executable. -# -# (default) PROJECT_LDFLAGS = -Wl,-rpath=./libs -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ - -# Currently, shared libraries that are needed are copied to the -# $(PROJECT_ROOT)/bin/libs directory. The following LDFLAGS tell the linker to -# add a runtime path to search for those shared libraries, since they aren't -# incorporated directly into the final executable application binary. -# TODO: should this be a default setting? -# PROJECT_LDFLAGS=-Wl,-rpath=./libs - -################################################################################ -# PROJECT DEFINES -# Create a space-delimited list of DEFINES. The list will be converted into -# CFLAGS with the "-D" flag later in the makefile. -# -# (default) PROJECT_DEFINES = (blank) -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_DEFINES = - -################################################################################ -# PROJECT CFLAGS -# This is a list of fully qualified CFLAGS required when compiling for this -# project. These CFLAGS will be used IN ADDITION TO the PLATFORM_CFLAGS -# defined in your platform specific core configuration files. These flags are -# presented to the compiler BEFORE the PROJECT_OPTIMIZATION_CFLAGS below. -# -# (default) PROJECT_CFLAGS = (blank) -# -# Note: Before adding PROJECT_CFLAGS, note that the PLATFORM_CFLAGS defined in -# your platform specific configuration file will be applied by default and -# further flags here may not be needed. -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_CFLAGS = - -################################################################################ -# PROJECT OPTIMIZATION CFLAGS -# These are lists of CFLAGS that are target-specific. While any flags could -# be conditionally added, they are usually limited to optimization flags. -# These flags are added BEFORE the PROJECT_CFLAGS. -# -# PROJECT_OPTIMIZATION_CFLAGS_RELEASE flags are only applied to RELEASE targets. -# -# (default) PROJECT_OPTIMIZATION_CFLAGS_RELEASE = (blank) -# -# PROJECT_OPTIMIZATION_CFLAGS_DEBUG flags are only applied to DEBUG targets. -# -# (default) PROJECT_OPTIMIZATION_CFLAGS_DEBUG = (blank) -# -# Note: Before adding PROJECT_OPTIMIZATION_CFLAGS, please note that the -# PLATFORM_OPTIMIZATION_CFLAGS defined in your platform specific configuration -# file will be applied by default and further optimization flags here may not -# be needed. -# -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_OPTIMIZATION_CFLAGS_RELEASE = -# PROJECT_OPTIMIZATION_CFLAGS_DEBUG = - -################################################################################ -# PROJECT COMPILERS -# Custom compilers can be set for CC and CXX -# (default) PROJECT_CXX = (blank) -# (default) PROJECT_CC = (blank) -# Note: Leave a leading space when adding list items with the += operator -################################################################################ -# PROJECT_CXX = -# PROJECT_CC = diff --git a/opencvExampleDrawing/openFrameworks-Info.plist b/opencvExampleDrawing/openFrameworks-Info.plist deleted file mode 100644 index 8d64d2b..0000000 --- a/opencvExampleDrawing/openFrameworks-Info.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - cc.openFrameworks.ofapp - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - APPL - CFBundleSignature - ???? - CFBundleVersion - 1.0 - CFBundleIconFile - ${ICON} - - diff --git a/opencvExampleDrawing/opencvExample.xcodeproj/project.pbxproj b/opencvExampleDrawing/opencvExample.xcodeproj/project.pbxproj deleted file mode 100644 index 5d9fe04..0000000 --- a/opencvExampleDrawing/opencvExample.xcodeproj/project.pbxproj +++ /dev/null @@ -1,4042 +0,0 @@ - - - - archiveVersion - 1 - classes - - objectVersion - 46 - objects - - 30884ECD9C171AB1B1BDFC3F - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cv.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/cv.hpp - sourceTree - SOURCE_ROOT - - 9FF9126184DFBDE8A912373E - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - highgui.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/highgui.h - sourceTree - SOURCE_ROOT - - 319268D200F1BA567E4CCFF9 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cxeigen.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/cxeigen.hpp - sourceTree - SOURCE_ROOT - - E90542C149C83316678AB011 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cxmisc.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/cxmisc.h - sourceTree - SOURCE_ROOT - - DB8653D6433E14BF06F3EFAF - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cvwimage.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/cvwimage.h - sourceTree - SOURCE_ROOT - - CF29BFB3FD3CAA54F336E6FD - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cvaux.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/cvaux.hpp - sourceTree - SOURCE_ROOT - - B8427966039B53A0FE69C1F0 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cxcore.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/cxcore.h - sourceTree - SOURCE_ROOT - - 7101CF2125B8B2BF46AA2662 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cxcore.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/cxcore.hpp - sourceTree - SOURCE_ROOT - - 7C3D9C0EAC738ED2624D264B - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ml.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/ml.h - sourceTree - SOURCE_ROOT - - 33FF03222909C1A0ECE43753 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cv.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/cv.h - sourceTree - SOURCE_ROOT - - 737B033AA777B67BA4F8F4D2 - - children - - D76A59E7B3601E76351C9BDB - 33FF03222909C1A0ECE43753 - 7C3D9C0EAC738ED2624D264B - 7101CF2125B8B2BF46AA2662 - B8427966039B53A0FE69C1F0 - CF29BFB3FD3CAA54F336E6FD - DB8653D6433E14BF06F3EFAF - E90542C149C83316678AB011 - 319268D200F1BA567E4CCFF9 - 9FF9126184DFBDE8A912373E - 30884ECD9C171AB1B1BDFC3F - - isa - PBXGroup - name - opencv - sourceTree - <group> - - D76A59E7B3601E76351C9BDB - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cvaux.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/cvaux.h - sourceTree - SOURCE_ROOT - - C4FB85020773DA0F09B8B6CE - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ts_gtest.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ts/ts_gtest.h - sourceTree - SOURCE_ROOT - - 8FB4573CDB2FB9658ACF87AA - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - gpu_test.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ts/gpu_test.hpp - sourceTree - SOURCE_ROOT - - 45E004D1064EC5B8C5C40A83 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ts_perf.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ts/ts_perf.hpp - sourceTree - SOURCE_ROOT - - A770C8D74DA82B9944013381 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - gpu_perf.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ts/gpu_perf.hpp - sourceTree - SOURCE_ROOT - - 0478E60892BF4C0731AE0763 - - children - - 7673F0AA19794A4C9517CF14 - A770C8D74DA82B9944013381 - 45E004D1064EC5B8C5C40A83 - 8FB4573CDB2FB9658ACF87AA - C4FB85020773DA0F09B8B6CE - - isa - PBXGroup - name - ts - sourceTree - <group> - - 7673F0AA19794A4C9517CF14 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ts.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ts/ts.hpp - sourceTree - SOURCE_ROOT - - C61D3DACE506E4A1C3A6D782 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - highgui.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/highgui/highgui.hpp - sourceTree - SOURCE_ROOT - - 293D553B5067FBB8DEFA84D9 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cap_ios.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/highgui/cap_ios.h - sourceTree - SOURCE_ROOT - - 0B87BF43E5302005FEF650B6 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ios.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/highgui/ios.h - sourceTree - SOURCE_ROOT - - 9C99831C330874C2B245AB48 - - children - - AE433383D6CA170C418C8A9E - 0B87BF43E5302005FEF650B6 - 293D553B5067FBB8DEFA84D9 - C61D3DACE506E4A1C3A6D782 - - isa - PBXGroup - name - highgui - sourceTree - <group> - - AE433383D6CA170C418C8A9E - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - highgui_c.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/highgui/highgui_c.h - sourceTree - SOURCE_ROOT - - 428EB732FD42504F37BCA78A - - children - - 67AF0E794FA186DD25454CC9 - - isa - PBXGroup - name - calib3d - sourceTree - <group> - - 67AF0E794FA186DD25454CC9 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - calib3d.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/calib3d/calib3d.hpp - sourceTree - SOURCE_ROOT - - 56ED74AD5FC73867F5E046F0 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - photo_c.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/photo/photo_c.h - sourceTree - SOURCE_ROOT - - 3B8F70BFDA30BBA2A5A060FC - - children - - CCFB64CDA537F2B5A54CDC13 - 56ED74AD5FC73867F5E046F0 - - isa - PBXGroup - name - photo - sourceTree - <group> - - CCFB64CDA537F2B5A54CDC13 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - photo.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/photo/photo.hpp - sourceTree - SOURCE_ROOT - - C65A89034372885C3F7259F5 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - superres.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/superres/superres.hpp - sourceTree - SOURCE_ROOT - - ED977EFE7B82B0D53CB5C778 - - children - - B09FCFF976DCEACB7C7C8D4E - C65A89034372885C3F7259F5 - - isa - PBXGroup - name - superres - sourceTree - <group> - - B09FCFF976DCEACB7C7C8D4E - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - optical_flow.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/superres/optical_flow.hpp - sourceTree - SOURCE_ROOT - - 59570D160E1EDD6EB832826A - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - frame_source.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/frame_source.hpp - sourceTree - SOURCE_ROOT - - 17CE5A4068930946980DE788 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - stabilizer.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/stabilizer.hpp - sourceTree - SOURCE_ROOT - - A3411731962D0402217F182B - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - fast_marching.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/fast_marching.hpp - sourceTree - SOURCE_ROOT - - 075597E52E99BDE94F8036B2 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - fast_marching_inl.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/fast_marching_inl.hpp - sourceTree - SOURCE_ROOT - - D9613459E2788BF99E572ED1 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - deblurring.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/deblurring.hpp - sourceTree - SOURCE_ROOT - - 0CEC1FE946DBDBAB82AF6FE3 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - global_motion.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/global_motion.hpp - sourceTree - SOURCE_ROOT - - 7279658ADA9582251CB1D783 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - log.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/log.hpp - sourceTree - SOURCE_ROOT - - D2991184C57509808BF041C8 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - inpainting.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/inpainting.hpp - sourceTree - SOURCE_ROOT - - 1054B4574F75C1F693C147C6 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - optical_flow.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/optical_flow.hpp - sourceTree - SOURCE_ROOT - - EEEA907F4732A9D8875ABB9C - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - motion_stabilizing.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/motion_stabilizing.hpp - sourceTree - SOURCE_ROOT - - 38D119387412EF71F9FAA033 - - children - - 9A807ED85FFB53D3638FCBE0 - EEEA907F4732A9D8875ABB9C - 1054B4574F75C1F693C147C6 - D2991184C57509808BF041C8 - 7279658ADA9582251CB1D783 - 0CEC1FE946DBDBAB82AF6FE3 - D9613459E2788BF99E572ED1 - 075597E52E99BDE94F8036B2 - A3411731962D0402217F182B - 17CE5A4068930946980DE788 - 59570D160E1EDD6EB832826A - - isa - PBXGroup - name - videostab - sourceTree - <group> - - 9A807ED85FFB53D3638FCBE0 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - videostab.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/videostab.hpp - sourceTree - SOURCE_ROOT - - E8AF1E9150AD818FA9D9195D - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - version.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/version.hpp - sourceTree - SOURCE_ROOT - - AB2AE477F82ACF17D0121166 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - mat.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/mat.hpp - sourceTree - SOURCE_ROOT - - 311F65A208008448840A0A42 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - opengl_interop_deprecated.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/opengl_interop_deprecated.hpp - sourceTree - SOURCE_ROOT - - C1A2E81B4FD0713346D7E806 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - affine.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/affine.hpp - sourceTree - SOURCE_ROOT - - A2EE5E80B134EA52A8B369D2 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - eigen.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/eigen.hpp - sourceTree - SOURCE_ROOT - - A9C85208C7E45FB9D1926789 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - wimage.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/wimage.hpp - sourceTree - SOURCE_ROOT - - 73CB9E4F6812598081C2FE01 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - opengl_interop.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/opengl_interop.hpp - sourceTree - SOURCE_ROOT - - 452417865E4BFB10C9CBF8A2 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - internal.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/internal.hpp - sourceTree - SOURCE_ROOT - - 087522EA37A32B8D902CAB64 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - core_c.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/core_c.h - sourceTree - SOURCE_ROOT - - E4385429A1E63ACEDC39A612 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - operations.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/operations.hpp - sourceTree - SOURCE_ROOT - - 4CFA8A81B93736DE82F0090A - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - gpumat.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/gpumat.hpp - sourceTree - SOURCE_ROOT - - 4CD2228F2C8116D51179E3A3 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - devmem2d.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/devmem2d.hpp - sourceTree - SOURCE_ROOT - - E798C88F1A0E2511E1756CE0 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cuda_devptrs.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/cuda_devptrs.hpp - sourceTree - SOURCE_ROOT - - CD8565F2F122EECA0C095526 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - types_c.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/types_c.h - sourceTree - SOURCE_ROOT - - A5A3A2F98919E2243C73199C - - children - - C66C6414C8B86FDB99ED3B70 - CD8565F2F122EECA0C095526 - E798C88F1A0E2511E1756CE0 - 4CD2228F2C8116D51179E3A3 - 4CFA8A81B93736DE82F0090A - E4385429A1E63ACEDC39A612 - 087522EA37A32B8D902CAB64 - 452417865E4BFB10C9CBF8A2 - 73CB9E4F6812598081C2FE01 - A9C85208C7E45FB9D1926789 - A2EE5E80B134EA52A8B369D2 - C1A2E81B4FD0713346D7E806 - 311F65A208008448840A0A42 - AB2AE477F82ACF17D0121166 - E8AF1E9150AD818FA9D9195D - - isa - PBXGroup - name - core - sourceTree - <group> - - C66C6414C8B86FDB99ED3B70 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - core.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/core.hpp - sourceTree - SOURCE_ROOT - - D0CAFE48EE488EEED9149670 - - children - - 97CFAD0B2F2DB004A8A3BC0B - - isa - PBXGroup - name - objdetect - sourceTree - <group> - - 97CFAD0B2F2DB004A8A3BC0B - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - objdetect.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/objdetect/objdetect.hpp - sourceTree - SOURCE_ROOT - - 60179A75A6C5F9A54DA3A64C - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - streams.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/legacy/streams.hpp - sourceTree - SOURCE_ROOT - - 5D966EA1AA66E2D55D047733 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - blobtrack.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/legacy/blobtrack.hpp - sourceTree - SOURCE_ROOT - - 8530EAD600CD792B81B2E79D - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - legacy.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/legacy/legacy.hpp - sourceTree - SOURCE_ROOT - - 961A625BD21068033782887C - - children - - 665780A3005496E3A4A0D9EF - 8530EAD600CD792B81B2E79D - 5D966EA1AA66E2D55D047733 - 60179A75A6C5F9A54DA3A64C - - isa - PBXGroup - name - legacy - sourceTree - <group> - - 665780A3005496E3A4A0D9EF - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - compat.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/legacy/compat.hpp - sourceTree - SOURCE_ROOT - - 86FEC009E2721D0FB23338D7 - - children - - 61339778C58D921474B5729E - - isa - PBXGroup - name - features2d - sourceTree - <group> - - 61339778C58D921474B5729E - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - features2d.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/features2d/features2d.hpp - sourceTree - SOURCE_ROOT - - E14D3EF03E140F5604900412 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - tracking.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/video/tracking.hpp - sourceTree - SOURCE_ROOT - - 97FBD89E6180673035AD1083 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - video.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/video/video.hpp - sourceTree - SOURCE_ROOT - - C58CC92A5283B95AA31D50FB - - children - - 71C98C3F44D63B39F1482A54 - 97FBD89E6180673035AD1083 - E14D3EF03E140F5604900412 - - isa - PBXGroup - name - video - sourceTree - <group> - - 71C98C3F44D63B39F1482A54 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - background_segm.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/video/background_segm.hpp - sourceTree - SOURCE_ROOT - - 1F9D46D19614774956DFE362 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - seam_finders.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/seam_finders.hpp - sourceTree - SOURCE_ROOT - - 1335F3F49E8A72CB04FA873D - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - util_inl.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/util_inl.hpp - sourceTree - SOURCE_ROOT - - 26E4EEE253C8A6EFC3B3A639 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - warpers.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/warpers.hpp - sourceTree - SOURCE_ROOT - - B1579F602B98D48A6937B341 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - util.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/util.hpp - sourceTree - SOURCE_ROOT - - CE5203B78839A661DA972B33 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - warpers_inl.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/warpers_inl.hpp - sourceTree - SOURCE_ROOT - - 44A8175B7C8A100B5BEF5DE4 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - autocalib.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/autocalib.hpp - sourceTree - SOURCE_ROOT - - D6426FE9886FD3B4A831A446 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - exposure_compensate.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/exposure_compensate.hpp - sourceTree - SOURCE_ROOT - - 79E285EDBBEA89226444A4D0 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - blenders.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/blenders.hpp - sourceTree - SOURCE_ROOT - - 2411F6B35DAAAE5083D51167 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - motion_estimators.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/motion_estimators.hpp - sourceTree - SOURCE_ROOT - - 31BE73BA37686CA4E4904323 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - matchers.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/matchers.hpp - sourceTree - SOURCE_ROOT - - 303E2D4AF80E80BD1FD5E5F6 - - children - - 057D8E7580EA21E2254ADDDA - 31BE73BA37686CA4E4904323 - 2411F6B35DAAAE5083D51167 - 79E285EDBBEA89226444A4D0 - D6426FE9886FD3B4A831A446 - 44A8175B7C8A100B5BEF5DE4 - CE5203B78839A661DA972B33 - B1579F602B98D48A6937B341 - 26E4EEE253C8A6EFC3B3A639 - 1335F3F49E8A72CB04FA873D - 1F9D46D19614774956DFE362 - - isa - PBXGroup - name - detail - sourceTree - <group> - - 057D8E7580EA21E2254ADDDA - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - camera.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/camera.hpp - sourceTree - SOURCE_ROOT - - F2F75C2513DDF24A79A894DF - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - warpers.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/warpers.hpp - sourceTree - SOURCE_ROOT - - AF43D9569510BEB0E2DFB944 - - children - - D2E468A43F6E981DD9B460B5 - F2F75C2513DDF24A79A894DF - 303E2D4AF80E80BD1FD5E5F6 - - isa - PBXGroup - name - stitching - sourceTree - <group> - - D2E468A43F6E981DD9B460B5 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - stitcher.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/stitcher.hpp - sourceTree - SOURCE_ROOT - - D078C50BFCDE342496B5D1F3 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - nonfree.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/nonfree/nonfree.hpp - sourceTree - SOURCE_ROOT - - B353080168DCA97D7DF8732F - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ocl.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/nonfree/ocl.hpp - sourceTree - SOURCE_ROOT - - DA71BD3D5EB1A1F5E64B6751 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - gpu.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/nonfree/gpu.hpp - sourceTree - SOURCE_ROOT - - 7BC63C2C5B49F4CFBC87C288 - - children - - C7178EBE5A9A3912E58D1F0F - DA71BD3D5EB1A1F5E64B6751 - B353080168DCA97D7DF8732F - D078C50BFCDE342496B5D1F3 - - isa - PBXGroup - name - nonfree - sourceTree - <group> - - C7178EBE5A9A3912E58D1F0F - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - features2d.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/nonfree/features2d.hpp - sourceTree - SOURCE_ROOT - - 9B7D592E7AB311451A27C46E - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - opencv.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/opencv.hpp - sourceTree - SOURCE_ROOT - - 0F288FD421D474F4AE2684D3 - - children - - 59626D03C690200AD4E8B3A6 - - isa - PBXGroup - name - ml - sourceTree - <group> - - 59626D03C690200AD4E8B3A6 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ml.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ml/ml.hpp - sourceTree - SOURCE_ROOT - - FD2373742F56BFA0EF7FBF09 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - color.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/color.hpp - sourceTree - SOURCE_ROOT - - 18E16A7CA55F6761C64833F7 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - vec_traits.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/vec_traits.hpp - sourceTree - SOURCE_ROOT - - 74889E354F64911B56A1CAD1 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - warp.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/warp.hpp - sourceTree - SOURCE_ROOT - - 0ADD044A3066779F3673F1FE - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - static_check.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/static_check.hpp - sourceTree - SOURCE_ROOT - - EBBA82550412B77EFA70AE87 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - funcattrib.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/funcattrib.hpp - sourceTree - SOURCE_ROOT - - 63152EF07846DECD2854B62C - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - utility.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/utility.hpp - sourceTree - SOURCE_ROOT - - FB2852BC651C91987A1C26FB - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - scan.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/scan.hpp - sourceTree - SOURCE_ROOT - - 35EEEA3F57EFB3D7DE4C0DED - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - saturate_cast.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/saturate_cast.hpp - sourceTree - SOURCE_ROOT - - 1C490B8705672F1410388922 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - reduce.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail/reduce.hpp - sourceTree - SOURCE_ROOT - - C4BA8097B54C90163F99F5C1 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - transform_detail.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail/transform_detail.hpp - sourceTree - SOURCE_ROOT - - 2B75A06D9EF1817256BA26F6 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - type_traits_detail.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail/type_traits_detail.hpp - sourceTree - SOURCE_ROOT - - 37D155721DCC51F3D1DC2E02 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - color_detail.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail/color_detail.hpp - sourceTree - SOURCE_ROOT - - E21FF871B93E31DA43FE7E42 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - vec_distance_detail.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail/vec_distance_detail.hpp - sourceTree - SOURCE_ROOT - - DF5D380A1A4583A1636503A6 - - children - - 417A0B7154103C22ECC253E8 - E21FF871B93E31DA43FE7E42 - 37D155721DCC51F3D1DC2E02 - 2B75A06D9EF1817256BA26F6 - C4BA8097B54C90163F99F5C1 - 1C490B8705672F1410388922 - - isa - PBXGroup - name - detail - sourceTree - <group> - - 417A0B7154103C22ECC253E8 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - reduce_key_val.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail/reduce_key_val.hpp - sourceTree - SOURCE_ROOT - - B1DCC53B17C50537AACC8DF0 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - reduce.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/reduce.hpp - sourceTree - SOURCE_ROOT - - 5A5CDEE1BFF097614562CD88 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - common.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/common.hpp - sourceTree - SOURCE_ROOT - - 0339099A1F7B84040D88AD3C - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - warp_shuffle.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/warp_shuffle.hpp - sourceTree - SOURCE_ROOT - - 1AD5FD8CB7EA240501080287 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - vec_math.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/vec_math.hpp - sourceTree - SOURCE_ROOT - - 6940F9A28CDC85ED7D1847C1 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - emulation.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/emulation.hpp - sourceTree - SOURCE_ROOT - - 7D86D41170A02B361853AB73 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - vec_distance.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/vec_distance.hpp - sourceTree - SOURCE_ROOT - - 960BD311ABBA7D3299D7FE1F - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - datamov_utils.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/datamov_utils.hpp - sourceTree - SOURCE_ROOT - - F38AB91361456BF84AB04DD1 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - border_interpolate.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/border_interpolate.hpp - sourceTree - SOURCE_ROOT - - AF7C3C8465AD112E066C67A7 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - type_traits.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/type_traits.hpp - sourceTree - SOURCE_ROOT - - 3ADB4E06C4EDB97E020A778D - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - functional.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/functional.hpp - sourceTree - SOURCE_ROOT - - 5105862F1606831E9239FEAF - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - simd_functions.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/simd_functions.hpp - sourceTree - SOURCE_ROOT - - 84238297E460936905B92D16 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - limits.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/limits.hpp - sourceTree - SOURCE_ROOT - - C362FD421E9C5E4962E410EB - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - dynamic_smem.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/dynamic_smem.hpp - sourceTree - SOURCE_ROOT - - 41E9090E543FC2D51BFD312C - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - warp_reduce.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/warp_reduce.hpp - sourceTree - SOURCE_ROOT - - F0FCA82EC2A69AEB3BA6AF38 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - filters.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/filters.hpp - sourceTree - SOURCE_ROOT - - A1E5C3C977BF213B183ABC28 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - block.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/block.hpp - sourceTree - SOURCE_ROOT - - C830064088936DB0F1158554 - - children - - A2C86A44C1FD1CB1DD189DFA - A1E5C3C977BF213B183ABC28 - F0FCA82EC2A69AEB3BA6AF38 - 41E9090E543FC2D51BFD312C - C362FD421E9C5E4962E410EB - 84238297E460936905B92D16 - 5105862F1606831E9239FEAF - 3ADB4E06C4EDB97E020A778D - AF7C3C8465AD112E066C67A7 - F38AB91361456BF84AB04DD1 - 960BD311ABBA7D3299D7FE1F - 7D86D41170A02B361853AB73 - 6940F9A28CDC85ED7D1847C1 - 1AD5FD8CB7EA240501080287 - 0339099A1F7B84040D88AD3C - 5A5CDEE1BFF097614562CD88 - B1DCC53B17C50537AACC8DF0 - DF5D380A1A4583A1636503A6 - 35EEEA3F57EFB3D7DE4C0DED - FB2852BC651C91987A1C26FB - 63152EF07846DECD2854B62C - EBBA82550412B77EFA70AE87 - 0ADD044A3066779F3673F1FE - 74889E354F64911B56A1CAD1 - 18E16A7CA55F6761C64833F7 - FD2373742F56BFA0EF7FBF09 - - isa - PBXGroup - name - device - sourceTree - <group> - - A2C86A44C1FD1CB1DD189DFA - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - transform.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/transform.hpp - sourceTree - SOURCE_ROOT - - D902EB2409214285BCF5F191 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - stream_accessor.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/stream_accessor.hpp - sourceTree - SOURCE_ROOT - - AF9A155219FEDFA6E95454EA - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - gpu.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/gpu.hpp - sourceTree - SOURCE_ROOT - - E354468911BA093791076DD7 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - gpumat.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/gpumat.hpp - sourceTree - SOURCE_ROOT - - 5236346776DB8ECC4B121CA3 - - children - - F886EBA3F8F05C7F74633933 - E354468911BA093791076DD7 - AF9A155219FEDFA6E95454EA - D902EB2409214285BCF5F191 - C830064088936DB0F1158554 - - isa - PBXGroup - name - gpu - sourceTree - <group> - - F886EBA3F8F05C7F74633933 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - devmem2d.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/devmem2d.hpp - sourceTree - SOURCE_ROOT - - 9B55998E41388AD8704E4F9A - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - imgproc_c.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/imgproc/imgproc_c.h - sourceTree - SOURCE_ROOT - - 114B872696817CC33990FC83 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - imgproc.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/imgproc/imgproc.hpp - sourceTree - SOURCE_ROOT - - 3E44059DCBC2444D65660B9C - - children - - 9B90B3EE60497170AA00BFE8 - 114B872696817CC33990FC83 - 9B55998E41388AD8704E4F9A - - isa - PBXGroup - name - imgproc - sourceTree - <group> - - 9B90B3EE60497170AA00BFE8 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - types_c.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/imgproc/types_c.h - sourceTree - SOURCE_ROOT - - BBAF9D981351C596CA67CAF9 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - hybridtracker.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/contrib/hybridtracker.hpp - sourceTree - SOURCE_ROOT - - BA2345C0AC2330B6CF370764 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - detection_based_tracker.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/contrib/detection_based_tracker.hpp - sourceTree - SOURCE_ROOT - - 5A59183C98FC5E69FC90F138 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - contrib.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/contrib/contrib.hpp - sourceTree - SOURCE_ROOT - - A0399084868E7CAFB7E3D8E9 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - retina.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/contrib/retina.hpp - sourceTree - SOURCE_ROOT - - 170C3384C93B182490DDC9CC - - children - - 87DBF560FF25F1CD2E737825 - A0399084868E7CAFB7E3D8E9 - 5A59183C98FC5E69FC90F138 - BA2345C0AC2330B6CF370764 - BBAF9D981351C596CA67CAF9 - - isa - PBXGroup - name - contrib - sourceTree - <group> - - 87DBF560FF25F1CD2E737825 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - openfabmap.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/contrib/openfabmap.hpp - sourceTree - SOURCE_ROOT - - 9B076DCB5B800BE9AF1B71A6 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - flann_base.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/flann_base.hpp - sourceTree - SOURCE_ROOT - - A15E0125B8C9B7F01DED5695 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - matrix.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/matrix.h - sourceTree - SOURCE_ROOT - - 01DAE5C2E3E0A74207B2BE49 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - saving.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/saving.h - sourceTree - SOURCE_ROOT - - D5A3AFF36064B2CACAD31716 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - composite_index.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/composite_index.h - sourceTree - SOURCE_ROOT - - 011E372AEA4DFBC1A32C2851 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - all_indices.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/all_indices.h - sourceTree - SOURCE_ROOT - - 9DA0CBD43DA38386EB04C9AE - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - miniflann.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/miniflann.hpp - sourceTree - SOURCE_ROOT - - 758F19335D4E46A5E0DE449F - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - kdtree_single_index.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/kdtree_single_index.h - sourceTree - SOURCE_ROOT - - E5F6E381641665852B997FC4 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - allocator.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/allocator.h - sourceTree - SOURCE_ROOT - - FEDA0B6056089762F5FA11CA - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - lsh_table.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/lsh_table.h - sourceTree - SOURCE_ROOT - - 1E95EFD35ED9C5D97F2F015E - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - timer.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/timer.h - sourceTree - SOURCE_ROOT - - F070AF5E3926EB2CB7A15D1B - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - params.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/params.h - sourceTree - SOURCE_ROOT - - FB213FF0567D1B312DDBD05D - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - linear_index.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/linear_index.h - sourceTree - SOURCE_ROOT - - 096CB33CAD6C5A446E7026E9 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - dynamic_bitset.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/dynamic_bitset.h - sourceTree - SOURCE_ROOT - - 6B907CFBB1B0FEDE76C41AA0 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - heap.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/heap.h - sourceTree - SOURCE_ROOT - - 586A8EC141BDFA82B3B0518C - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - config.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/config.h - sourceTree - SOURCE_ROOT - - CBDE84185E2969BA4AB209FC - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - general.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/general.h - sourceTree - SOURCE_ROOT - - E7DDB716B5AE0DEA82DFFEDA - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - autotuned_index.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/autotuned_index.h - sourceTree - SOURCE_ROOT - - F9EC3DDC0E9F85C34B21C760 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - object_factory.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/object_factory.h - sourceTree - SOURCE_ROOT - - FF58A50E588D6A64EE206840 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - hdf5.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/hdf5.h - sourceTree - SOURCE_ROOT - - 0173A3F435DECD5A4DDE0B8E - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - logger.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/logger.h - sourceTree - SOURCE_ROOT - - 49EFFCF36CF194CCE0E1FAAB - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - kdtree_index.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/kdtree_index.h - sourceTree - SOURCE_ROOT - - 0CF0AA3895D28E97D8A1E4A9 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ground_truth.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/ground_truth.h - sourceTree - SOURCE_ROOT - - 36F0FF7F8D7342D220CC6319 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - dummy.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/dummy.h - sourceTree - SOURCE_ROOT - - 45410DD818BB205166E67E89 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - any.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/any.h - sourceTree - SOURCE_ROOT - - 8DB45DE3BD6BB97E34BDB411 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - nn_index.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/nn_index.h - sourceTree - SOURCE_ROOT - - DCB56F4E9F44E31D571BC9C4 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - index_testing.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/index_testing.h - sourceTree - SOURCE_ROOT - - 7E57AAE3FAB29F87D19451BC - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - sampling.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/sampling.h - sourceTree - SOURCE_ROOT - - FD609E2EC17FCE181DFE635F - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - dist.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/dist.h - sourceTree - SOURCE_ROOT - - 974AACF856A0A1B7D8F259E0 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - result_set.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/result_set.h - sourceTree - SOURCE_ROOT - - 722542BCDC94162B6A8B9B72 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - defines.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/defines.h - sourceTree - SOURCE_ROOT - - 946187321200AC04E570E6EC - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - hierarchical_clustering_index.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/hierarchical_clustering_index.h - sourceTree - SOURCE_ROOT - - 45F38573A0B0DEEC8BBC7A2C - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - simplex_downhill.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/simplex_downhill.h - sourceTree - SOURCE_ROOT - - 2E411F99E3AB7154484B4F96 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - kmeans_index.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/kmeans_index.h - sourceTree - SOURCE_ROOT - - ECC34C470C60F0A2AE2761B1 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - random.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/random.h - sourceTree - SOURCE_ROOT - - 6DD5A3CBB6D5BBA1C1354F1B - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - flann.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/flann.hpp - sourceTree - SOURCE_ROOT - - 1E45F8C3CCFF6847BFF957AA - - children - - B7BF51E8E757FF8A162D3662 - 6DD5A3CBB6D5BBA1C1354F1B - ECC34C470C60F0A2AE2761B1 - 2E411F99E3AB7154484B4F96 - 45F38573A0B0DEEC8BBC7A2C - 946187321200AC04E570E6EC - 722542BCDC94162B6A8B9B72 - 974AACF856A0A1B7D8F259E0 - FD609E2EC17FCE181DFE635F - 7E57AAE3FAB29F87D19451BC - DCB56F4E9F44E31D571BC9C4 - 8DB45DE3BD6BB97E34BDB411 - 45410DD818BB205166E67E89 - 36F0FF7F8D7342D220CC6319 - 0CF0AA3895D28E97D8A1E4A9 - 49EFFCF36CF194CCE0E1FAAB - 0173A3F435DECD5A4DDE0B8E - FF58A50E588D6A64EE206840 - F9EC3DDC0E9F85C34B21C760 - E7DDB716B5AE0DEA82DFFEDA - CBDE84185E2969BA4AB209FC - 586A8EC141BDFA82B3B0518C - 6B907CFBB1B0FEDE76C41AA0 - 096CB33CAD6C5A446E7026E9 - FB213FF0567D1B312DDBD05D - F070AF5E3926EB2CB7A15D1B - 1E95EFD35ED9C5D97F2F015E - FEDA0B6056089762F5FA11CA - E5F6E381641665852B997FC4 - 758F19335D4E46A5E0DE449F - 9DA0CBD43DA38386EB04C9AE - 011E372AEA4DFBC1A32C2851 - D5A3AFF36064B2CACAD31716 - 01DAE5C2E3E0A74207B2BE49 - A15E0125B8C9B7F01DED5695 - 9B076DCB5B800BE9AF1B71A6 - - isa - PBXGroup - name - flann - sourceTree - <group> - - B7BF51E8E757FF8A162D3662 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - lsh_index.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/lsh_index.h - sourceTree - SOURCE_ROOT - - 0F07FE174552DEF007BF5AD5 - - children - - 9ABD8CF34D37FADFEB352B88 - 1E45F8C3CCFF6847BFF957AA - 170C3384C93B182490DDC9CC - 3E44059DCBC2444D65660B9C - 5236346776DB8ECC4B121CA3 - 0F288FD421D474F4AE2684D3 - 9B7D592E7AB311451A27C46E - 7BC63C2C5B49F4CFBC87C288 - AF43D9569510BEB0E2DFB944 - C58CC92A5283B95AA31D50FB - 86FEC009E2721D0FB23338D7 - 961A625BD21068033782887C - D0CAFE48EE488EEED9149670 - A5A3A2F98919E2243C73199C - 38D119387412EF71F9FAA033 - ED977EFE7B82B0D53CB5C778 - 3B8F70BFDA30BBA2A5A060FC - 428EB732FD42504F37BCA78A - 9C99831C330874C2B245AB48 - 0478E60892BF4C0731AE0763 - - isa - PBXGroup - name - opencv2 - sourceTree - <group> - - F9F05170CB9BDF47DA2B6E6A - - children - - 0F07FE174552DEF007BF5AD5 - 737B033AA777B67BA4F8F4D2 - - isa - PBXGroup - name - include - sourceTree - <group> - - AAA97F42C2FE4A31ECFD0585 - - children - - F9F05170CB9BDF47DA2B6E6A - - isa - PBXGroup - name - opencv - sourceTree - <group> - - DCC60D6724B56635AE867535 - - children - - AAA97F42C2FE4A31ECFD0585 - - isa - PBXGroup - name - libs - sourceTree - <group> - - 9ABD8CF34D37FADFEB352B88 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - opencv_modules.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/opencv_modules.hpp - sourceTree - SOURCE_ROOT - - 1D5F3298C2FA073628012944 - - fileRef - C76DE5C29BDBD2CAA1DD0021 - isa - PBXBuildFile - - C76DE5C29BDBD2CAA1DD0021 - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvContourFinder.cpp - path - ../../../addons/ofxOpenCv/src/ofxCvContourFinder.cpp - sourceTree - SOURCE_ROOT - - CE81A5E39EB3C871FDF3D4D5 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxOpenCv.h - path - ../../../addons/ofxOpenCv/src/ofxOpenCv.h - sourceTree - SOURCE_ROOT - - D847EBE484F4F500F9CF2549 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvImage.h - path - ../../../addons/ofxOpenCv/src/ofxCvImage.h - sourceTree - SOURCE_ROOT - - F7269F96AC34A2B44A680D03 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvFloatImage.h - path - ../../../addons/ofxOpenCv/src/ofxCvFloatImage.h - sourceTree - SOURCE_ROOT - - 250A95BA26587BE85DB0A353 - - fileRef - CE9C7160245B19131DAE6128 - isa - PBXBuildFile - - CE9C7160245B19131DAE6128 - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvColorImage.cpp - path - ../../../addons/ofxOpenCv/src/ofxCvColorImage.cpp - sourceTree - SOURCE_ROOT - - 603F2267D449084A4187A049 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvBlob.h - path - ../../../addons/ofxOpenCv/src/ofxCvBlob.h - sourceTree - SOURCE_ROOT - - C1C56D20A1A57DC44096BFE7 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvContourFinder.h - path - ../../../addons/ofxOpenCv/src/ofxCvContourFinder.h - sourceTree - SOURCE_ROOT - - DEA2EDC0AFD59176FDEDC222 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvShortImage.h - path - ../../../addons/ofxOpenCv/src/ofxCvShortImage.h - sourceTree - SOURCE_ROOT - - E212C821D1064B92DD953A42 - - fileRef - 9A16CBF2E8CFE43AF54FE6F5 - isa - PBXBuildFile - - 9A16CBF2E8CFE43AF54FE6F5 - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvHaarFinder.cpp - path - ../../../addons/ofxOpenCv/src/ofxCvHaarFinder.cpp - sourceTree - SOURCE_ROOT - - D5BB6F0357B6422E1B1656B4 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvColorImage.h - path - ../../../addons/ofxOpenCv/src/ofxCvColorImage.h - sourceTree - SOURCE_ROOT - - 516717F84C0146512C47A3EC - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvHaarFinder.h - path - ../../../addons/ofxOpenCv/src/ofxCvHaarFinder.h - sourceTree - SOURCE_ROOT - - 169D3C72FDE6C5590A1616F5 - - fileRef - 7B6A03390302D5A2C9F0E4AB - isa - PBXBuildFile - - 7B6A03390302D5A2C9F0E4AB - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvFloatImage.cpp - path - ../../../addons/ofxOpenCv/src/ofxCvFloatImage.cpp - sourceTree - SOURCE_ROOT - - 9A048549F08C6DFFA79E6DEF - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvGrayscaleImage.h - path - ../../../addons/ofxOpenCv/src/ofxCvGrayscaleImage.h - sourceTree - SOURCE_ROOT - - D3301F6A0B43BB293ED97C1D - - fileRef - 8A4DD23693DFAB8EC05FAA5D - isa - PBXBuildFile - - 8A4DD23693DFAB8EC05FAA5D - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvShortImage.cpp - path - ../../../addons/ofxOpenCv/src/ofxCvShortImage.cpp - sourceTree - SOURCE_ROOT - - FB09C6B2A1DA0EA217240CB8 - - fileRef - 057122A817D12571F8C0C7A4 - isa - PBXBuildFile - - 057122A817D12571F8C0C7A4 - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvGrayscaleImage.cpp - path - ../../../addons/ofxOpenCv/src/ofxCvGrayscaleImage.cpp - sourceTree - SOURCE_ROOT - - 8E79CF8911DFABAFE23EA45B - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvConstants.h - path - ../../../addons/ofxOpenCv/src/ofxCvConstants.h - sourceTree - SOURCE_ROOT - - C756CAAFD542831674E15FE6 - - children - - C6151136D101F857DAE12722 - 8E79CF8911DFABAFE23EA45B - 057122A817D12571F8C0C7A4 - 8A4DD23693DFAB8EC05FAA5D - 9A048549F08C6DFFA79E6DEF - 7B6A03390302D5A2C9F0E4AB - 516717F84C0146512C47A3EC - D5BB6F0357B6422E1B1656B4 - 9A16CBF2E8CFE43AF54FE6F5 - DEA2EDC0AFD59176FDEDC222 - C1C56D20A1A57DC44096BFE7 - 603F2267D449084A4187A049 - CE9C7160245B19131DAE6128 - F7269F96AC34A2B44A680D03 - D847EBE484F4F500F9CF2549 - CE81A5E39EB3C871FDF3D4D5 - C76DE5C29BDBD2CAA1DD0021 - - isa - PBXGroup - name - src - sourceTree - <group> - - A0B90D3B0ADB9C1716816714 - - children - - C756CAAFD542831674E15FE6 - DCC60D6724B56635AE867535 - - isa - PBXGroup - name - ofxOpenCv - sourceTree - <group> - - 63020F16C7E8DED980111241 - - fileRef - C6151136D101F857DAE12722 - isa - PBXBuildFile - - C6151136D101F857DAE12722 - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvImage.cpp - path - ../../../addons/ofxOpenCv/src/ofxCvImage.cpp - sourceTree - SOURCE_ROOT - - 6948EE371B920CB800B5AC1A - - children - - isa - PBXGroup - name - local_addons - sourceTree - <group> - - BB4B014C10F69532006C3DED - - children - - A0B90D3B0ADB9C1716816714 - - isa - PBXGroup - name - addons - sourceTree - <group> - - E4328143138ABC890047C5CB - - isa - PBXFileReference - lastKnownFileType - wrapper.pb-project - name - openFrameworksLib.xcodeproj - path - ../../../libs/openFrameworksCompiled/project/osx/openFrameworksLib.xcodeproj - sourceTree - SOURCE_ROOT - - E4328144138ABC890047C5CB - - children - - E4328148138ABC890047C5CB - - isa - PBXGroup - name - Products - sourceTree - <group> - - E4328147138ABC890047C5CB - - containerPortal - E4328143138ABC890047C5CB - isa - PBXContainerItemProxy - proxyType - 2 - remoteGlobalIDString - E4B27C1510CBEB8E00536013 - remoteInfo - openFrameworks - - E4328148138ABC890047C5CB - - fileType - archive.ar - isa - PBXReferenceProxy - path - openFrameworksDebug.a - remoteRef - E4328147138ABC890047C5CB - sourceTree - BUILT_PRODUCTS_DIR - - E4328149138ABC9F0047C5CB - - fileRef - E4328148138ABC890047C5CB - isa - PBXBuildFile - - E4B69B4A0A3A1720003C02F2 - - children - - E4B6FCAD0C3E899E008CF71C - E4EB6923138AFD0F00A09F29 - E4B69E1C0A3A1BDC003C02F2 - E4EEC9E9138DF44700A80321 - BB4B014C10F69532006C3DED - 6948EE371B920CB800B5AC1A - E4B69B5B0A3A1756003C02F2 - - isa - PBXGroup - sourceTree - <group> - - E4B69B4C0A3A1720003C02F2 - - attributes - - LastUpgradeCheck - 0600 - - buildConfigurationList - E4B69B4D0A3A1720003C02F2 - compatibilityVersion - Xcode 3.2 - developmentRegion - English - hasScannedForEncodings - 0 - isa - PBXProject - knownRegions - - English - Japanese - French - German - - mainGroup - E4B69B4A0A3A1720003C02F2 - productRefGroup - E4B69B4A0A3A1720003C02F2 - projectDirPath - - projectReferences - - - ProductGroup - E4328144138ABC890047C5CB - ProjectRef - E4328143138ABC890047C5CB - - - projectRoot - - targets - - E4B69B5A0A3A1756003C02F2 - - - E4B69B4D0A3A1720003C02F2 - - buildConfigurations - - E4B69B4E0A3A1720003C02F2 - E4B69B4F0A3A1720003C02F2 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - E4B69B4E0A3A1720003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - OTHER_LDFLAGS - - $(OF_CORE_FRAMEWORKS) $(OF_CORE_LIBS) - ../../../addons/ofxOpenCv/libs/opencv/lib/osx/opencv.a - - HEADER_SEARCH_PATHS - - $(OF_CORE_HEADERS) - src - ../../../addons/ofxOpenCv/libs - ../../../addons/ofxOpenCv/libs/opencv - ../../../addons/ofxOpenCv/libs/opencv/include - ../../../addons/ofxOpenCv/libs/opencv/include/opencv - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2 - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/calib3d - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/contrib - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/features2d - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/highgui - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/imgproc - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/legacy - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ml - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/nonfree - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/objdetect - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/photo - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/superres - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ts - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/video - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab - ../../../addons/ofxOpenCv/libs/opencv/lib - ../../../addons/ofxOpenCv/libs/opencv/lib/emscripten - ../../../addons/ofxOpenCv/libs/opencv/lib/osx - ../../../addons/ofxOpenCv/libs/opencv/license - ../../../addons/ofxOpenCv/src - - CONFIGURATION_BUILD_DIR - $(SRCROOT)/bin/ - COPY_PHASE_STRIP - NO - DEAD_CODE_STRIPPING - YES - GCC_AUTO_VECTORIZATION - YES - GCC_ENABLE_SSE3_EXTENSIONS - YES - GCC_ENABLE_SUPPLEMENTAL_SSE3_INSTRUCTIONS - YES - GCC_INLINES_ARE_PRIVATE_EXTERN - NO - GCC_OPTIMIZATION_LEVEL - 0 - GCC_SYMBOLS_PRIVATE_EXTERN - NO - GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS - YES - GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO - NO - GCC_WARN_ALLOW_INCOMPLETE_PROTOCOL - NO - GCC_WARN_UNINITIALIZED_AUTOS - NO - GCC_WARN_UNUSED_VALUE - NO - GCC_WARN_UNUSED_VARIABLE - NO - MACOSX_DEPLOYMENT_TARGET - 10.8 - ONLY_ACTIVE_ARCH - YES - OTHER_CPLUSPLUSFLAGS - - -D__MACOSX_CORE__ - -mtune=native - - SDKROOT - macosx - - isa - XCBuildConfiguration - name - Debug - - E4B69B4F0A3A1720003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - OTHER_LDFLAGS - - $(OF_CORE_FRAMEWORKS) $(OF_CORE_LIBS) - ../../../addons/ofxOpenCv/libs/opencv/lib/osx/opencv.a - - HEADER_SEARCH_PATHS - - $(OF_CORE_HEADERS) - src - ../../../addons/ofxOpenCv/libs - ../../../addons/ofxOpenCv/libs/opencv - ../../../addons/ofxOpenCv/libs/opencv/include - ../../../addons/ofxOpenCv/libs/opencv/include/opencv - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2 - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/calib3d - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/contrib - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/features2d - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/highgui - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/imgproc - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/legacy - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ml - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/nonfree - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/objdetect - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/photo - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/superres - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ts - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/video - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab - ../../../addons/ofxOpenCv/libs/opencv/lib - ../../../addons/ofxOpenCv/libs/opencv/lib/emscripten - ../../../addons/ofxOpenCv/libs/opencv/lib/osx - ../../../addons/ofxOpenCv/libs/opencv/license - ../../../addons/ofxOpenCv/src - - CONFIGURATION_BUILD_DIR - $(SRCROOT)/bin/ - COPY_PHASE_STRIP - YES - DEAD_CODE_STRIPPING - YES - GCC_AUTO_VECTORIZATION - YES - GCC_ENABLE_SSE3_EXTENSIONS - YES - GCC_ENABLE_SUPPLEMENTAL_SSE3_INSTRUCTIONS - YES - GCC_INLINES_ARE_PRIVATE_EXTERN - NO - GCC_OPTIMIZATION_LEVEL - 3 - GCC_SYMBOLS_PRIVATE_EXTERN - NO - GCC_UNROLL_LOOPS - YES - GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS - YES - GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO - NO - GCC_WARN_ALLOW_INCOMPLETE_PROTOCOL - NO - GCC_WARN_UNINITIALIZED_AUTOS - NO - GCC_WARN_UNUSED_VALUE - NO - GCC_WARN_UNUSED_VARIABLE - NO - MACOSX_DEPLOYMENT_TARGET - 10.8 - OTHER_CPLUSPLUSFLAGS - - -D__MACOSX_CORE__ - -mtune=native - - SDKROOT - macosx - - isa - XCBuildConfiguration - name - Release - - E4B69B580A3A1756003C02F2 - - buildActionMask - 2147483647 - files - - E4B69E200A3A1BDC003C02F2 - E4B69E210A3A1BDC003C02F2 - 63020F16C7E8DED980111241 - FB09C6B2A1DA0EA217240CB8 - D3301F6A0B43BB293ED97C1D - 169D3C72FDE6C5590A1616F5 - E212C821D1064B92DD953A42 - 250A95BA26587BE85DB0A353 - 1D5F3298C2FA073628012944 - - isa - PBXSourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - E4B69B590A3A1756003C02F2 - - buildActionMask - 2147483647 - files - - E4328149138ABC9F0047C5CB - - isa - PBXFrameworksBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - E4B69B5A0A3A1756003C02F2 - - buildConfigurationList - E4B69B5F0A3A1757003C02F2 - buildPhases - - E4B69B580A3A1756003C02F2 - E4B69B590A3A1756003C02F2 - E4B6FFFD0C3F9AB9008CF71C - E4C2427710CC5ABF004149E2 - - buildRules - - dependencies - - E4EEB9AC138B136A00A80321 - - isa - PBXNativeTarget - name - opencvExample - productName - myOFApp - productReference - E4B69B5B0A3A1756003C02F2 - productType - com.apple.product-type.application - - E4B69B5B0A3A1756003C02F2 - - explicitFileType - wrapper.application - includeInIndex - 0 - isa - PBXFileReference - path - opencvExampleDebug.app - sourceTree - BUILT_PRODUCTS_DIR - - E4B69B5F0A3A1757003C02F2 - - buildConfigurations - - E4B69B600A3A1757003C02F2 - E4B69B610A3A1757003C02F2 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - E4B69B600A3A1757003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - OTHER_LDFLAGS - - $(OF_CORE_FRAMEWORKS) $(OF_CORE_LIBS) - ../../../addons/ofxOpenCv/libs/opencv/lib/osx/opencv.a - - HEADER_SEARCH_PATHS - - $(OF_CORE_HEADERS) - src - ../../../addons/ofxOpenCv/libs - ../../../addons/ofxOpenCv/libs/opencv - ../../../addons/ofxOpenCv/libs/opencv/include - ../../../addons/ofxOpenCv/libs/opencv/include/opencv - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2 - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/calib3d - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/contrib - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/features2d - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/highgui - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/imgproc - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/legacy - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ml - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/nonfree - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/objdetect - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/photo - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/superres - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ts - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/video - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab - ../../../addons/ofxOpenCv/libs/opencv/lib - ../../../addons/ofxOpenCv/libs/opencv/lib/emscripten - ../../../addons/ofxOpenCv/libs/opencv/lib/osx - ../../../addons/ofxOpenCv/libs/opencv/license - ../../../addons/ofxOpenCv/src - - COMBINE_HIDPI_IMAGES - YES - COPY_PHASE_STRIP - NO - FRAMEWORK_SEARCH_PATHS - - $(inherited) - $(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1) - - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 - "$(SRCROOT)/../../../libs/glut/lib/osx" - GCC_DYNAMIC_NO_PIC - NO - GCC_GENERATE_DEBUGGING_SYMBOLS - YES - GCC_MODEL_TUNING - NONE - ICON - $(ICON_NAME_DEBUG) - ICON_FILE - $(ICON_FILE_PATH)$(ICON) - INFOPLIST_FILE - openFrameworks-Info.plist - INSTALL_PATH - /Applications - LIBRARY_SEARCH_PATHS - $(inherited) - PRODUCT_NAME - $(TARGET_NAME)Debug - WRAPPER_EXTENSION - app - - isa - XCBuildConfiguration - name - Debug - - E4B69B610A3A1757003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - OTHER_LDFLAGS - - $(OF_CORE_FRAMEWORKS) $(OF_CORE_LIBS) - ../../../addons/ofxOpenCv/libs/opencv/lib/osx/opencv.a - - HEADER_SEARCH_PATHS - - $(OF_CORE_HEADERS) - src - ../../../addons/ofxOpenCv/libs - ../../../addons/ofxOpenCv/libs/opencv - ../../../addons/ofxOpenCv/libs/opencv/include - ../../../addons/ofxOpenCv/libs/opencv/include/opencv - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2 - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/calib3d - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/contrib - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/features2d - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/highgui - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/imgproc - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/legacy - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ml - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/nonfree - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/objdetect - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/photo - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/superres - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ts - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/video - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab - ../../../addons/ofxOpenCv/libs/opencv/lib - ../../../addons/ofxOpenCv/libs/opencv/lib/emscripten - ../../../addons/ofxOpenCv/libs/opencv/lib/osx - ../../../addons/ofxOpenCv/libs/opencv/license - ../../../addons/ofxOpenCv/src - - COMBINE_HIDPI_IMAGES - YES - COPY_PHASE_STRIP - YES - FRAMEWORK_SEARCH_PATHS - - $(inherited) - $(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1) - - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 - "$(SRCROOT)/../../../libs/glut/lib/osx" - GCC_GENERATE_DEBUGGING_SYMBOLS - YES - GCC_MODEL_TUNING - NONE - ICON - $(ICON_NAME_RELEASE) - ICON_FILE - $(ICON_FILE_PATH)$(ICON) - INFOPLIST_FILE - openFrameworks-Info.plist - INSTALL_PATH - /Applications - LIBRARY_SEARCH_PATHS - $(inherited) - PRODUCT_NAME - $(TARGET_NAME) - WRAPPER_EXTENSION - app - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - - isa - XCBuildConfiguration - name - Release - - E4B69E1C0A3A1BDC003C02F2 - - children - - E4B69E1D0A3A1BDC003C02F2 - E4B69E1E0A3A1BDC003C02F2 - E4B69E1F0A3A1BDC003C02F2 - - isa - PBXGroup - path - src - sourceTree - SOURCE_ROOT - - E4B69E1D0A3A1BDC003C02F2 - - fileEncoding - 30 - isa - PBXFileReference - lastKnownFileType - sourcecode.cpp.cpp - name - main.cpp - path - src/main.cpp - sourceTree - SOURCE_ROOT - - E4B69E1E0A3A1BDC003C02F2 - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofApp.cpp - path - src/ofApp.cpp - sourceTree - SOURCE_ROOT - - E4B69E1F0A3A1BDC003C02F2 - - fileEncoding - 30 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - name - ofApp.h - path - src/ofApp.h - sourceTree - SOURCE_ROOT - - E4B69E200A3A1BDC003C02F2 - - fileRef - E4B69E1D0A3A1BDC003C02F2 - isa - PBXBuildFile - - E4B69E210A3A1BDC003C02F2 - - fileRef - E4B69E1E0A3A1BDC003C02F2 - isa - PBXBuildFile - - E4B6FCAD0C3E899E008CF71C - - fileEncoding - 30 - isa - PBXFileReference - lastKnownFileType - text.plist.xml - path - openFrameworks-Info.plist - sourceTree - <group> - - E4B6FFFD0C3F9AB9008CF71C - - buildActionMask - 2147483647 - files - - inputPaths - - isa - PBXShellScriptBuildPhase - outputPaths - - runOnlyForDeploymentPostprocessing - 0 - shellPath - /bin/sh - shellScript - mkdir -p "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Resources/" -# Copy default icon file into App/Resources -rsync -aved "$ICON_FILE" "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Resources/" -# Copy libfmod and change install directory for fmod to run -rsync -aved ../../../libs/fmodex/lib/osx/libfmodex.dylib "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Frameworks/"; -install_name_tool -change @executable_path/libfmodex.dylib @executable_path/../Frameworks/libfmodex.dylib "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/MacOS/$PRODUCT_NAME"; -# Copy GLUT framework (must remove for AppStore submissions) -rsync -aved ../../../libs/glut/lib/osx/GLUT.framework "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Frameworks/" - - - E4C2427710CC5ABF004149E2 - - buildActionMask - 2147483647 - dstPath - - dstSubfolderSpec - 10 - files - - isa - PBXCopyFilesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - E4EB691F138AFCF100A09F29 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - name - CoreOF.xcconfig - path - ../../../libs/openFrameworksCompiled/project/osx/CoreOF.xcconfig - sourceTree - SOURCE_ROOT - - E4EB6923138AFD0F00A09F29 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - path - Project.xcconfig - sourceTree - <group> - - E4EEB9AB138B136A00A80321 - - containerPortal - E4328143138ABC890047C5CB - isa - PBXContainerItemProxy - proxyType - 1 - remoteGlobalIDString - E4B27C1410CBEB8E00536013 - remoteInfo - openFrameworks - - E4EEB9AC138B136A00A80321 - - isa - PBXTargetDependency - name - openFrameworks - targetProxy - E4EEB9AB138B136A00A80321 - - E4EEC9E9138DF44700A80321 - - children - - E4EB691F138AFCF100A09F29 - E4328143138ABC890047C5CB - - isa - PBXGroup - name - openFrameworks - sourceTree - <group> - - - rootObject - E4B69B4C0A3A1720003C02F2 - - diff --git a/opencvExampleDrawing/opencvExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/opencvExampleDrawing/opencvExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 919434a..0000000 --- a/opencvExampleDrawing/opencvExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/opencvExampleDrawing/opencvExample.xcodeproj/project.xcworkspace/xcuserdata/kevinsiwoff.xcuserdatad/UserInterfaceState.xcuserstate b/opencvExampleDrawing/opencvExample.xcodeproj/project.xcworkspace/xcuserdata/kevinsiwoff.xcuserdatad/UserInterfaceState.xcuserstate deleted file mode 100644 index b1824a7..0000000 Binary files a/opencvExampleDrawing/opencvExample.xcodeproj/project.xcworkspace/xcuserdata/kevinsiwoff.xcuserdatad/UserInterfaceState.xcuserstate and /dev/null differ diff --git a/opencvExampleDrawing/opencvExample.xcodeproj/xcshareddata/xcschemes/opencvExample Debug.xcscheme b/opencvExampleDrawing/opencvExample.xcodeproj/xcshareddata/xcschemes/opencvExample Debug.xcscheme deleted file mode 100644 index b57efbb..0000000 --- a/opencvExampleDrawing/opencvExample.xcodeproj/xcshareddata/xcschemes/opencvExample Debug.xcscheme +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/opencvExampleDrawing/opencvExample.xcodeproj/xcshareddata/xcschemes/opencvExample Release.xcscheme b/opencvExampleDrawing/opencvExample.xcodeproj/xcshareddata/xcschemes/opencvExample Release.xcscheme deleted file mode 100644 index b999ccd..0000000 --- a/opencvExampleDrawing/opencvExample.xcodeproj/xcshareddata/xcschemes/opencvExample Release.xcscheme +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/opencvExampleDrawing/opencvExampleDrawing.xcodeproj/project.pbxproj b/opencvExampleDrawing/opencvExampleDrawing.xcodeproj/project.pbxproj deleted file mode 100644 index 447d3bb..0000000 --- a/opencvExampleDrawing/opencvExampleDrawing.xcodeproj/project.pbxproj +++ /dev/null @@ -1,4042 +0,0 @@ - - - - archiveVersion - 1 - classes - - objectVersion - 46 - objects - - 428EB732FD42504F37BCA78A - - children - - 67AF0E794FA186DD25454CC9 - - isa - PBXGroup - name - calib3d - sourceTree - <group> - - 67AF0E794FA186DD25454CC9 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - calib3d.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/calib3d/calib3d.hpp - sourceTree - SOURCE_ROOT - - CCFB64CDA537F2B5A54CDC13 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - photo.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/photo/photo.hpp - sourceTree - SOURCE_ROOT - - 3B8F70BFDA30BBA2A5A060FC - - children - - 56ED74AD5FC73867F5E046F0 - CCFB64CDA537F2B5A54CDC13 - - isa - PBXGroup - name - photo - sourceTree - <group> - - 56ED74AD5FC73867F5E046F0 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - photo_c.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/photo/photo_c.h - sourceTree - SOURCE_ROOT - - 9ABD8CF34D37FADFEB352B88 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - opencv_modules.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/opencv_modules.hpp - sourceTree - SOURCE_ROOT - - 1054B4574F75C1F693C147C6 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - optical_flow.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/optical_flow.hpp - sourceTree - SOURCE_ROOT - - 0CEC1FE946DBDBAB82AF6FE3 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - global_motion.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/global_motion.hpp - sourceTree - SOURCE_ROOT - - 7279658ADA9582251CB1D783 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - log.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/log.hpp - sourceTree - SOURCE_ROOT - - D9613459E2788BF99E572ED1 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - deblurring.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/deblurring.hpp - sourceTree - SOURCE_ROOT - - 075597E52E99BDE94F8036B2 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - fast_marching_inl.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/fast_marching_inl.hpp - sourceTree - SOURCE_ROOT - - 59570D160E1EDD6EB832826A - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - frame_source.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/frame_source.hpp - sourceTree - SOURCE_ROOT - - 17CE5A4068930946980DE788 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - stabilizer.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/stabilizer.hpp - sourceTree - SOURCE_ROOT - - EEEA907F4732A9D8875ABB9C - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - motion_stabilizing.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/motion_stabilizing.hpp - sourceTree - SOURCE_ROOT - - 9A807ED85FFB53D3638FCBE0 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - videostab.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/videostab.hpp - sourceTree - SOURCE_ROOT - - D2991184C57509808BF041C8 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - inpainting.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/inpainting.hpp - sourceTree - SOURCE_ROOT - - 38D119387412EF71F9FAA033 - - children - - A3411731962D0402217F182B - D2991184C57509808BF041C8 - 9A807ED85FFB53D3638FCBE0 - EEEA907F4732A9D8875ABB9C - 17CE5A4068930946980DE788 - 59570D160E1EDD6EB832826A - 075597E52E99BDE94F8036B2 - D9613459E2788BF99E572ED1 - 7279658ADA9582251CB1D783 - 0CEC1FE946DBDBAB82AF6FE3 - 1054B4574F75C1F693C147C6 - - isa - PBXGroup - name - videostab - sourceTree - <group> - - A3411731962D0402217F182B - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - fast_marching.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab/fast_marching.hpp - sourceTree - SOURCE_ROOT - - C4FB85020773DA0F09B8B6CE - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ts_gtest.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ts/ts_gtest.h - sourceTree - SOURCE_ROOT - - A770C8D74DA82B9944013381 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - gpu_perf.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ts/gpu_perf.hpp - sourceTree - SOURCE_ROOT - - 8FB4573CDB2FB9658ACF87AA - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - gpu_test.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ts/gpu_test.hpp - sourceTree - SOURCE_ROOT - - 45E004D1064EC5B8C5C40A83 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ts_perf.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ts/ts_perf.hpp - sourceTree - SOURCE_ROOT - - 0478E60892BF4C0731AE0763 - - children - - 7673F0AA19794A4C9517CF14 - 45E004D1064EC5B8C5C40A83 - 8FB4573CDB2FB9658ACF87AA - A770C8D74DA82B9944013381 - C4FB85020773DA0F09B8B6CE - - isa - PBXGroup - name - ts - sourceTree - <group> - - 7673F0AA19794A4C9517CF14 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ts.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ts/ts.hpp - sourceTree - SOURCE_ROOT - - 86FEC009E2721D0FB23338D7 - - children - - 61339778C58D921474B5729E - - isa - PBXGroup - name - features2d - sourceTree - <group> - - 61339778C58D921474B5729E - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - features2d.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/features2d/features2d.hpp - sourceTree - SOURCE_ROOT - - AE433383D6CA170C418C8A9E - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - highgui_c.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/highgui/highgui_c.h - sourceTree - SOURCE_ROOT - - 293D553B5067FBB8DEFA84D9 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cap_ios.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/highgui/cap_ios.h - sourceTree - SOURCE_ROOT - - C61D3DACE506E4A1C3A6D782 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - highgui.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/highgui/highgui.hpp - sourceTree - SOURCE_ROOT - - 9C99831C330874C2B245AB48 - - children - - 0B87BF43E5302005FEF650B6 - C61D3DACE506E4A1C3A6D782 - 293D553B5067FBB8DEFA84D9 - AE433383D6CA170C418C8A9E - - isa - PBXGroup - name - highgui - sourceTree - <group> - - 0B87BF43E5302005FEF650B6 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ios.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/highgui/ios.h - sourceTree - SOURCE_ROOT - - 0F288FD421D474F4AE2684D3 - - children - - 59626D03C690200AD4E8B3A6 - - isa - PBXGroup - name - ml - sourceTree - <group> - - 59626D03C690200AD4E8B3A6 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ml.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ml/ml.hpp - sourceTree - SOURCE_ROOT - - 5A59183C98FC5E69FC90F138 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - contrib.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/contrib/contrib.hpp - sourceTree - SOURCE_ROOT - - BA2345C0AC2330B6CF370764 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - detection_based_tracker.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/contrib/detection_based_tracker.hpp - sourceTree - SOURCE_ROOT - - 87DBF560FF25F1CD2E737825 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - openfabmap.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/contrib/openfabmap.hpp - sourceTree - SOURCE_ROOT - - A0399084868E7CAFB7E3D8E9 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - retina.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/contrib/retina.hpp - sourceTree - SOURCE_ROOT - - 170C3384C93B182490DDC9CC - - children - - BBAF9D981351C596CA67CAF9 - A0399084868E7CAFB7E3D8E9 - 87DBF560FF25F1CD2E737825 - BA2345C0AC2330B6CF370764 - 5A59183C98FC5E69FC90F138 - - isa - PBXGroup - name - contrib - sourceTree - <group> - - BBAF9D981351C596CA67CAF9 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - hybridtracker.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/contrib/hybridtracker.hpp - sourceTree - SOURCE_ROOT - - 8530EAD600CD792B81B2E79D - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - legacy.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/legacy/legacy.hpp - sourceTree - SOURCE_ROOT - - 665780A3005496E3A4A0D9EF - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - compat.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/legacy/compat.hpp - sourceTree - SOURCE_ROOT - - 60179A75A6C5F9A54DA3A64C - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - streams.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/legacy/streams.hpp - sourceTree - SOURCE_ROOT - - 961A625BD21068033782887C - - children - - 5D966EA1AA66E2D55D047733 - 60179A75A6C5F9A54DA3A64C - 665780A3005496E3A4A0D9EF - 8530EAD600CD792B81B2E79D - - isa - PBXGroup - name - legacy - sourceTree - <group> - - 5D966EA1AA66E2D55D047733 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - blobtrack.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/legacy/blobtrack.hpp - sourceTree - SOURCE_ROOT - - D0CAFE48EE488EEED9149670 - - children - - 97CFAD0B2F2DB004A8A3BC0B - - isa - PBXGroup - name - objdetect - sourceTree - <group> - - 97CFAD0B2F2DB004A8A3BC0B - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - objdetect.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/objdetect/objdetect.hpp - sourceTree - SOURCE_ROOT - - 9B90B3EE60497170AA00BFE8 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - types_c.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/imgproc/types_c.h - sourceTree - SOURCE_ROOT - - 9B55998E41388AD8704E4F9A - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - imgproc_c.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/imgproc/imgproc_c.h - sourceTree - SOURCE_ROOT - - 3E44059DCBC2444D65660B9C - - children - - 114B872696817CC33990FC83 - 9B55998E41388AD8704E4F9A - 9B90B3EE60497170AA00BFE8 - - isa - PBXGroup - name - imgproc - sourceTree - <group> - - 114B872696817CC33990FC83 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - imgproc.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/imgproc/imgproc.hpp - sourceTree - SOURCE_ROOT - - 9B7D592E7AB311451A27C46E - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - opencv.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/opencv.hpp - sourceTree - SOURCE_ROOT - - D2E468A43F6E981DD9B460B5 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - stitcher.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/stitcher.hpp - sourceTree - SOURCE_ROOT - - 057D8E7580EA21E2254ADDDA - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - camera.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/camera.hpp - sourceTree - SOURCE_ROOT - - 2411F6B35DAAAE5083D51167 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - motion_estimators.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/motion_estimators.hpp - sourceTree - SOURCE_ROOT - - 31BE73BA37686CA4E4904323 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - matchers.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/matchers.hpp - sourceTree - SOURCE_ROOT - - B1579F602B98D48A6937B341 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - util.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/util.hpp - sourceTree - SOURCE_ROOT - - CE5203B78839A661DA972B33 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - warpers_inl.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/warpers_inl.hpp - sourceTree - SOURCE_ROOT - - 79E285EDBBEA89226444A4D0 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - blenders.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/blenders.hpp - sourceTree - SOURCE_ROOT - - 1F9D46D19614774956DFE362 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - seam_finders.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/seam_finders.hpp - sourceTree - SOURCE_ROOT - - 1335F3F49E8A72CB04FA873D - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - util_inl.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/util_inl.hpp - sourceTree - SOURCE_ROOT - - D6426FE9886FD3B4A831A446 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - exposure_compensate.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/exposure_compensate.hpp - sourceTree - SOURCE_ROOT - - 26E4EEE253C8A6EFC3B3A639 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - warpers.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/warpers.hpp - sourceTree - SOURCE_ROOT - - 303E2D4AF80E80BD1FD5E5F6 - - children - - 44A8175B7C8A100B5BEF5DE4 - 26E4EEE253C8A6EFC3B3A639 - D6426FE9886FD3B4A831A446 - 1335F3F49E8A72CB04FA873D - 1F9D46D19614774956DFE362 - 79E285EDBBEA89226444A4D0 - CE5203B78839A661DA972B33 - B1579F602B98D48A6937B341 - 31BE73BA37686CA4E4904323 - 2411F6B35DAAAE5083D51167 - 057D8E7580EA21E2254ADDDA - - isa - PBXGroup - name - detail - sourceTree - <group> - - 44A8175B7C8A100B5BEF5DE4 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - autocalib.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail/autocalib.hpp - sourceTree - SOURCE_ROOT - - AF43D9569510BEB0E2DFB944 - - children - - F2F75C2513DDF24A79A894DF - 303E2D4AF80E80BD1FD5E5F6 - D2E468A43F6E981DD9B460B5 - - isa - PBXGroup - name - stitching - sourceTree - <group> - - F2F75C2513DDF24A79A894DF - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - warpers.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/warpers.hpp - sourceTree - SOURCE_ROOT - - A9C85208C7E45FB9D1926789 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - wimage.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/wimage.hpp - sourceTree - SOURCE_ROOT - - C66C6414C8B86FDB99ED3B70 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - core.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/core.hpp - sourceTree - SOURCE_ROOT - - 311F65A208008448840A0A42 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - opengl_interop_deprecated.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/opengl_interop_deprecated.hpp - sourceTree - SOURCE_ROOT - - 087522EA37A32B8D902CAB64 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - core_c.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/core_c.h - sourceTree - SOURCE_ROOT - - CD8565F2F122EECA0C095526 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - types_c.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/types_c.h - sourceTree - SOURCE_ROOT - - E4385429A1E63ACEDC39A612 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - operations.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/operations.hpp - sourceTree - SOURCE_ROOT - - E8AF1E9150AD818FA9D9195D - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - version.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/version.hpp - sourceTree - SOURCE_ROOT - - 4CD2228F2C8116D51179E3A3 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - devmem2d.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/devmem2d.hpp - sourceTree - SOURCE_ROOT - - AB2AE477F82ACF17D0121166 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - mat.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/mat.hpp - sourceTree - SOURCE_ROOT - - C1A2E81B4FD0713346D7E806 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - affine.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/affine.hpp - sourceTree - SOURCE_ROOT - - 4CFA8A81B93736DE82F0090A - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - gpumat.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/gpumat.hpp - sourceTree - SOURCE_ROOT - - 452417865E4BFB10C9CBF8A2 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - internal.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/internal.hpp - sourceTree - SOURCE_ROOT - - A2EE5E80B134EA52A8B369D2 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - eigen.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/eigen.hpp - sourceTree - SOURCE_ROOT - - 73CB9E4F6812598081C2FE01 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - opengl_interop.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/opengl_interop.hpp - sourceTree - SOURCE_ROOT - - A5A3A2F98919E2243C73199C - - children - - E798C88F1A0E2511E1756CE0 - 73CB9E4F6812598081C2FE01 - A2EE5E80B134EA52A8B369D2 - 452417865E4BFB10C9CBF8A2 - 4CFA8A81B93736DE82F0090A - C1A2E81B4FD0713346D7E806 - AB2AE477F82ACF17D0121166 - 4CD2228F2C8116D51179E3A3 - E8AF1E9150AD818FA9D9195D - E4385429A1E63ACEDC39A612 - CD8565F2F122EECA0C095526 - 087522EA37A32B8D902CAB64 - 311F65A208008448840A0A42 - C66C6414C8B86FDB99ED3B70 - A9C85208C7E45FB9D1926789 - - isa - PBXGroup - name - core - sourceTree - <group> - - E798C88F1A0E2511E1756CE0 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cuda_devptrs.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core/cuda_devptrs.hpp - sourceTree - SOURCE_ROOT - - 8DB45DE3BD6BB97E34BDB411 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - nn_index.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/nn_index.h - sourceTree - SOURCE_ROOT - - ECC34C470C60F0A2AE2761B1 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - random.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/random.h - sourceTree - SOURCE_ROOT - - 45410DD818BB205166E67E89 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - any.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/any.h - sourceTree - SOURCE_ROOT - - 36F0FF7F8D7342D220CC6319 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - dummy.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/dummy.h - sourceTree - SOURCE_ROOT - - 946187321200AC04E570E6EC - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - hierarchical_clustering_index.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/hierarchical_clustering_index.h - sourceTree - SOURCE_ROOT - - 0173A3F435DECD5A4DDE0B8E - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - logger.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/logger.h - sourceTree - SOURCE_ROOT - - 9DA0CBD43DA38386EB04C9AE - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - miniflann.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/miniflann.hpp - sourceTree - SOURCE_ROOT - - 7E57AAE3FAB29F87D19451BC - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - sampling.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/sampling.h - sourceTree - SOURCE_ROOT - - 9B076DCB5B800BE9AF1B71A6 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - flann_base.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/flann_base.hpp - sourceTree - SOURCE_ROOT - - 6B907CFBB1B0FEDE76C41AA0 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - heap.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/heap.h - sourceTree - SOURCE_ROOT - - 011E372AEA4DFBC1A32C2851 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - all_indices.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/all_indices.h - sourceTree - SOURCE_ROOT - - 974AACF856A0A1B7D8F259E0 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - result_set.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/result_set.h - sourceTree - SOURCE_ROOT - - F9EC3DDC0E9F85C34B21C760 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - object_factory.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/object_factory.h - sourceTree - SOURCE_ROOT - - 6DD5A3CBB6D5BBA1C1354F1B - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - flann.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/flann.hpp - sourceTree - SOURCE_ROOT - - 758F19335D4E46A5E0DE449F - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - kdtree_single_index.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/kdtree_single_index.h - sourceTree - SOURCE_ROOT - - E5F6E381641665852B997FC4 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - allocator.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/allocator.h - sourceTree - SOURCE_ROOT - - 0CF0AA3895D28E97D8A1E4A9 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ground_truth.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/ground_truth.h - sourceTree - SOURCE_ROOT - - 096CB33CAD6C5A446E7026E9 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - dynamic_bitset.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/dynamic_bitset.h - sourceTree - SOURCE_ROOT - - FEDA0B6056089762F5FA11CA - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - lsh_table.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/lsh_table.h - sourceTree - SOURCE_ROOT - - 1E95EFD35ED9C5D97F2F015E - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - timer.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/timer.h - sourceTree - SOURCE_ROOT - - 01DAE5C2E3E0A74207B2BE49 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - saving.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/saving.h - sourceTree - SOURCE_ROOT - - 722542BCDC94162B6A8B9B72 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - defines.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/defines.h - sourceTree - SOURCE_ROOT - - DCB56F4E9F44E31D571BC9C4 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - index_testing.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/index_testing.h - sourceTree - SOURCE_ROOT - - A15E0125B8C9B7F01DED5695 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - matrix.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/matrix.h - sourceTree - SOURCE_ROOT - - CBDE84185E2969BA4AB209FC - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - general.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/general.h - sourceTree - SOURCE_ROOT - - E7DDB716B5AE0DEA82DFFEDA - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - autotuned_index.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/autotuned_index.h - sourceTree - SOURCE_ROOT - - 2E411F99E3AB7154484B4F96 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - kmeans_index.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/kmeans_index.h - sourceTree - SOURCE_ROOT - - 586A8EC141BDFA82B3B0518C - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - config.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/config.h - sourceTree - SOURCE_ROOT - - B7BF51E8E757FF8A162D3662 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - lsh_index.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/lsh_index.h - sourceTree - SOURCE_ROOT - - FB213FF0567D1B312DDBD05D - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - linear_index.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/linear_index.h - sourceTree - SOURCE_ROOT - - 45F38573A0B0DEEC8BBC7A2C - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - simplex_downhill.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/simplex_downhill.h - sourceTree - SOURCE_ROOT - - F070AF5E3926EB2CB7A15D1B - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - params.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/params.h - sourceTree - SOURCE_ROOT - - 49EFFCF36CF194CCE0E1FAAB - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - kdtree_index.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/kdtree_index.h - sourceTree - SOURCE_ROOT - - FF58A50E588D6A64EE206840 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - hdf5.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/hdf5.h - sourceTree - SOURCE_ROOT - - FD609E2EC17FCE181DFE635F - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - dist.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/dist.h - sourceTree - SOURCE_ROOT - - 1E45F8C3CCFF6847BFF957AA - - children - - D5A3AFF36064B2CACAD31716 - FD609E2EC17FCE181DFE635F - FF58A50E588D6A64EE206840 - 49EFFCF36CF194CCE0E1FAAB - F070AF5E3926EB2CB7A15D1B - 45F38573A0B0DEEC8BBC7A2C - FB213FF0567D1B312DDBD05D - B7BF51E8E757FF8A162D3662 - 586A8EC141BDFA82B3B0518C - 2E411F99E3AB7154484B4F96 - E7DDB716B5AE0DEA82DFFEDA - CBDE84185E2969BA4AB209FC - A15E0125B8C9B7F01DED5695 - DCB56F4E9F44E31D571BC9C4 - 722542BCDC94162B6A8B9B72 - 01DAE5C2E3E0A74207B2BE49 - 1E95EFD35ED9C5D97F2F015E - FEDA0B6056089762F5FA11CA - 096CB33CAD6C5A446E7026E9 - 0CF0AA3895D28E97D8A1E4A9 - E5F6E381641665852B997FC4 - 758F19335D4E46A5E0DE449F - 6DD5A3CBB6D5BBA1C1354F1B - F9EC3DDC0E9F85C34B21C760 - 974AACF856A0A1B7D8F259E0 - 011E372AEA4DFBC1A32C2851 - 6B907CFBB1B0FEDE76C41AA0 - 9B076DCB5B800BE9AF1B71A6 - 7E57AAE3FAB29F87D19451BC - 9DA0CBD43DA38386EB04C9AE - 0173A3F435DECD5A4DDE0B8E - 946187321200AC04E570E6EC - 36F0FF7F8D7342D220CC6319 - 45410DD818BB205166E67E89 - ECC34C470C60F0A2AE2761B1 - 8DB45DE3BD6BB97E34BDB411 - - isa - PBXGroup - name - flann - sourceTree - <group> - - D5A3AFF36064B2CACAD31716 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - composite_index.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann/composite_index.h - sourceTree - SOURCE_ROOT - - FB2852BC651C91987A1C26FB - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - scan.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/scan.hpp - sourceTree - SOURCE_ROOT - - 41E9090E543FC2D51BFD312C - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - warp_reduce.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/warp_reduce.hpp - sourceTree - SOURCE_ROOT - - 5105862F1606831E9239FEAF - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - simd_functions.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/simd_functions.hpp - sourceTree - SOURCE_ROOT - - 18E16A7CA55F6761C64833F7 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - vec_traits.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/vec_traits.hpp - sourceTree - SOURCE_ROOT - - 5A5CDEE1BFF097614562CD88 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - common.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/common.hpp - sourceTree - SOURCE_ROOT - - 0ADD044A3066779F3673F1FE - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - static_check.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/static_check.hpp - sourceTree - SOURCE_ROOT - - EBBA82550412B77EFA70AE87 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - funcattrib.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/funcattrib.hpp - sourceTree - SOURCE_ROOT - - 960BD311ABBA7D3299D7FE1F - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - datamov_utils.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/datamov_utils.hpp - sourceTree - SOURCE_ROOT - - FD2373742F56BFA0EF7FBF09 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - color.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/color.hpp - sourceTree - SOURCE_ROOT - - 6940F9A28CDC85ED7D1847C1 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - emulation.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/emulation.hpp - sourceTree - SOURCE_ROOT - - C4BA8097B54C90163F99F5C1 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - transform_detail.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail/transform_detail.hpp - sourceTree - SOURCE_ROOT - - E21FF871B93E31DA43FE7E42 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - vec_distance_detail.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail/vec_distance_detail.hpp - sourceTree - SOURCE_ROOT - - 2B75A06D9EF1817256BA26F6 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - type_traits_detail.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail/type_traits_detail.hpp - sourceTree - SOURCE_ROOT - - 37D155721DCC51F3D1DC2E02 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - color_detail.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail/color_detail.hpp - sourceTree - SOURCE_ROOT - - 417A0B7154103C22ECC253E8 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - reduce_key_val.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail/reduce_key_val.hpp - sourceTree - SOURCE_ROOT - - DF5D380A1A4583A1636503A6 - - children - - 1C490B8705672F1410388922 - 417A0B7154103C22ECC253E8 - 37D155721DCC51F3D1DC2E02 - 2B75A06D9EF1817256BA26F6 - E21FF871B93E31DA43FE7E42 - C4BA8097B54C90163F99F5C1 - - isa - PBXGroup - name - detail - sourceTree - <group> - - 1C490B8705672F1410388922 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - reduce.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail/reduce.hpp - sourceTree - SOURCE_ROOT - - A1E5C3C977BF213B183ABC28 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - block.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/block.hpp - sourceTree - SOURCE_ROOT - - 7D86D41170A02B361853AB73 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - vec_distance.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/vec_distance.hpp - sourceTree - SOURCE_ROOT - - AF7C3C8465AD112E066C67A7 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - type_traits.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/type_traits.hpp - sourceTree - SOURCE_ROOT - - 84238297E460936905B92D16 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - limits.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/limits.hpp - sourceTree - SOURCE_ROOT - - 3ADB4E06C4EDB97E020A778D - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - functional.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/functional.hpp - sourceTree - SOURCE_ROOT - - 1AD5FD8CB7EA240501080287 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - vec_math.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/vec_math.hpp - sourceTree - SOURCE_ROOT - - 35EEEA3F57EFB3D7DE4C0DED - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - saturate_cast.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/saturate_cast.hpp - sourceTree - SOURCE_ROOT - - A2C86A44C1FD1CB1DD189DFA - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - transform.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/transform.hpp - sourceTree - SOURCE_ROOT - - F38AB91361456BF84AB04DD1 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - border_interpolate.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/border_interpolate.hpp - sourceTree - SOURCE_ROOT - - 0339099A1F7B84040D88AD3C - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - warp_shuffle.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/warp_shuffle.hpp - sourceTree - SOURCE_ROOT - - 63152EF07846DECD2854B62C - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - utility.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/utility.hpp - sourceTree - SOURCE_ROOT - - B1DCC53B17C50537AACC8DF0 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - reduce.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/reduce.hpp - sourceTree - SOURCE_ROOT - - C362FD421E9C5E4962E410EB - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - dynamic_smem.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/dynamic_smem.hpp - sourceTree - SOURCE_ROOT - - F0FCA82EC2A69AEB3BA6AF38 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - filters.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/filters.hpp - sourceTree - SOURCE_ROOT - - C830064088936DB0F1158554 - - children - - 74889E354F64911B56A1CAD1 - F0FCA82EC2A69AEB3BA6AF38 - C362FD421E9C5E4962E410EB - B1DCC53B17C50537AACC8DF0 - 63152EF07846DECD2854B62C - 0339099A1F7B84040D88AD3C - F38AB91361456BF84AB04DD1 - A2C86A44C1FD1CB1DD189DFA - 35EEEA3F57EFB3D7DE4C0DED - 1AD5FD8CB7EA240501080287 - 3ADB4E06C4EDB97E020A778D - 84238297E460936905B92D16 - AF7C3C8465AD112E066C67A7 - 7D86D41170A02B361853AB73 - A1E5C3C977BF213B183ABC28 - DF5D380A1A4583A1636503A6 - 6940F9A28CDC85ED7D1847C1 - FD2373742F56BFA0EF7FBF09 - 960BD311ABBA7D3299D7FE1F - EBBA82550412B77EFA70AE87 - 0ADD044A3066779F3673F1FE - 5A5CDEE1BFF097614562CD88 - 18E16A7CA55F6761C64833F7 - 5105862F1606831E9239FEAF - 41E9090E543FC2D51BFD312C - FB2852BC651C91987A1C26FB - - isa - PBXGroup - name - device - sourceTree - <group> - - 74889E354F64911B56A1CAD1 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - warp.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/warp.hpp - sourceTree - SOURCE_ROOT - - D902EB2409214285BCF5F191 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - stream_accessor.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/stream_accessor.hpp - sourceTree - SOURCE_ROOT - - F886EBA3F8F05C7F74633933 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - devmem2d.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/devmem2d.hpp - sourceTree - SOURCE_ROOT - - E354468911BA093791076DD7 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - gpumat.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/gpumat.hpp - sourceTree - SOURCE_ROOT - - 5236346776DB8ECC4B121CA3 - - children - - AF9A155219FEDFA6E95454EA - E354468911BA093791076DD7 - F886EBA3F8F05C7F74633933 - D902EB2409214285BCF5F191 - C830064088936DB0F1158554 - - isa - PBXGroup - name - gpu - sourceTree - <group> - - AF9A155219FEDFA6E95454EA - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - gpu.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/gpu.hpp - sourceTree - SOURCE_ROOT - - 97FBD89E6180673035AD1083 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - video.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/video/video.hpp - sourceTree - SOURCE_ROOT - - 71C98C3F44D63B39F1482A54 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - background_segm.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/video/background_segm.hpp - sourceTree - SOURCE_ROOT - - C58CC92A5283B95AA31D50FB - - children - - E14D3EF03E140F5604900412 - 71C98C3F44D63B39F1482A54 - 97FBD89E6180673035AD1083 - - isa - PBXGroup - name - video - sourceTree - <group> - - E14D3EF03E140F5604900412 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - tracking.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/video/tracking.hpp - sourceTree - SOURCE_ROOT - - B09FCFF976DCEACB7C7C8D4E - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - optical_flow.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/superres/optical_flow.hpp - sourceTree - SOURCE_ROOT - - ED977EFE7B82B0D53CB5C778 - - children - - C65A89034372885C3F7259F5 - B09FCFF976DCEACB7C7C8D4E - - isa - PBXGroup - name - superres - sourceTree - <group> - - C65A89034372885C3F7259F5 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - superres.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/superres/superres.hpp - sourceTree - SOURCE_ROOT - - D078C50BFCDE342496B5D1F3 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - nonfree.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/nonfree/nonfree.hpp - sourceTree - SOURCE_ROOT - - B353080168DCA97D7DF8732F - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ocl.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/nonfree/ocl.hpp - sourceTree - SOURCE_ROOT - - C7178EBE5A9A3912E58D1F0F - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - features2d.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/nonfree/features2d.hpp - sourceTree - SOURCE_ROOT - - 7BC63C2C5B49F4CFBC87C288 - - children - - DA71BD3D5EB1A1F5E64B6751 - C7178EBE5A9A3912E58D1F0F - B353080168DCA97D7DF8732F - D078C50BFCDE342496B5D1F3 - - isa - PBXGroup - name - nonfree - sourceTree - <group> - - 0F07FE174552DEF007BF5AD5 - - children - - 7BC63C2C5B49F4CFBC87C288 - ED977EFE7B82B0D53CB5C778 - C58CC92A5283B95AA31D50FB - 5236346776DB8ECC4B121CA3 - 1E45F8C3CCFF6847BFF957AA - A5A3A2F98919E2243C73199C - AF43D9569510BEB0E2DFB944 - 9B7D592E7AB311451A27C46E - 3E44059DCBC2444D65660B9C - D0CAFE48EE488EEED9149670 - 961A625BD21068033782887C - 170C3384C93B182490DDC9CC - 0F288FD421D474F4AE2684D3 - 9C99831C330874C2B245AB48 - 86FEC009E2721D0FB23338D7 - 0478E60892BF4C0731AE0763 - 38D119387412EF71F9FAA033 - 9ABD8CF34D37FADFEB352B88 - 3B8F70BFDA30BBA2A5A060FC - 428EB732FD42504F37BCA78A - - isa - PBXGroup - name - opencv2 - sourceTree - <group> - - DA71BD3D5EB1A1F5E64B6751 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - gpu.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/nonfree/gpu.hpp - sourceTree - SOURCE_ROOT - - 319268D200F1BA567E4CCFF9 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cxeigen.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/cxeigen.hpp - sourceTree - SOURCE_ROOT - - 30884ECD9C171AB1B1BDFC3F - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cv.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/cv.hpp - sourceTree - SOURCE_ROOT - - 7C3D9C0EAC738ED2624D264B - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ml.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/ml.h - sourceTree - SOURCE_ROOT - - 7101CF2125B8B2BF46AA2662 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cxcore.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/cxcore.hpp - sourceTree - SOURCE_ROOT - - CF29BFB3FD3CAA54F336E6FD - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cvaux.hpp - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/cvaux.hpp - sourceTree - SOURCE_ROOT - - DB8653D6433E14BF06F3EFAF - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cvwimage.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/cvwimage.h - sourceTree - SOURCE_ROOT - - D76A59E7B3601E76351C9BDB - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cvaux.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/cvaux.h - sourceTree - SOURCE_ROOT - - B8427966039B53A0FE69C1F0 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cxcore.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/cxcore.h - sourceTree - SOURCE_ROOT - - E90542C149C83316678AB011 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cxmisc.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/cxmisc.h - sourceTree - SOURCE_ROOT - - 33FF03222909C1A0ECE43753 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - cv.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/cv.h - sourceTree - SOURCE_ROOT - - 737B033AA777B67BA4F8F4D2 - - children - - 9FF9126184DFBDE8A912373E - 33FF03222909C1A0ECE43753 - E90542C149C83316678AB011 - B8427966039B53A0FE69C1F0 - D76A59E7B3601E76351C9BDB - DB8653D6433E14BF06F3EFAF - CF29BFB3FD3CAA54F336E6FD - 7101CF2125B8B2BF46AA2662 - 7C3D9C0EAC738ED2624D264B - 30884ECD9C171AB1B1BDFC3F - 319268D200F1BA567E4CCFF9 - - isa - PBXGroup - name - opencv - sourceTree - <group> - - F9F05170CB9BDF47DA2B6E6A - - children - - 737B033AA777B67BA4F8F4D2 - 0F07FE174552DEF007BF5AD5 - - isa - PBXGroup - name - include - sourceTree - <group> - - AAA97F42C2FE4A31ECFD0585 - - children - - F9F05170CB9BDF47DA2B6E6A - - isa - PBXGroup - name - opencv - sourceTree - <group> - - DCC60D6724B56635AE867535 - - children - - AAA97F42C2FE4A31ECFD0585 - - isa - PBXGroup - name - libs - sourceTree - <group> - - 9FF9126184DFBDE8A912373E - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - highgui.h - path - ../../../addons/ofxOpenCv/libs/opencv/include/opencv/highgui.h - sourceTree - SOURCE_ROOT - - 516717F84C0146512C47A3EC - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvHaarFinder.h - path - ../../../addons/ofxOpenCv/src/ofxCvHaarFinder.h - sourceTree - SOURCE_ROOT - - D847EBE484F4F500F9CF2549 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvImage.h - path - ../../../addons/ofxOpenCv/src/ofxCvImage.h - sourceTree - SOURCE_ROOT - - 9A048549F08C6DFFA79E6DEF - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvGrayscaleImage.h - path - ../../../addons/ofxOpenCv/src/ofxCvGrayscaleImage.h - sourceTree - SOURCE_ROOT - - FB09C6B2A1DA0EA217240CB8 - - fileRef - 057122A817D12571F8C0C7A4 - isa - PBXBuildFile - - 057122A817D12571F8C0C7A4 - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvGrayscaleImage.cpp - path - ../../../addons/ofxOpenCv/src/ofxCvGrayscaleImage.cpp - sourceTree - SOURCE_ROOT - - 169D3C72FDE6C5590A1616F5 - - fileRef - 7B6A03390302D5A2C9F0E4AB - isa - PBXBuildFile - - 7B6A03390302D5A2C9F0E4AB - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvFloatImage.cpp - path - ../../../addons/ofxOpenCv/src/ofxCvFloatImage.cpp - sourceTree - SOURCE_ROOT - - F7269F96AC34A2B44A680D03 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvFloatImage.h - path - ../../../addons/ofxOpenCv/src/ofxCvFloatImage.h - sourceTree - SOURCE_ROOT - - 63020F16C7E8DED980111241 - - fileRef - C6151136D101F857DAE12722 - isa - PBXBuildFile - - C6151136D101F857DAE12722 - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvImage.cpp - path - ../../../addons/ofxOpenCv/src/ofxCvImage.cpp - sourceTree - SOURCE_ROOT - - E212C821D1064B92DD953A42 - - fileRef - 9A16CBF2E8CFE43AF54FE6F5 - isa - PBXBuildFile - - 9A16CBF2E8CFE43AF54FE6F5 - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvHaarFinder.cpp - path - ../../../addons/ofxOpenCv/src/ofxCvHaarFinder.cpp - sourceTree - SOURCE_ROOT - - 1D5F3298C2FA073628012944 - - fileRef - C76DE5C29BDBD2CAA1DD0021 - isa - PBXBuildFile - - C76DE5C29BDBD2CAA1DD0021 - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvContourFinder.cpp - path - ../../../addons/ofxOpenCv/src/ofxCvContourFinder.cpp - sourceTree - SOURCE_ROOT - - C1C56D20A1A57DC44096BFE7 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvContourFinder.h - path - ../../../addons/ofxOpenCv/src/ofxCvContourFinder.h - sourceTree - SOURCE_ROOT - - CE81A5E39EB3C871FDF3D4D5 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxOpenCv.h - path - ../../../addons/ofxOpenCv/src/ofxOpenCv.h - sourceTree - SOURCE_ROOT - - D5BB6F0357B6422E1B1656B4 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvColorImage.h - path - ../../../addons/ofxOpenCv/src/ofxCvColorImage.h - sourceTree - SOURCE_ROOT - - 603F2267D449084A4187A049 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvBlob.h - path - ../../../addons/ofxOpenCv/src/ofxCvBlob.h - sourceTree - SOURCE_ROOT - - 8E79CF8911DFABAFE23EA45B - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvConstants.h - path - ../../../addons/ofxOpenCv/src/ofxCvConstants.h - sourceTree - SOURCE_ROOT - - DEA2EDC0AFD59176FDEDC222 - - explicitFileType - sourcecode.c.h - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvShortImage.h - path - ../../../addons/ofxOpenCv/src/ofxCvShortImage.h - sourceTree - SOURCE_ROOT - - D3301F6A0B43BB293ED97C1D - - fileRef - 8A4DD23693DFAB8EC05FAA5D - isa - PBXBuildFile - - 8A4DD23693DFAB8EC05FAA5D - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvShortImage.cpp - path - ../../../addons/ofxOpenCv/src/ofxCvShortImage.cpp - sourceTree - SOURCE_ROOT - - C756CAAFD542831674E15FE6 - - children - - CE9C7160245B19131DAE6128 - 8A4DD23693DFAB8EC05FAA5D - DEA2EDC0AFD59176FDEDC222 - 8E79CF8911DFABAFE23EA45B - 603F2267D449084A4187A049 - D5BB6F0357B6422E1B1656B4 - CE81A5E39EB3C871FDF3D4D5 - C1C56D20A1A57DC44096BFE7 - C76DE5C29BDBD2CAA1DD0021 - 9A16CBF2E8CFE43AF54FE6F5 - C6151136D101F857DAE12722 - F7269F96AC34A2B44A680D03 - 7B6A03390302D5A2C9F0E4AB - 057122A817D12571F8C0C7A4 - 9A048549F08C6DFFA79E6DEF - D847EBE484F4F500F9CF2549 - 516717F84C0146512C47A3EC - - isa - PBXGroup - name - src - sourceTree - <group> - - A0B90D3B0ADB9C1716816714 - - children - - C756CAAFD542831674E15FE6 - DCC60D6724B56635AE867535 - - isa - PBXGroup - name - ofxOpenCv - sourceTree - <group> - - 250A95BA26587BE85DB0A353 - - fileRef - CE9C7160245B19131DAE6128 - isa - PBXBuildFile - - CE9C7160245B19131DAE6128 - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofxCvColorImage.cpp - path - ../../../addons/ofxOpenCv/src/ofxCvColorImage.cpp - sourceTree - SOURCE_ROOT - - 6948EE371B920CB800B5AC1A - - children - - isa - PBXGroup - name - local_addons - sourceTree - <group> - - BB4B014C10F69532006C3DED - - children - - A0B90D3B0ADB9C1716816714 - - isa - PBXGroup - name - addons - sourceTree - <group> - - E4328143138ABC890047C5CB - - isa - PBXFileReference - lastKnownFileType - wrapper.pb-project - name - openFrameworksLib.xcodeproj - path - ../../../libs/openFrameworksCompiled/project/osx/openFrameworksLib.xcodeproj - sourceTree - SOURCE_ROOT - - E4328144138ABC890047C5CB - - children - - E4328148138ABC890047C5CB - - isa - PBXGroup - name - Products - sourceTree - <group> - - E4328147138ABC890047C5CB - - containerPortal - E4328143138ABC890047C5CB - isa - PBXContainerItemProxy - proxyType - 2 - remoteGlobalIDString - E4B27C1510CBEB8E00536013 - remoteInfo - openFrameworks - - E4328148138ABC890047C5CB - - fileType - archive.ar - isa - PBXReferenceProxy - path - openFrameworksDebug.a - remoteRef - E4328147138ABC890047C5CB - sourceTree - BUILT_PRODUCTS_DIR - - E4328149138ABC9F0047C5CB - - fileRef - E4328148138ABC890047C5CB - isa - PBXBuildFile - - E4B69B4A0A3A1720003C02F2 - - children - - E4B6FCAD0C3E899E008CF71C - E4EB6923138AFD0F00A09F29 - E4B69E1C0A3A1BDC003C02F2 - E4EEC9E9138DF44700A80321 - BB4B014C10F69532006C3DED - 6948EE371B920CB800B5AC1A - E4B69B5B0A3A1756003C02F2 - - isa - PBXGroup - sourceTree - <group> - - E4B69B4C0A3A1720003C02F2 - - attributes - - LastUpgradeCheck - 0600 - - buildConfigurationList - E4B69B4D0A3A1720003C02F2 - compatibilityVersion - Xcode 3.2 - developmentRegion - English - hasScannedForEncodings - 0 - isa - PBXProject - knownRegions - - English - Japanese - French - German - - mainGroup - E4B69B4A0A3A1720003C02F2 - productRefGroup - E4B69B4A0A3A1720003C02F2 - projectDirPath - - projectReferences - - - ProductGroup - E4328144138ABC890047C5CB - ProjectRef - E4328143138ABC890047C5CB - - - projectRoot - - targets - - E4B69B5A0A3A1756003C02F2 - - - E4B69B4D0A3A1720003C02F2 - - buildConfigurations - - E4B69B4E0A3A1720003C02F2 - E4B69B4F0A3A1720003C02F2 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - E4B69B4E0A3A1720003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - OTHER_LDFLAGS - - $(OF_CORE_FRAMEWORKS) $(OF_CORE_LIBS) - ../../../addons/ofxOpenCv/libs/opencv/lib/osx/opencv.a - - HEADER_SEARCH_PATHS - - $(OF_CORE_HEADERS) - src - ../../../addons/ofxOpenCv/libs - ../../../addons/ofxOpenCv/libs/opencv - ../../../addons/ofxOpenCv/libs/opencv/include - ../../../addons/ofxOpenCv/libs/opencv/include/opencv - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2 - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/calib3d - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/contrib - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/features2d - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/highgui - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/imgproc - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/legacy - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ml - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/nonfree - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/objdetect - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/photo - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/superres - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ts - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/video - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab - ../../../addons/ofxOpenCv/libs/opencv/lib - ../../../addons/ofxOpenCv/libs/opencv/lib/emscripten - ../../../addons/ofxOpenCv/libs/opencv/lib/osx - ../../../addons/ofxOpenCv/libs/opencv/license - ../../../addons/ofxOpenCv/src - - CONFIGURATION_BUILD_DIR - $(SRCROOT)/bin/ - COPY_PHASE_STRIP - NO - DEAD_CODE_STRIPPING - YES - GCC_AUTO_VECTORIZATION - YES - GCC_ENABLE_SSE3_EXTENSIONS - YES - GCC_ENABLE_SUPPLEMENTAL_SSE3_INSTRUCTIONS - YES - GCC_INLINES_ARE_PRIVATE_EXTERN - NO - GCC_OPTIMIZATION_LEVEL - 0 - GCC_SYMBOLS_PRIVATE_EXTERN - NO - GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS - YES - GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO - NO - GCC_WARN_ALLOW_INCOMPLETE_PROTOCOL - NO - GCC_WARN_UNINITIALIZED_AUTOS - NO - GCC_WARN_UNUSED_VALUE - NO - GCC_WARN_UNUSED_VARIABLE - NO - MACOSX_DEPLOYMENT_TARGET - 10.8 - ONLY_ACTIVE_ARCH - YES - OTHER_CPLUSPLUSFLAGS - - -D__MACOSX_CORE__ - -mtune=native - - SDKROOT - macosx - - isa - XCBuildConfiguration - name - Debug - - E4B69B4F0A3A1720003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - OTHER_LDFLAGS - - $(OF_CORE_FRAMEWORKS) $(OF_CORE_LIBS) - ../../../addons/ofxOpenCv/libs/opencv/lib/osx/opencv.a - - HEADER_SEARCH_PATHS - - $(OF_CORE_HEADERS) - src - ../../../addons/ofxOpenCv/libs - ../../../addons/ofxOpenCv/libs/opencv - ../../../addons/ofxOpenCv/libs/opencv/include - ../../../addons/ofxOpenCv/libs/opencv/include/opencv - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2 - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/calib3d - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/contrib - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/features2d - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/highgui - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/imgproc - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/legacy - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ml - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/nonfree - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/objdetect - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/photo - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/superres - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ts - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/video - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab - ../../../addons/ofxOpenCv/libs/opencv/lib - ../../../addons/ofxOpenCv/libs/opencv/lib/emscripten - ../../../addons/ofxOpenCv/libs/opencv/lib/osx - ../../../addons/ofxOpenCv/libs/opencv/license - ../../../addons/ofxOpenCv/src - - CONFIGURATION_BUILD_DIR - $(SRCROOT)/bin/ - COPY_PHASE_STRIP - YES - DEAD_CODE_STRIPPING - YES - GCC_AUTO_VECTORIZATION - YES - GCC_ENABLE_SSE3_EXTENSIONS - YES - GCC_ENABLE_SUPPLEMENTAL_SSE3_INSTRUCTIONS - YES - GCC_INLINES_ARE_PRIVATE_EXTERN - NO - GCC_OPTIMIZATION_LEVEL - 3 - GCC_SYMBOLS_PRIVATE_EXTERN - NO - GCC_UNROLL_LOOPS - YES - GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS - YES - GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO - NO - GCC_WARN_ALLOW_INCOMPLETE_PROTOCOL - NO - GCC_WARN_UNINITIALIZED_AUTOS - NO - GCC_WARN_UNUSED_VALUE - NO - GCC_WARN_UNUSED_VARIABLE - NO - MACOSX_DEPLOYMENT_TARGET - 10.8 - OTHER_CPLUSPLUSFLAGS - - -D__MACOSX_CORE__ - -mtune=native - - SDKROOT - macosx - - isa - XCBuildConfiguration - name - Release - - E4B69B580A3A1756003C02F2 - - buildActionMask - 2147483647 - files - - E4B69E200A3A1BDC003C02F2 - E4B69E210A3A1BDC003C02F2 - 250A95BA26587BE85DB0A353 - D3301F6A0B43BB293ED97C1D - 1D5F3298C2FA073628012944 - E212C821D1064B92DD953A42 - 63020F16C7E8DED980111241 - 169D3C72FDE6C5590A1616F5 - FB09C6B2A1DA0EA217240CB8 - - isa - PBXSourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - E4B69B590A3A1756003C02F2 - - buildActionMask - 2147483647 - files - - E4328149138ABC9F0047C5CB - - isa - PBXFrameworksBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - E4B69B5A0A3A1756003C02F2 - - buildConfigurationList - E4B69B5F0A3A1757003C02F2 - buildPhases - - E4B69B580A3A1756003C02F2 - E4B69B590A3A1756003C02F2 - E4B6FFFD0C3F9AB9008CF71C - E4C2427710CC5ABF004149E2 - - buildRules - - dependencies - - E4EEB9AC138B136A00A80321 - - isa - PBXNativeTarget - name - opencvExampleDrawing - productName - myOFApp - productReference - E4B69B5B0A3A1756003C02F2 - productType - com.apple.product-type.application - - E4B69B5B0A3A1756003C02F2 - - explicitFileType - wrapper.application - includeInIndex - 0 - isa - PBXFileReference - path - opencvExampleDrawingDebug.app - sourceTree - BUILT_PRODUCTS_DIR - - E4B69B5F0A3A1757003C02F2 - - buildConfigurations - - E4B69B600A3A1757003C02F2 - E4B69B610A3A1757003C02F2 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - E4B69B600A3A1757003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - OTHER_LDFLAGS - - $(OF_CORE_FRAMEWORKS) $(OF_CORE_LIBS) - ../../../addons/ofxOpenCv/libs/opencv/lib/osx/opencv.a - - HEADER_SEARCH_PATHS - - $(OF_CORE_HEADERS) - src - ../../../addons/ofxOpenCv/libs - ../../../addons/ofxOpenCv/libs/opencv - ../../../addons/ofxOpenCv/libs/opencv/include - ../../../addons/ofxOpenCv/libs/opencv/include/opencv - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2 - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/calib3d - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/contrib - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/features2d - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/highgui - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/imgproc - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/legacy - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ml - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/nonfree - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/objdetect - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/photo - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/superres - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ts - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/video - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab - ../../../addons/ofxOpenCv/libs/opencv/lib - ../../../addons/ofxOpenCv/libs/opencv/lib/emscripten - ../../../addons/ofxOpenCv/libs/opencv/lib/osx - ../../../addons/ofxOpenCv/libs/opencv/license - ../../../addons/ofxOpenCv/src - - COMBINE_HIDPI_IMAGES - YES - COPY_PHASE_STRIP - NO - FRAMEWORK_SEARCH_PATHS - - $(inherited) - $(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1) - - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 - "$(SRCROOT)/../../../libs/glut/lib/osx" - GCC_DYNAMIC_NO_PIC - NO - GCC_GENERATE_DEBUGGING_SYMBOLS - YES - GCC_MODEL_TUNING - NONE - ICON - $(ICON_NAME_DEBUG) - ICON_FILE - $(ICON_FILE_PATH)$(ICON) - INFOPLIST_FILE - openFrameworks-Info.plist - INSTALL_PATH - /Applications - LIBRARY_SEARCH_PATHS - $(inherited) - PRODUCT_NAME - $(TARGET_NAME)Debug - WRAPPER_EXTENSION - app - - isa - XCBuildConfiguration - name - Debug - - E4B69B610A3A1757003C02F2 - - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - buildSettings - - OTHER_LDFLAGS - - $(OF_CORE_FRAMEWORKS) $(OF_CORE_LIBS) - ../../../addons/ofxOpenCv/libs/opencv/lib/osx/opencv.a - - HEADER_SEARCH_PATHS - - $(OF_CORE_HEADERS) - src - ../../../addons/ofxOpenCv/libs - ../../../addons/ofxOpenCv/libs/opencv - ../../../addons/ofxOpenCv/libs/opencv/include - ../../../addons/ofxOpenCv/libs/opencv/include/opencv - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2 - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/calib3d - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/contrib - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/core - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/features2d - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/flann - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/gpu/device/detail - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/highgui - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/imgproc - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/legacy - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ml - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/nonfree - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/objdetect - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/photo - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/stitching/detail - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/superres - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/ts - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/video - ../../../addons/ofxOpenCv/libs/opencv/include/opencv2/videostab - ../../../addons/ofxOpenCv/libs/opencv/lib - ../../../addons/ofxOpenCv/libs/opencv/lib/emscripten - ../../../addons/ofxOpenCv/libs/opencv/lib/osx - ../../../addons/ofxOpenCv/libs/opencv/license - ../../../addons/ofxOpenCv/src - - COMBINE_HIDPI_IMAGES - YES - COPY_PHASE_STRIP - YES - FRAMEWORK_SEARCH_PATHS - - $(inherited) - $(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1) - - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 - "$(SRCROOT)/../../../libs/glut/lib/osx" - GCC_GENERATE_DEBUGGING_SYMBOLS - YES - GCC_MODEL_TUNING - NONE - ICON - $(ICON_NAME_RELEASE) - ICON_FILE - $(ICON_FILE_PATH)$(ICON) - INFOPLIST_FILE - openFrameworks-Info.plist - INSTALL_PATH - /Applications - LIBRARY_SEARCH_PATHS - $(inherited) - PRODUCT_NAME - $(TARGET_NAME) - WRAPPER_EXTENSION - app - baseConfigurationReference - E4EB6923138AFD0F00A09F29 - - isa - XCBuildConfiguration - name - Release - - E4B69E1C0A3A1BDC003C02F2 - - children - - E4B69E1D0A3A1BDC003C02F2 - E4B69E1E0A3A1BDC003C02F2 - E4B69E1F0A3A1BDC003C02F2 - - isa - PBXGroup - path - src - sourceTree - SOURCE_ROOT - - E4B69E1D0A3A1BDC003C02F2 - - fileEncoding - 30 - isa - PBXFileReference - lastKnownFileType - sourcecode.cpp.cpp - name - main.cpp - path - src/main.cpp - sourceTree - SOURCE_ROOT - - E4B69E1E0A3A1BDC003C02F2 - - explicitFileType - sourcecode.cpp.cpp - fileEncoding - 30 - isa - PBXFileReference - name - ofApp.cpp - path - src/ofApp.cpp - sourceTree - SOURCE_ROOT - - E4B69E1F0A3A1BDC003C02F2 - - fileEncoding - 30 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - name - ofApp.h - path - src/ofApp.h - sourceTree - SOURCE_ROOT - - E4B69E200A3A1BDC003C02F2 - - fileRef - E4B69E1D0A3A1BDC003C02F2 - isa - PBXBuildFile - - E4B69E210A3A1BDC003C02F2 - - fileRef - E4B69E1E0A3A1BDC003C02F2 - isa - PBXBuildFile - - E4B6FCAD0C3E899E008CF71C - - fileEncoding - 30 - isa - PBXFileReference - lastKnownFileType - text.plist.xml - path - openFrameworks-Info.plist - sourceTree - <group> - - E4B6FFFD0C3F9AB9008CF71C - - buildActionMask - 2147483647 - files - - inputPaths - - isa - PBXShellScriptBuildPhase - outputPaths - - runOnlyForDeploymentPostprocessing - 0 - shellPath - /bin/sh - shellScript - mkdir -p "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Resources/" -# Copy default icon file into App/Resources -rsync -aved "$ICON_FILE" "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Resources/" -# Copy libfmod and change install directory for fmod to run -rsync -aved ../../../libs/fmodex/lib/osx/libfmodex.dylib "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Frameworks/"; -install_name_tool -change @executable_path/libfmodex.dylib @executable_path/../Frameworks/libfmodex.dylib "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/MacOS/$PRODUCT_NAME"; -# Copy GLUT framework (must remove for AppStore submissions) -rsync -aved ../../../libs/glut/lib/osx/GLUT.framework "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Frameworks/" - - - E4C2427710CC5ABF004149E2 - - buildActionMask - 2147483647 - dstPath - - dstSubfolderSpec - 10 - files - - isa - PBXCopyFilesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - E4EB691F138AFCF100A09F29 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - name - CoreOF.xcconfig - path - ../../../libs/openFrameworksCompiled/project/osx/CoreOF.xcconfig - sourceTree - SOURCE_ROOT - - E4EB6923138AFD0F00A09F29 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - path - Project.xcconfig - sourceTree - <group> - - E4EEB9AB138B136A00A80321 - - containerPortal - E4328143138ABC890047C5CB - isa - PBXContainerItemProxy - proxyType - 1 - remoteGlobalIDString - E4B27C1410CBEB8E00536013 - remoteInfo - openFrameworks - - E4EEB9AC138B136A00A80321 - - isa - PBXTargetDependency - name - openFrameworks - targetProxy - E4EEB9AB138B136A00A80321 - - E4EEC9E9138DF44700A80321 - - children - - E4EB691F138AFCF100A09F29 - E4328143138ABC890047C5CB - - isa - PBXGroup - name - openFrameworks - sourceTree - <group> - - - rootObject - E4B69B4C0A3A1720003C02F2 - - diff --git a/opencvExampleDrawing/opencvExampleDrawing.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/opencvExampleDrawing/opencvExampleDrawing.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 919434a..0000000 --- a/opencvExampleDrawing/opencvExampleDrawing.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/opencvExampleDrawing/opencvExampleDrawing.xcodeproj/project.xcworkspace/xcuserdata/kevinsiwoff.xcuserdatad/UserInterfaceState.xcuserstate b/opencvExampleDrawing/opencvExampleDrawing.xcodeproj/project.xcworkspace/xcuserdata/kevinsiwoff.xcuserdatad/UserInterfaceState.xcuserstate deleted file mode 100644 index c8d383d..0000000 Binary files a/opencvExampleDrawing/opencvExampleDrawing.xcodeproj/project.xcworkspace/xcuserdata/kevinsiwoff.xcuserdatad/UserInterfaceState.xcuserstate and /dev/null differ diff --git a/opencvExampleDrawing/opencvExampleDrawing.xcodeproj/xcshareddata/xcschemes/opencvExampleDrawing Debug.xcscheme b/opencvExampleDrawing/opencvExampleDrawing.xcodeproj/xcshareddata/xcschemes/opencvExampleDrawing Debug.xcscheme deleted file mode 100644 index 0feddc7..0000000 --- a/opencvExampleDrawing/opencvExampleDrawing.xcodeproj/xcshareddata/xcschemes/opencvExampleDrawing Debug.xcscheme +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/opencvExampleDrawing/opencvExampleDrawing.xcodeproj/xcshareddata/xcschemes/opencvExampleDrawing Release.xcscheme b/opencvExampleDrawing/opencvExampleDrawing.xcodeproj/xcshareddata/xcschemes/opencvExampleDrawing Release.xcscheme deleted file mode 100644 index cba9b63..0000000 --- a/opencvExampleDrawing/opencvExampleDrawing.xcodeproj/xcshareddata/xcschemes/opencvExampleDrawing Release.xcscheme +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/opencvExampleDrawing/opencvExampleDrawing.xcodeproj/xcuserdata/kevinsiwoff.xcuserdatad/xcschemes/xcschememanagement.plist b/opencvExampleDrawing/opencvExampleDrawing.xcodeproj/xcuserdata/kevinsiwoff.xcuserdatad/xcschemes/xcschememanagement.plist deleted file mode 100644 index 25e30f1..0000000 --- a/opencvExampleDrawing/opencvExampleDrawing.xcodeproj/xcuserdata/kevinsiwoff.xcuserdatad/xcschemes/xcschememanagement.plist +++ /dev/null @@ -1,19 +0,0 @@ - - - - - SchemeUserState - - opencvExampleDrawing Debug.xcscheme_^#shared#^_ - - orderHint - 0 - - opencvExampleDrawing Release.xcscheme_^#shared#^_ - - orderHint - 1 - - - - diff --git a/opencvExampleDrawing/src/main.cpp b/opencvExampleDrawing/src/main.cpp deleted file mode 100644 index 8bce185..0000000 --- a/opencvExampleDrawing/src/main.cpp +++ /dev/null @@ -1,14 +0,0 @@ -#include "ofMain.h" -#include "ofApp.h" - -//======================================================================== -int main( ){ - - ofSetupOpenGL(1024,768, OF_WINDOW); // <-------- setup the GL context - - // this kicks off the running of my app - // can be OF_WINDOW or OF_FULLSCREEN - // pass in width and height too: - ofRunApp( new ofApp()); - -} diff --git a/opencvExampleDrawing/src/ofApp.cpp b/opencvExampleDrawing/src/ofApp.cpp deleted file mode 100644 index 4221920..0000000 --- a/opencvExampleDrawing/src/ofApp.cpp +++ /dev/null @@ -1,140 +0,0 @@ -#include "ofApp.h" - -//-------------------------------------------------------------- -void ofApp::setup(){ - - - vidPlayer.load("fingers.mov"); - vidPlayer.play(); - vidPlayer.setLoopState(OF_LOOP_NORMAL); - - colorImg.allocate(320,240); - grayImage.allocate(320,240); - grayBg.allocate(320,240); - grayDiff.allocate(320,240); - - bLearnBakground = true; - threshold = 80; - ofSetBackgroundAuto(false); -} - -//-------------------------------------------------------------- -void ofApp::update(){ - //ofBackground(100,100,100); - - bool bNewFrame = false; - - - vidPlayer.update(); - bNewFrame = vidPlayer.isFrameNew(); - - if (bNewFrame){ - - - colorImg.setFromPixels(vidPlayer.getPixels()); - - grayImage = colorImg; - if (bLearnBakground == true){ - grayBg = grayImage; // the = sign copys the pixels from grayImage into grayBg (operator overloading) - bLearnBakground = false; - } - - // take the abs value of the difference between background and incoming and then threshold: - grayDiff.absDiff(grayBg, grayImage); - grayDiff.threshold(threshold); - - // find contours which are between the size of 20 pixels and 1/3 the w*h pixels. - // also, find holes is set to true so we will get interior contours as well.... - contourFinder.findContours(grayDiff, 20, (340*240)/3, 10, true); // find holes - } - -} - -//-------------------------------------------------------------- -void ofApp::draw(){ - - // draw the incoming video image - ofSetHexColor(0xffffff); - ofPushMatrix(); - ofTranslate(ofGetWidth()/2 - colorImg.getWidth()/2,ofGetHeight()/2 - colorImg.getHeight()/2); - if(bShowVideo){ - colorImg.draw(0,0); - } - for (int i = 0; i < contourFinder.nBlobs; i++){ - ofSetColor(ofColor::fuchsia); - ofFill(); - ofDrawEllipse(contourFinder.blobs[i].boundingRect.getCenter(), 20,20); - } - ofPopMatrix(); - - ofDrawBitmapString("Press 'v' to toggle video and path drawing", ofGetWidth()/2.0, ofGetHeight()-100.0); -} - -//-------------------------------------------------------------- -void ofApp::keyPressed(int key){ - - switch (key){ - case 'v': - ofBackground(ofColor::white); - bShowVideo = !bShowVideo; - break; - case '+': - threshold ++; - if (threshold > 255) threshold = 255; - break; - case '-': - threshold --; - if (threshold < 0) threshold = 0; - break; - } -} - -//-------------------------------------------------------------- -void ofApp::keyReleased(int key){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseMoved(int x, int y ){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseDragged(int x, int y, int button){ - -} - -//-------------------------------------------------------------- -void ofApp::mousePressed(int x, int y, int button){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseReleased(int x, int y, int button){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseEntered(int x, int y){ - -} - -//-------------------------------------------------------------- -void ofApp::mouseExited(int x, int y){ - -} - -//-------------------------------------------------------------- -void ofApp::windowResized(int w, int h){ - -} - -//-------------------------------------------------------------- -void ofApp::gotMessage(ofMessage msg){ - -} - -//-------------------------------------------------------------- -void ofApp::dragEvent(ofDragInfo dragInfo){ - -} diff --git a/opencvExampleDrawing/src/ofApp.h b/opencvExampleDrawing/src/ofApp.h deleted file mode 100644 index 4f0d91a..0000000 --- a/opencvExampleDrawing/src/ofApp.h +++ /dev/null @@ -1,49 +0,0 @@ -#pragma once - -#include "ofMain.h" - -#include "ofxOpenCv.h" - -//#define _USE_LIVE_VIDEO // uncomment this to use a live camera - // otherwise, we'll use a movie file - -class ofApp : public ofBaseApp{ - - public: - void setup(); - void update(); - void draw(); - - void keyPressed(int key); - void keyReleased(int key); - void mouseMoved(int x, int y ); - void mouseDragged(int x, int y, int button); - void mousePressed(int x, int y, int button); - void mouseReleased(int x, int y, int button); - void mouseEntered(int x, int y); - void mouseExited(int x, int y); - void windowResized(int w, int h); - void dragEvent(ofDragInfo dragInfo); - void gotMessage(ofMessage msg); - - #ifdef _USE_LIVE_VIDEO - ofVideoGrabber vidGrabber; - #else - ofVideoPlayer vidPlayer; - #endif - - ofxCvColorImage colorImg; - - ofxCvGrayscaleImage grayImage; - ofxCvGrayscaleImage grayBg; - ofxCvGrayscaleImage grayDiff; - - ofxCvContourFinder contourFinder; - - int threshold; - bool bLearnBakground; - bool bShowVideo = true; - - -}; -