This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <opencv2/opencv.hpp> | |
using namespace std; | |
using namespace cv; | |
#ifdef _DEBUG | |
#pragma comment(lib, "E:\\opencv300\\build\\x86\\vc11\\lib\\opencv_world300d.lib") | |
#else | |
#pragma comment(lib, "E:\\opencv300\\build\\x86\\vc11\\lib\\opencv_world300.lib") | |
#endif |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "opencv2/opencv.hpp" | |
#include "opencv2/nonfree/nonfree.hpp" | |
//http://blog.livedoor.jp/hen_cyberne/archives/51072839.html | |
//http://whoopsidaisies.hatenablog.com/entry/2013/12/07/135810 | |
using namespace cv; | |
using namespace std; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "opencv2/opencv.hpp" | |
#include <omp.h> | |
using namespace cv; | |
#if _DEBUG | |
#pragma comment(lib, "opencv_core248d.lib") | |
#pragma comment(lib, "opencv_highgui248d.lib") | |
#pragma comment(lib, "opencv_imgproc248d.lib") | |
#pragma comment(lib, "opencv_contrib248d.lib") | |
#else |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "stdafx.h" | |
#include "GigECameraCap.h" | |
#include "opencv2/opencv.hpp" | |
#ifdef _DEBUG | |
#pragma comment(lib, "FlyCapture2d.lib") | |
#pragma comment(lib, "opencv_core248d.lib") | |
#pragma comment(lib, "opencv_highgui248d.lib") | |
#else |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "stdafx.h" | |
#include "GigECameraCap.h" | |
using namespace FlyCapture2; | |
using namespace cv; | |
using namespace std; | |
void PrintBuildInfo() | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef __GIGE_CAMERA_CAP_H__ | |
#define __GIGE_CAMERA_CAP_H__ | |
#include "FlyCapture2.h" | |
#include "opencv2\\opencv.hpp" | |
void PrintBuildInfo(); | |
void PrintCameraInfo( FlyCapture2::CameraInfo* pCamInfo ); | |
void PrintStreamChannelInfo( FlyCapture2::GigEStreamChannel* pStreamChannel ); | |
void PrintError( FlyCapture2::Error error ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
// ofDevCon | |
// Written by Anton Marini (http://vade.info) | |
// With massive help from Memo Akten for GL optimizing and pushing this faster than I expected | |
// Kyle McDonald and Arturo Castro for C++ nuances | |
// Lukasz Karluk additions Dec 2012. | |
// TODO: | |
// 1) Path issues - not all models: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "ofxAssimpModelLoader.h" | |
#include "ofxAssimpUtils.h" | |
#include "assimp.h" | |
#include "aiScene.h" | |
#include "aiConfig.h" | |
#include "aiPostProcess.h" | |
ofxAssimpModelLoader::ofxAssimpModelLoader(){ | |
scene = NULL; |
NewerOlder