Minor fix

This commit is contained in:
AlexeyAB
2018-10-14 00:20:23 +03:00
parent 344f8c6d27
commit 2bb44454a5
3 changed files with 9 additions and 1 deletions

View File

@ -322,6 +322,11 @@ image image_data_augmentation(IplImage* ipl, int w, int h,
sized *= dexp;
}
//std::stringstream window_name;
//window_name << "augmentation - " << ipl;
//cv::imshow(window_name.str(), sized);
//cv::waitKey(0);
// Mat -> IplImage -> image
IplImage src = sized;
image out = ipl_to_image(&src);