DIC源码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

144 lines
4.4 KiB

#include <fstream>
#include "opencorr.h"
using namespace opencorr;
using namespace std;
int main()
{
//set files to process
string ref_image_path = "d:/dic_tests/2d_dic/oht_cfrp_0.bmp"; //replace it with the path on your computer
string tar_image_path = "d:/dic_tests/2d_dic/oht_cfrp_4.bmp"; //replace it with the path on your computer
Image2D ref_img(ref_image_path);
Image2D tar_img(tar_image_path);
//initialize papameters for timing
double timer_tic, timer_toc, consumed_time;
vector<double> computation_time;
//get the time of start
timer_tic = omp_get_wtime();
//create instances to read and write csv files
string file_path;
string delimiter = ",";
ofstream csv_out; //instance for output calculation time
IO2D in_out; //instance for input and output DIC data
in_out.setDelimiter(delimiter);
in_out.setHeight(ref_img.height);
in_out.setWidth(ref_img.width);
//set OpenMP parameters
int cpu_thread_number = omp_get_num_procs() - 1;
omp_set_num_threads(cpu_thread_number);
//set DIC parameters
int subset_radius_x = 16;
int subset_radius_y = 16;
int max_iteration = 10;
float max_deformation_norm = 0.001f;
//set POIs
Point2D upper_left_point(30, 30);
vector<POI2D> poi_queue;
int poi_number_x = 100;
int poi_number_y = 300;
int grid_space = 2;
//store POIs in a queue
for (int i = 0; i < poi_number_y; i++)
{
for (int j = 0; j < poi_number_x; j++)
{
Point2D offset(j * grid_space, i * grid_space);
Point2D current_point = upper_left_point + offset;
POI2D current_poi(current_point);
poi_queue.push_back(current_poi);
}
}
//get the time of end
timer_toc = omp_get_wtime();
consumed_time = timer_toc - timer_tic;
computation_time.push_back(consumed_time); //0
//display the time of initialization on screen
cout << "Initialization with " << poi_queue.size() << " POIs takes " << consumed_time << " sec, " << cpu_thread_number << " CPU threads launched." << std::endl;
//get the time of start
timer_tic = omp_get_wtime();
//FFTCC
FFTCC2D* fftcc = new FFTCC2D(subset_radius_x, subset_radius_y, cpu_thread_number);
fftcc->setImages(ref_img, tar_img);
fftcc->compute(poi_queue);
//get the time of end
timer_toc = omp_get_wtime();
consumed_time = timer_toc - timer_tic;
computation_time.push_back(consumed_time); //1
//display the time of processing on the screen
cout << "Displacement estimation using FFTCC takes " << consumed_time << " sec." << std::endl;
//get the time of start
timer_tic = omp_get_wtime();
//ICGN with the 1st order shape function
ICGN2D1* icgn1 = new ICGN2D1(subset_radius_x, subset_radius_y, max_deformation_norm, max_iteration, cpu_thread_number);
icgn1->setImages(ref_img, tar_img);
icgn1->prepare();
icgn1->compute(poi_queue);
//get the time of end
timer_toc = omp_get_wtime();
consumed_time = timer_toc - timer_tic;
computation_time.push_back(consumed_time); //2
//display the time of processing on screen
cout << "Deformation determination using ICGN takes " << consumed_time << " sec." << std::endl;
//save the calculated dispalcements
file_path = tar_image_path.substr(0, tar_image_path.find_last_of(".")) + "_fftcc_icgn1_r16.csv";
in_out.setPath(file_path);
in_out.saveTable2D(poi_queue);
//save the full deformation vector
file_path = tar_image_path.substr(0, tar_image_path.find_last_of(".")) + "_fftcc_icgn1_r16_deformation.csv";
in_out.setPath(file_path);
in_out.saveDeformationTable2D(poi_queue);
//save the map of u-component
file_path = tar_image_path.substr(0, tar_image_path.find_last_of(".")) + "_fftcc_icgn1_r16_u.csv";
in_out.setPath(file_path);
char var_char = 'u';
in_out.saveMap2D(poi_queue, var_char);
//save the map of v-component
file_path = tar_image_path.substr(0, tar_image_path.find_last_of(".")) + "_fftcc_icgn1_r16_v.csv";
in_out.setPath(file_path);
var_char = 'v';
in_out.saveMap2D(poi_queue, var_char);
//save the computation time
file_path = tar_image_path.substr(0, tar_image_path.find_last_of(".")) + "_fftcc_icgn1_r16_time.csv";
csv_out.open(file_path);
if (csv_out.is_open())
{
csv_out << "POI number" << delimiter << "Initialization" << delimiter << "FFTCC" << delimiter << "ICGN" << endl;
csv_out << poi_queue.size() << delimiter << computation_time[0] << delimiter << computation_time[1] << delimiter << computation_time[2] << endl;
}
csv_out.close();
//destroy the instances
delete fftcc;
delete icgn1;
cout << "Press any key to exit..." << std::endl;
cin.get();
return 0;
}