neuer_ansatz_bildverarbeitung #1

Manually merged
zeunerti74726 merged 8 commits from neuer_ansatz_bildverarbeitung into master 2022-12-01 08:17:31 +00:00
Showing only changes of commit 55dc2a9b9a - Show all commits

View File

@ -22,7 +22,7 @@ Mat Input::readFile(String filePath)
// Random shuffle
std::random_shuffle(filenames.begin(), filenames.end());
Mat image = imread(filenames[0], IMREAD_COLOR);
Mat image = imread(filePath, IMREAD_COLOR);
if(image.empty())
{