-
Notifications
You must be signed in to change notification settings - Fork 425
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
Not able to create mosaic using human face image (tile image) #46
Comments
Hello, could you show me the commands that you are using to generate the image? |
yes, below mentioned command I have used to generate mosaic. command: python tiler.py images/ssp-bnr-img.jpg tiles/tile_image/ I am rendering main image - ssp-bnr-img.jpg from image folder and tile images from tile/tile_image folder. tile_image folder is having 128x128 dimension human face images. I am using below configurations- Please guide me to fix the issue. Thank you. |
For your particular use case, I would recommend using a grid pattern, i.e., setting the pixel shift to none and using a single scale. RESIZING_SCALES = [0.1]
PIXEL_SHIFT = None If the tiles are too small for the image, you can try increasing the Let me know if this works for you. |
To be able to see each tile clearly while keeping each tile small, we have to scale up the image to tile. IMAGE_SCALE = 5
RESIZING_SCALES = [1]
PIXEL_SHIFT = None If you find that each tile is too big, you can increase the |
I am not able to create mosaic using human faces. I am using human faces as tiles. it is generating something else not as the main cover image. can you please guide me regarding this ?
The text was updated successfully, but these errors were encountered: