码迷,mamicode.com
首页 >  
搜索关键字:channels    ( 630个结果
CCS - Digital Transmission via Carrier Modulation - Carrier-Amplitude Modulation
Carrier-Amplitude Modulation There are four types of carrier-modulated signals are suitablefor bandpass channels: amplitude-modulated signals, quadrat ...
分类:其他好文   时间:2020-09-18 00:23:11    阅读次数:30
Django-websocket+newsocket
1.Django + Channels 提供 websocket 服务 1.1.确保你的环境 windows 环境 python 3.7 目前不支持 3.8 类Unix操作系统除外 pip install django == 2.2 # 以上 目前 Django3.0 pip install cha ...
分类:Web程序   时间:2020-08-20 18:59:00    阅读次数:78
OpenCL设计优化(基于Intel FPGA SDK for OpenCL)
1、首先了解Intel FPGA SDK for OpenCL实现OpenCL的设计组件,包括: kernels, global memory interconnect, local memory, loops 以及channels (1) Kernels Loops一般是Kernel优化的重点,尤 ...
分类:其他好文   时间:2020-07-24 21:20:09    阅读次数:88
flume从Kafka消费数据到HDFS
#source的名字 agent.sources = kafkaSource # channels的名字,建议按照type来命名 agent.channels = memoryChannel # sink的名字,建议按照目标来命名 agent.sinks = hdfsSink # 指定source使 ...
分类:Web程序   时间:2020-07-23 22:28:11    阅读次数:105
go tour --Channels 与 Buffered Channels
无缓冲通道(阻塞通道) 写入后立即阻塞,需要另一个协程读取通道的数据后,才能继续执行。 通道操作符 ch <- v // Send v to channel ch. v := <-ch // Receive from ch, and // assign value to v. 无缓冲通道 ch := ...
分类:其他好文   时间:2020-07-20 15:23:45    阅读次数:70
切记,在进行flume监测文件时采用的是正则表达式
# Name the components on this agenta1.sources = r1a1.channels = c1 c2a1.sinks = k1 k2 #将数据流复制给所有channel#下边这句是默认的,不配置也可以#a1.sources.r1.selector.type = ...
分类:Web程序   时间:2020-07-18 19:54:00    阅读次数:103
PyTorch 深度学习实践 - CNN
Convolutional Layer import torch in_channels, out_channels = 5, 10 width, height = 100, 100 kernel_size = 3 batch_size = 1 input = torch.randn(batch_s ...
分类:其他好文   时间:2020-07-14 13:50:42    阅读次数:98
4. 中值滤波
一、椒盐噪声 void salt(Mat& img, int num) { if (img.data == NULL) return; srand(time(NULL)); int i, j; for (int k = 0; k < num; k++) { i = rand() % img.rows ...
分类:其他好文   时间:2020-07-09 12:30:12    阅读次数:72
Go Proverbs
https://github.com/go-proverbs/go-proverbs.github.io Go Proverbs Simple, Poetic, Pithy Don't communicate by sharing memory, share memory by communicat ...
分类:其他好文   时间:2020-06-28 00:41:05    阅读次数:498
sdl play .pcm
{ #include <iostream> #include <SDL.h> static Uint8 *pAudio_chunk; static Uint32 audio_len; static Uint8 *pAudio_pos; void fill_audio_buffer(void *use ...
分类:其他好文   时间:2020-06-28 00:24:38    阅读次数:52
630条   上一页 1 2 3 4 5 ... 63 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!