Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
175 views

How to subsample a 2D polygon?

I have polygons that define the contour of counties in the UK. These shapes are very detailed (10k to 20k points each), thus rendering the related computations (is point X in polygon P?) quite ...
1
vote
2answers
971 views

YUV420 to RGB conversion

I converted an RGB matrix to YUV matrix using this formula: Y = (0.257 * R) + (0.504 * G) + (0.098 * B) + 16 Cr = V = (0.439 * R) - (0.368 * G) - (0.071 * B) + 128 Cb = U = -(0.148 * R) - ...
0
votes
3answers
131 views

SED: How to remove every 10 lines in a file (thin or subsample the file)

I have this so far: sed -n '0,10p' yourfile > newfile But it is not working, just outputs a blank file :(