Results 17 comments of Nuno Faria

Here are the plans and the traces of the queries provided above. There are currently no deletes on the table. - All unnested ```sql SELECT 1 FROM t t1, t...

Thanks for looking into it. As a workaround, changing the optimizer to 'minimal_pipe' seems to yield good results. ```sql SET optimizer = 'minimal_pipe'; (SELECT * FROM Test WHERE k =...

I fixed the problem for the `.jpg` images. Give that a try now. As for the `.png` one, are you sure `images/test2/test2.png` exists and is a valid image? If so,...

Did you pass arguments to the script? You have two ways you can use: `python tiler.py path/to/image path/to/tiles_folder/`, or `python tiler.py` and setting the image and the tiles paths in...

`IMAGE_TO_TILE` must be an image (ex: `IMAGE_TO_TILE = 'some_image.png'`) and not a folder. The `TILES_FOLDER` looks correct.

The second argument must be a folder with just the tiles. `D:\tiler` must have other types of files. Try `D:\tiler\tiles\times\gen_times\`.

The first argument must be the target image. In your case, I think you want to do `python tiler.py D:/NFT/imgs/gen_1`

It should be fixed now. Give it a try and let me know.

That can take a long time depending on the size of the image to tile, the size of the tiles, the number of resizing scales, and the pixel shift. Some...