本文整理汇总了C++中ofFloatImage::setFromPixels方法的典型用法代码示例。如果您正苦于以下问题:C++ ofFloatImage::setFromPixels方法的具体用法?C++ ofFloatImage::setFromPixels怎么用?C++ ofFloatImage::setFromPixels使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ofFloatImage
的用法示例。
在下文中一共展示了ofFloatImage::setFromPixels方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: update
//--------------------------------------------------------------
void ofApp::update(){
//Update sound engine
ofSoundUpdate();
//Get current spectrum with N bands
float *val = ofSoundGetSpectrum( N );
//We should not release memory of val,
//because it is managed by sound engine
//Update our smoothed spectrum,
//by slowly decreasing its values and getting maximum with val
//So we will have slowly falling peaks in spectrum
for ( int i=0; i<N; i++ ) {
spectrum[i] *= 0.95; //0.97; //Slow decreasing
spectrum[i] = max( spectrum[i], val[i] );
}
//Set spectrum to spectrumImage
spectrumImage.setFromPixels( spectrum, N, 1, OF_IMAGE_GRAYSCALE );
}