MCPcopy Create free account
hub / github.com/cpvrlab/ImagePlay / Blackman

Method Blackman

IPL/src/processes/IPLFFT.cpp:144–147  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

142}
143
144double IPLFFT::Blackman(int n, int size)
145{
146 return ( 0.42 - 0.5 * cos( 2.0 * PI * n / (size-1) ) + 0.08 * cos( 4.0 * PI * n / (size-1) ) );
147}
148

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected