Python Pandas Numpy Write Script Goes Photo Sharing Site Like Flickr Imgur Searches Catego Q43865811
Python/ Pandas/Numpy
Write a script that goes to a photo-sharing site like Flickr orImgur, searches for a category of photos, and then downloads allthe resulting images. You could write a script that works with anyphoto site that has a search feature. (====This is the context. Ihave this code ====)
After all images were downloaded, perform the following:
1) Covert the images to greyscale and save them into a separatedirectory
2) Resize the images to 28px by 28px and save them into a separatedirectory
3) With the 28px by 28px, create images of 5×5 photo grids
4) Randomly, apply filters (e.g. blur, rotation) on the originalimages and save them into a separate directory. Rename the newimages with the applied filter’s name. E.g. if the originalfilename is img_1234.jpg, a blur filter is applied, the newfilename could be img_1234_blue.jpg.
Expert Answer
Answer to Python/ Pandas/Numpy Write a script that goes to a photo-sharing site like Flickr or Imgur, searches for a category of p…
OR