No tutorial before hand

There is no video or tutorial for this type of problem, how am I supposed to solve it?

Hey @siddhu28.ss, this challenge just tests your basic knowledge to solve the problem. There’s nothing too hard in this to code. I can give you hints or tell you the steps involved :

  1. First read your images and convert them from BGR to RGB. (use opencv)
  2. Then reshape all the images to (200,200,3) except the center image which should be reshaped to (100,100,3).
  3. Then find the shape of the final image that you want in the end.
  4. Then create a black canvas or complete black frame of that shape.
  5. The next step is to just slice the black image and overwrite the pixels of the images you have i.e. left,right,top,bottom image. Then finally lay the center image as well on the whole final image formed till now.
  6. I hope by now you will get the final image as is required in this challenge. The last step is to store all the pixel values of this final numpy array(image) into a csv file.
  7. Submit your results to see how did you perform !

I hope this clears your doubt !
Please mark the doubt as resolved in your doubts section ! :+1:
Happy Learning and All the Best ! :slightly_smiling_face:

1 Like

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.