CppNCorr
C++ ncorr Digital Image Correlation engine
Loading...
Searching...
No Matches
Array2D.cpp
Go to the documentation of this file.
1/*
2 * File: Array2D.h
3 * Author: justin
4 *
5 * Created on December 30, 2014, 4:55 PM
6 */
7
8#include "Array2D.h"
9
10namespace ncorr {
11
12namespace details {
13 // The only thread-safe routine in FFTW is fftw_execute(), so use this mutex
14 // for all other routines.
15 std::mutex fftw_mutex;
16}
17
18}
std::mutex fftw_mutex
Definition Array2D.cpp:15