Zepp
Zepp
For example, in the command-line utility provided by `jetson-inference`, you can: ``` detectnet --input-blob=input_0 --output-cvg=scores --output-bbox=boxes ... ``` And now in ROS, you can do the same thing by: ```...
Some adjustments I personally consider helpful, but don't know whether they fit everyone, so feel free to reject this PR. In my case, pros of timestamped message: - you can...
I download Remix OS kernel's source code [here](https://github.com/JideTechnology/remixos-kernel/tree/jide_x86_lollipop_kernel-4.4), trying to build mt7630e modules by `make KDIR=/home/zepp/build/remix-os-mt7630e/kernel` , but I got these error message: ``` make -C /home/zepp/build/remix-os-mt7630e/kernel M=/home/zepp/build/remix-os-mt7630e/MT7630E-release/rt2x00 modules make[1]:...
If only i18n is implemented, I would be able to share the site to my family who don't know English.
```julia julia> map(typeof, (zeros(), ones(), fill(3.14))) (Array{Float64,0}, Array{Float64,0}, Array{Float64,0}) julia> typeof(ones() .* fill(3.14)) Float64 julia> typeof(zeros() + ones()) # in fact not only after broadcast Float64 ``` Is it a...