码迷,mamicode.com
首页 >  
搜索关键字:scalar    ( 330个结果
Computer Architecture Lecture 2: Fundamental Concepts and ISA
Moore's Law Reliability Memory Wall Programmability Wall Design complexity Power/energy constraints Programmability Wall Tradeoffs Three key component ...
分类:其他好文   时间:2017-10-09 00:32:51    阅读次数:196
Oracle Single-Row Functions(单行函数)——NULL-Related Functions
参考资料:http://docs.oracle.com/database/122/SQLRF/Functions.htm#SQLRF006 Single-row functions return a single result row for every row of a queried table ...
分类:数据库   时间:2017-10-08 13:02:19    阅读次数:214
MAT 函数
1、 Mat frame = imread("apple.jpg"); 读取图像 if( !frame.date ) return 0; Mat image.create( frame.size( ),frame.type( ) ); image.setTo( cv::Scalar(0,0,0) ) ...
分类:其他好文   时间:2017-09-27 19:14:55    阅读次数:283
矩阵求导问题
复杂矩阵问题求导方法:可以从小到大,从scalar到vector再到matrix。 x is a column vector, A is a matrix practice: ...
分类:其他好文   时间:2017-09-26 19:30:58    阅读次数:125
Matrix multiplication&subtraction
1.1 Matrix multiplication If A is an n×m matrix and B is an m×p matrix, The matrix product AB (denoted without multiplication signs or dots) is define ...
分类:其他好文   时间:2017-09-24 12:48:25    阅读次数:144
Bi-LSTM+CRF函数分解
1. to_scalar() 2. ...
分类:其他好文   时间:2017-09-24 11:37:33    阅读次数:234
TensorFlow官方文档入门笔记[一]
TensorFlow官方文档入门笔记[一] 张量 3 # a rank 0 tensor; this is a scalar with shape [] [1., 2., 3.] # a rank 1 tensor; this is a vector with shape [3] [[1., 2., ...
分类:其他好文   时间:2017-09-22 00:55:38    阅读次数:188
使用SQLQuery 在Hibernate中使用sql语句
对原生SQL查询执行的控制是通过SQLQuery接口进行的,通过执行Session.createSQLQuery()获取这个接口。下面来描述如何使用这个API进行查询。 1.标量查询(Scalar queries) 最基本的SQL查询就是获得一个标量(数值)的列表。 sess.createSQLQu ...
分类:数据库   时间:2017-09-21 13:17:49    阅读次数:181
opencv bwlabel
int bwLabel(const Mat& imgBw, Mat& imgLabeled) { Mat imgClone = Mat(imgBw.rows + 2, imgBw.cols + 2, imgBw.type(), Scalar(0)); imgBw.copyTo(imgClone(Re... ...
分类:其他好文   时间:2017-09-02 00:18:56    阅读次数:265
基于梯度场和Hessian特征值分别获得图像的方向场
一、?我们想要求的方向场的定义为:对于任意一点(x,y),该点的方向可以定义为其所在脊线(或谷线)位置的切线方向与水平轴之间的夹角:将一条直线顺时针或逆时针旋转 180°,直线的方向保持不变。因此,指纹方向场的取值范围一般定义为[0,π)或[-π/2, π/2),前闭后开区间的意义在于保证方向场取值... ...
分类:其他好文   时间:2017-08-26 22:47:44    阅读次数:458
330条   上一页 1 ... 14 15 16 17 18 ... 33 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!