-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Никоноров И.Д. ЛР№2 Линейная фильтрация изображений (горизонтальное разбиение). Ядро Гаусса 3x3. OpenMP #152
base: master
Are you sure you want to change the base?
Никоноров И.Д. ЛР№2 Линейная фильтрация изображений (горизонтальное разбиение). Ядро Гаусса 3x3. OpenMP #152
Conversation
Gaussian_filter/OpenMP/OpenMP.cpp
Outdated
void Gauss(Mat input, Mat output, double** kernel, int kern_size) | ||
{ | ||
int radius = int(kern_size / 2); | ||
#pragma omp parallel for num_threads(6) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Количество потоков должно задаваться через аргументы командной строки и устанавливаться внутри функции.
Gaussian_filter/OpenMP/OpenMP.cpp
Outdated
|
||
int main() { | ||
Mat image; | ||
image = imread("55fc619dea60e.jpg", IMREAD_COLOR); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Уже писала в комментариях к последовательной версии, что все названия файлов надо передавать через аргументы командной строки.
Gaussian_filter/OpenMP/OpenMP.cpp
Outdated
int main() { | ||
Mat image; | ||
image = imread("55fc619dea60e.jpg", IMREAD_COLOR); | ||
if (!image.data) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Это старый интерфейс, надо использовать image.empty()
Gaussian_filter/OpenMP/OpenMP.cpp
Outdated
Gauss(gray_image, my_result, Kernel, k); | ||
auto end = std::chrono::steady_clock::now(); | ||
auto elapsed_ms = std::chrono::duration_cast<std::chrono::milliseconds>(end - begin); | ||
cout << "The time is: " << elapsed_ms.count() << " ms\n"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Необходимо добавить сравнение результатов фильтрации, полученных с использованием последовательной и параллельной реализации.
@CosmonautComrad, надо внести исправления, которые были описаны в комментариях к последовательной реализации. |
… сравнение с последовательной версией
…ом и параллельным
No description provided.