Alexander Blinne

Results 24 comments of Alexander Blinne

Hi @dipate, according to https://wikidevi.com/wiki/TP-LINK_TL-WN725N_v2 I have the same device. I got it to work as an AP. See my comments on #257 about how I did it. With a...

I had no trouble implementing Eq. (3) from your reference using fft(), see [FFT.pdf](https://github.com/skuschel/postpic/files/3084812/FFT.pdf). Maybe your problem lies elsewhere?

Turns out pint does not subclass arrays. Quantitys _contain_ arrays, just like the Field _contains_ an array. Is it meaningful to put a container in a container? or should these...

* Before numpy 1.11 it was impossible to modify the input to ufuncs before they are called. This means that, if unit conversion needs to be done beforehand, the ufunc...

* So far ufuncs are not supported at all. Units are represended as strings and not really handled at all * One would need to make sure that in numpy...

* a mix of both options might look like this: implement the logic in a `_operate` method that is used to apply operators like `+, -, *, /, >,

* instead of an attribute `_unit_compat` we could just have a `dummy` class `ndquantity_compat` which is just an array with an additional `.unit`-string member, similar to the example `InfoArray` from...

That seems nice! And using `__array_ufunc__` it would be easy to just repair the ufuncs for compatible units for python > 1.11 in python-quantities! They work around the double computation...

It seems for some reason one of builds is unable to checkout the source tree, so it fails. Not sure if I can do anything about it. I have requested...

I just noticed that due to the order of `#if` and `#endif` directives in `xbmc/system/shaders/GL/4.0/gl_yuv2rgb_filter4.glsl`, that tonemapping is not applied, when color conversion is disabled. I think technically this relation...