I hereby claim:
- I am bakercp on github.
- I am bakercp (https://keybase.io/bakercp) on keybase.
- I have a public key ASBZ3ejlA1s6ZG2RwP0zvfscT3WosEMIhaU7j_cR26xQmwo
To claim this, I am signing this object:
| To Install: | |
| - Download 0.8.3 or use the 0.8.3 tag on master. | |
| - Install dependencies. | |
| - Copy config.linuxarmv7l.udoo.mk into $OF_ROOT/libs/openFrameworksCompiled/project/linuxarmv7l | |
| - Go to example project. | |
| To Prep: | |
| $ export MAKEFLAGS="-j4 -s PLATFORM_VARIANT=udoo" |
| import processing.serial.*; | |
| import java.text.SimpleDateFormat; | |
| import java.util.Date; | |
| Serial myPort; | |
| int lineFeedChar = 10; | |
| String lastRow = ""; | |
| int currentY = 0; |
I hereby claim:
To claim this, I am signing this object:
| // | |
| // Copyright (c) 2017 Christopher Baker <https://christopherbaker.net> | |
| // | |
| // SPDX-License-Identifier: MIT | |
| // | |
| #include "ConvexHull.h" | |
| #include <dlib/image_io.h> | |
| #include <dlib/image_transforms.h> | |
| using namespace std; | |
| using namespace dlib; | |
| int main(int argc, char** argv) | |
| { |
| // Control PWM via a transistor. | |
| class MotorController | |
| { | |
| public: | |
| MotorController(int motorPin) | |
| { | |
| pin = motorPin; | |
| startTime = endTime = millis(); |
| #!/bin/bash -e | |
| # | |
| # Copyright (c) 2012-2013 Robert Nelson <robertcnelson@gmail.com> | |
| # | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy | |
| # of this software and associated documentation files (the "Software"), to deal | |
| # in the Software without restriction, including without limitation the rights | |
| # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| # copies of the Software, and to permit persons to whom the Software is | |
| # furnished to do so, subject to the following conditions: |
Examples here use the default settings, see the VidStab readme on GitHub for more advanced instructions.
Here's an example video I made
brew install ffmpeg --with-libvidstab
This line chart is constructed from a TSV file storing the daily average temperatures of New York, San Francisco and Austin over the last year. The chart employs conventional margins and a number of D3 features:
| // in your .h file | |
| ofTrueTypeFont font; | |
| /// in your cpp file | |
| // we load our font with contours (see the docs for more info on the args) | |
| font.loadFont("verdana.ttf", 50, true, true, true); | |
| vector<ofPath> paths = font.getStringAsPoints("hello"); |