Skip to content
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

Open
wants to merge 12 commits into
base: master
Choose a base branch
from

Conversation

CosmonautComrad
Copy link

No description provided.

void Gauss(Mat input, Mat output, double** kernel, int kern_size)
{
int radius = int(kern_size / 2);
#pragma omp parallel for num_threads(6)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Количество потоков должно задаваться через аргументы командной строки и устанавливаться внутри функции.


int main() {
Mat image;
image = imread("55fc619dea60e.jpg", IMREAD_COLOR);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Уже писала в комментариях к последовательной версии, что все названия файлов надо передавать через аргументы командной строки.

int main() {
Mat image;
image = imread("55fc619dea60e.jpg", IMREAD_COLOR);
if (!image.data)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Это старый интерфейс, надо использовать image.empty()

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";

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Необходимо добавить сравнение результатов фильтрации, полученных с использованием последовательной и параллельной реализации.

@valentina-kustikova
Copy link
Owner

@CosmonautComrad, надо внести исправления, которые были описаны в комментариях к последовательной реализации.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants