barabanus

Results 13 comments of barabanus

> I think I would prefer passing the streams directly instead of as strings such that the signature would be `init(..., wrap: bool | TextIO) -> None` instead. The only...

Thanks for the comments, I'll review them on weekends

Hello, I think that when we call `colorama.init()` we should specify which output we'd like to "wrap". For example, in my framework I've got a lot of scripts which use...

> @barabanus I guess you can manually wrap `stdout` if you need to. Thank you for your advice, but obviously, it's too wordy. Also, it's not like I care at...

I created a pull request #257, check it please.

That's exactly what I need. For example, let me show how I tried to use the library: ``` coloredlogs.install( logger=logger, level=logging.DEBUG, fmt="%(asctime)s.%(msecs)03d [%(levelname)s] %(message)s", level_styles=dict( debug={"color": "yellow"}, info={"color": "white"}, warning={"color":...

It would be cool to see how your connected MPU6886. Given the code it seems like you haven't connected its interrupt pin. Did you consider how to sample MPU6886 data...

> I really love the idea of using JSON for configuration @germ, for human readable configs the industrial standard is to use YAML instead of JSON.

It looks like LSD detector had been removed completely from the source tree since 4.1.0 release (see https://github.com/opencv/opencv/commit/3ba49ccecc773592a3e8d68ad9f5b06196dae6b6) =(

Thanks, @tangjie77wd, but it seems like it was removed completely from OpenCV 4.1.0 (see https://github.com/opencv/opencv/commit/3ba49ccecc773592a3e8d68ad9f5b06196dae6b6). I have found LSD line detector classes within contrib `line_descriptor` module, but if you try...