This file contains 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
"cv::BriefDescriptorExtractor::BriefDescriptorExtractor(int)", referenced from: | |
"vtable for cv::BriefDescriptorExtractor", referenced from: | |
"cv::FeatureDetector::~FeatureDetector()", referenced from: | |
"cv::FlannBasedMatcher::FlannBasedMatcher(cv::Ptr<cv::flann::IndexParams> const&, cv::Ptr<cv::flann::SearchParams> const&)", referenced from: | |
"VTT for cv::FastFeatureDetector", referenced from: |
This file contains 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
Undefined symbols for architecture armv7: | |
"cinder::Timeline::Timeline()", referenced from: | |
cinder::Timeline::create() in libcinder-iphone_d.a(libcinder-iphone_d.a-armv7-master.o) | |
"cinder::Timeline::stepTo(float)", referenced from: | |
cinder::app::App::privateSetup__() in libcinder-iphone_d.a(libcinder-iphone_d.a-armv7-master.o) | |
cinder::app::App::privateUpdate__() in libcinder-iphone_d.a(libcinder-iphone_d.a-armv7-master.o) | |
ld: symbol(s) not found for architecture armv7 | |
collect2: ld returned 1 exit status |
This file contains 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
int currentIndex; | |
boolean hasBB; | |
PImage currentImage; | |
// we'll have a look in the data folder | |
String absolutePath = "path/to/images"; | |
java.io.File folder = new java.io.File(absolutePath); | |
ArrayList<String> bbOutput; |
This file contains 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 <boost/filesystem/operations.hpp> | |
#include <boost/filesystem/fstream.hpp> | |
#include <boost/foreach.hpp> | |
#include <omp.h> | |
#include "CinderOpenCV.h" | |
using namespace boost::filesystem; |
This file contains 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
//Processing | |
dev.write('x'); | |
dev.write(r, INT); | |
dev.write(g, INT); | |
dev.write(b, INT); | |
//Arduino |
This file contains 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
import ketai.sensors.*; | |
import android.content.Context; | |
import android.hardware.SensorManager; | |
import android.os.Environment; | |
import java.io.File; | |
ArrayList<String> logString; | |
KetaiSensor sensor; | |
float[] accelerometer = new float[3]; |
This file contains 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
import android.media.AudioRecord; | |
import android.media.AudioFormat; | |
import android.media.MediaRecorder; | |
final int RECORDER_SAMPLERATE = 44100; | |
final int RECORDER_CHANNELS = AudioFormat.CHANNEL_IN_MONO; | |
final int RECORDER_AUDIO_ENCODING = AudioFormat.ENCODING_PCM_16BIT; | |
short[] buffer = null; | |
AudioRecord audioRecord = null; |
This file contains 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
import android.media.MediaRecorder; | |
import android.media.MediaPlayer; | |
import android.os.Environment; | |
import android.content.Context; | |
import java.io.IOException; | |
import ketai.ui.*; | |
MediaRecorder mRecorder = null; |
This file contains 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 "cinder/app/AppBasic.h" | |
#include "cinder/gl/gl.h" | |
#include "cinder/gl/Texture.h" | |
#include "cinder/Capture.h" | |
#include <boost/filesystem/operations.hpp> | |
#include <boost/filesystem/fstream.hpp> | |
#include <boost/foreach.hpp> | |
#include <stdio.h> |
This file contains 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
ofMaterial m; | |
m.setSpecular(ofColor(1, 1, 0, 1)); | |
m.setEmissive(ofColor(0.1, 0.1, 0.1, 1)); | |
m.setAmbient(ofColor(1, 1, 0, 1)); | |
m.setDiffuse(ofColor(1, 1, 0, 1)); | |
ofSpherePrimitive p; | |
p.scale(100); | |
// need to have material per vertex as an attribute to be able to set multiple materials in the |
OlderNewer