Use this tag for questions about tessellations as well as figuratively the optimization technique of loop tiling.
Questions tagged [tiling]
175 questions
0
votes
1 answer
WebGL tiling from texture atlas
I have map tiles (256px x 256px) stored in a texture atlas and want to select a tile and draw it with the adjacent 8 tiles around it. My texture atlas is something like this (named the tiles 1-9 for simplicity):
I already have a setup to make the…

Herjar
- 59
- 6
0
votes
2 answers
i3 assign number to window and move to number
I am totally new to i3 and am coming from tilix. So far I love i3. In tilix I used to jump from windows to window using the $mod+numberOfWindow. But I can't find out how to
assign each window a number
focus windows by number.
With workspaces it…

xddq
- 341
- 3
- 7
0
votes
1 answer
THREE.JS: Quadtree terrain glitch
I have a very simple code for visualising geo terrain from tiles of different zoom levels, based on pseudo-quadtree algorithm.
Due to crossDomain restrictions and StackOverflow limits I am publishing code just for reference, the live demo is…

VVK
- 435
- 2
- 27
0
votes
0 answers
Tiling in Matrix multiplication with OpenMP task
I have following working code for matrix multiplication (with tiling) which is producing results correctly:
void ProcessTile(int d1stride, int d2stride, int d3stride) {
for (int i=d1stride ; i<(d1stride+BLOCKSIZE) ; i++) //covering rows of…

User852
- 35
- 7
0
votes
1 answer
Resize image and create 3x3 tiles with ImageMagick
I managed to make tiles with ImageMagick like this:
-size 900x900 tile:D:\tile.jpg D:\tiles.jpg
But i want to resize the image before the tiling (300*300px) - and then maybe afterwards apply a sharpen, but the most important is the resizing.
How do…

Flemming
- 694
- 7
- 22
0
votes
2 answers
How to Create a Rainbow Triangle Tessellation
I'm attempting to create a triangle tessellation like the following in Python:
All I've gotten is Sierpensky's triangle. I assume it'd use some of the same code.
import turtle as t
import math
import…

monica bach
- 41
- 1
- 2
- 5
0
votes
1 answer
Leaflet - How to keep original coordinates system effective when using tile layer?
In my Leaflet application I used to display a background layer with an ImageOverlay. But since the image is too big and slow down Leaflet processing, I switch to a tiling approach.
I used gdal2tiles-leaflet to generate my tiles. It worked fine.
But…

Martin Tovmassian
- 1,010
- 1
- 10
- 19
0
votes
2 answers
How to add tiling and transparency to this shader?
I don't know much about shaders, so I am struggling to add transparency to a shader I already use.
So basically I used the shader below to display 360 videos on a sphere. It flipps the normals so it is displayed on the inside.
However, I would like…

JackMini36
- 621
- 1
- 5
- 14
0
votes
0 answers
Cache Blocking and Prefetching
I'm trying to test the effectiveness of a manual cache blocking or loop tiling optimization that has been applied on some Fortran scientific code routine. Concerning Tile Size Selection, I used an algorithm based on classical Distinct Lines…

Marco Chiarelli
- 13
- 5
0
votes
2 answers
Dividing a rectangle into smaller, equal, integer rectangles/tiles of maximum size
I need to create screenshots with an extremely large resolution. Because the resolution is larger than my renderer supports, they need to be split up into smaller resolutions and stitched together later.
I have figured out the stitching/rendering…

ManIkWeet
- 1,298
- 1
- 15
- 36
0
votes
0 answers
Manual cache blocking and Intel Optimization Flags
I'm trying to test the effectiveness of a manual cache blocking or loop tiling optimization that has been applied on some Fortran scientific code routine. Concerning Tile Size Selection, I used an algorithm based on classical Distinct Lines…

Marco Chiarelli
- 13
- 5
0
votes
1 answer
How can I tile an image into patches of (constant) arbitrary size at (constant) arbitrary stride in MATLAB?
I have an image of arbitrary dimensions ROWS and COLS. I want to tile this image into patches of arbitrary, but constant size blockSize = [blockSizeR, blockSizeC], given an arbitrary, but constant stride stride = [strideR, strideC]. When the number…

Michael
- 280
- 2
- 13
0
votes
1 answer
IE8 Flash canceling png tiling
I have a weird issue that only seems to show itself on IE 8 so far.
I have a semi transparent png tiling accross some divs on my site. All works ok. However as soon as i put any flash content on any div on the page, doesn't matter where, IE stops…
user442540
0
votes
1 answer
Removing or masking the I'th sub-element of a tilted tensor?
I am searching for a way using Tensorflow to extract all of the sub-elements except for the one corresponding to the tensor's index.
(eg. if looking at index 1 then only sub-elements 0 and 2 are present)
Very similar to this approach using…

Logic1
- 1,806
- 3
- 26
- 43
0
votes
1 answer
Tiling patterns
I'm looking for efficient solution/algorithm for tiling : the layout of the decking tiles.
We want to build system that will calculate the mutual placement of columns and beams (beams, joist) with support of irregular shape.
Thank you in advance for…

Roman
- 351
- 3
- 8