{

  https://openframeworks.cc/zh_cn//download/

}

0.10.1

是最新发布的版本。 这个版本是修改了一些BUG的小版本,与版本 0.10.1100%兼容而且与新版本也兼容。 查看 变化日志,看看与之前版本的变化

To use openFrameworks you will need an IDE, and the setup guide for your platform can walk you through this. Please post any bugs on the issues page, and post to the forum if you have any other questions. openFrameworks is distributed under the MIT License.

osx

下载
openFrameworks

osx

安装指南

xcode

qt creator (experimental)

emscripten

linux

下载
openFrameworks

linux gcc6 or later

linux gcc5 /
linux gcc4

安装指南

linux install

qt creator

emscripten

windows

下载
openFrameworks

visual studio (2017)

qt creator / msys2

安装指南

visual studio

qt creator

msys2

mobile

手机端openFrameworks与桌面版功能一样,在此基础上添加了加速计、指南针、GPS等手机特性功能

ios

osx only

下载
openFrameworks

xcode

安装指南

xcode

android

下载
openFrameworks

android

安装指南

android studio

linux arm

openFrameworks for arm boards running linux like Raspberry Pi, Beaglebone (black), Pandaboard, BeagleBoard and others.
We have setup guides for some of the most common boards but it should work on any armv6 and armv7 board.

linux armv6

下载
openFrameworks

linux armv6

安装指南

raspberry pi

linux armv7

下载
openFrameworks

linux armv7

安装指南

pandaboard

generic armv7

We release openFrameworks as an uncompiled library. This means that
when you download and unzip openFrameworks, you will see the following
folders: 'addons/', 'apps/', 'libs/', and a few more. These folders
contain openFrameworks completely, so if you want to keep multiple
versions of openFrameworks on your computer you should just create
multiple folders. For example, one `of_v0.10.1_osx_release/` folder and
one `of_v0.10.0_osx_release/` folder, each with their own `apps/`
folder. Even when new versions of openFrameworks are released, your old
apps will still compile with old versions of openFrameworks.

The
examples folder is a great place to start. Inside examples you'll find a
variety of examples that show what is possible with openFrameworks.
They demonstrate font loading, graphics, audio input and output, sound
file playback and FFT analysis, video grabbing, movie playing, image
loading and saving, event handling, serial communication, and much more.

openFrameworks Download的更多相关文章

  1. csharp: Download SVN source

    using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; usin ...

  2. Unable to download data from http://ruby.taobao.org/ & don't have write permissions for the /Library/Ruby/Gems/2.0.0 directory.

    安装cocoapods,记录两个问题! 1.镜像已经替换成了 http://ruby.taobao.org/, 还是不能不能安装cocoapods, 报错:Unable to download dat ...

  3. MDK st-link下载STM32程序出现Internal command error和Error:Flash download failed. Target DLL

    MDK st-link下载STM32程序出现Internal command error和Error:Flash download failed. Target DLL   是因为目标板的芯片处于休眠 ...

  4. kailli linux download

    https://www.offensive-security.com/kali-linux-arm-images/ Courses Certifications Online Labs Penetra ...

  5. Download Excel file with Angular

    源码连接(编写中) 用Angular下载后台返回的Excel文件,用Blob实现,引用FileSaver.js 后台C#代码: [WebMethod] public static byte[] Cal ...

  6. http://www.microsoft.com/en-pk/download/details.aspx?id=40762

    http://www.microsoft.com/en-pk/download/details.aspx?id=40762

  7. [已解决]从微软合作伙伴资源和MSDN下载系统和软件Microsoft download Manager无效

    有个itellyou,更新了所有MSDN的软件包.如果自己有微软的注册账户,还是从微软官网下载比较好.而且对自己账户里的系统和itellyou里的做了对比.发现SHA1码不相同,估计官方分配的序列号也 ...

  8. Error:Flash Download Failed-"Cortex-M3"

    Error:Flash Download Failed-"Cortex-M3"出现一般有两种情况: 1.SWD模式下,Debug菜单中,Reset菜单选项(Autodetect/H ...

  9. cosbench read异常解决办法。 Unable to verify integrity of data download. Client calculated content hash didn't match hash calculated by Amazon S3. The data may be corrupt.

    问题:cosbench read测试failed 报错如下 Cosbench v0.4.2.c4 against Ceph (Hammer) / radosgw / HAproxy's HTTP en ...

随机推荐

  1. 深度学习练手项目——DNN识别手写数字

    该案例主要目的是为了熟悉Keras基本用法,以及了解DNN基本流程. 示例代码: import numpy as np import matplotlib.pyplot as plt from ker ...

  2. SpringBoot2.0总结

    与SpringCloud关系 与SpringMVC关系 与JFinal区别 常用注解: @RestController  @EnableAutoConfiguration   @ComponentSc ...

  3. java基础学习笔记三(多态)

    多态? 多态是同一个行为具有多个不同表现形式或形态的能力. 存在的必要条件 继承 重写 父类引用指向子类对象 比如: Parent p = new Child(); 当使用多态方式调用方法时,首先检查 ...

  4. UVa 548 Tree (建树+前序后序)

    Description You are to determine the value of the leaf node in a given binary tree that is the termi ...

  5. k8s pod,pvc,pv无法删除问题

    注意步骤: 一般删除步骤为:先删pod再删pvc最后删pv 但是遇到pv始终处于“Terminating”状态,而且delete不掉 pod一直删不掉 [root@hadoop01 nacos-k8s ...

  6. BZOJ 1778: [Usaco2010 Hol]Dotp 驱逐猪猡(高斯消元+期望dp)

    传送门 解题思路 设\(f(x)\)表示到\(x\)这个点的期望次数,那么转移方程为\(f(x)=\sum\frac{f(u)*(1 - \frac{p}{q})}{deg(u)}\),其中\(u\) ...

  7. MVC MVC3中 ViewBag、ViewData和TempData的使用和区别 【转】

    在MVC3开始,视图数据可以通过ViewBag属性访问,在MVC2中则是使用ViewData.MVC3中保留了ViewData的使用.ViewBag 是动态类型(dynamic),ViewData 是 ...

  8. python join函数

    join()函数 语法:  'sep'.join(seq) 参数说明sep:分隔符.可以为空seq:要连接的元素序列.字符串.元组.字典上面的语法即:以sep作为分隔符,将seq所有的元素合并成一个新 ...

  9. 78、tensorflow滑动平均模型,用来更新迭代的衰减系数

    ''' Created on 2017年4月21日 @author: weizhen ''' #4.滑动平均模型 import tensorflow as tf #定义一个变量用于计算滑动平均,这个变 ...

  10. 6、基于highcharts实现的线性拟合,计算部分在java中实现,画的是正态概率图

    1.坐标点类 package cn.test.domain; public class Point { double x; double y; public Point(){ } public Poi ...