question archive ( Using C program!) Write program that will use threads to distribute the image processing among multiple threads

( Using C program!) Write program that will use threads to distribute the image processing among multiple threads

Subject:Computer SciencePrice: Bought3

( Using C program!) Write program that will use threads to distribute the image processing among multiple threads. For example, if you have an image with 48 rows, give each thread 12 rows. If you have an image with 45 rows, however, you can give 3 threads 12 rows and the last one 9 rows. Note that to make sure the last thread does not process 12 rows and not step outside the buffer.

summarize you program will:

  1. Your program will load an image.
  2. Your program will create N-1 threads.
  3. Distribute equal number of rows to each thread (except for the last one).
  4. Manipulate each channel of each pixel in the image.
  5. Wait for everyone to complete the work.
  6. Save the image.

Your program should accept 3 arguments on the command line:

  1. The input image filename.
  2. The output image filename.
  3. The number of threads to use.

pur-new-sol

Purchase A New Answer

Custom new solution created by our subject matter experts

GET A QUOTE