码迷,mamicode.com
首页 >  
搜索关键字:matrix chain multipl    ( 5757个结果
Android图片旋转,缩放,位移,倾斜,对称完整示例(一)——imageView.setImageMatrix(matrix)和Matrix
MainActivity如下: import android.os.Bundle; import android.view.MotionEvent; import android.view.View; import android.view.View.OnTouchListener; import android.widget.ImageView; import android.app.Acti...
分类:移动开发   时间:2014-06-29 07:18:53    阅读次数:1336
lua字符匹配
匹配下列格式的数据中的 source和MAC地址: Chain WiFiDog_br-lan_Outgoing (1 references) pkts bytes target prot opt in out source destination 705 109595 MARK al...
分类:其他好文   时间:2014-06-20 11:50:08    阅读次数:262
Android图片旋转,缩放,位移,倾斜,对称完整示例(二)——Bitmap.createBitmap()和Matrix
MainActivity如下: package cc.c; import android.app.Activity; import android.graphics.Bitmap; import android.graphics.Matrix; import android.graphics.drawable.BitmapDrawable; import android.os.Bundle; ...
分类:移动开发   时间:2014-06-20 10:07:11    阅读次数:265
随记------代码片段
1. 二维数组转置void matrix_transpose(int *src[], int *dst[], int x, int y){ int i, j; int *psrc, *pdst; i = j = 0; psrc = (int *)src; pdst = (int *)dst; for...
分类:其他好文   时间:2014-06-11 13:29:59    阅读次数:303
Computer Vision Algorithm Implementations
Participate in Reproducible ResearchGeneral Image ProcessingOpenCV(C/C++ code, BSD lic) Image manipulation, matrix manipulation, transformsTorch3Visio...
分类:其他好文   时间:2014-06-11 10:57:06    阅读次数:444
[leetcode]Rotate Image @ Python
原题地址:https://oj.leetcode.com/problems/rotate-image/题意:You are given annxn2D matrix representing an image.Rotate the image by 90 degrees (clockwise).Fo...
分类:编程语言   时间:2014-06-11 09:43:59    阅读次数:1264
Maximal Rectangle
题目 Given a 2D binary matrix filled with 0's and 1's, find the largest rectangle containing all ones and return its area. 方法 使用两个矩阵,分别记录每一行连续的1的个数以及每一列连续的1的个数。 public int maximalRec...
分类:其他好文   时间:2014-06-11 00:24:51    阅读次数:343
pgm4
这部分 cover 两个比较特殊的情形,一个是 Gaussian networks,一个是 exponential family。正态分布常见的参数化策略是均值 和协方差矩阵 ,另一种是使用 information matrix/precision matrix,即 ,另可以用所谓 potenti....
分类:其他好文   时间:2014-06-08 23:10:53    阅读次数:296
LeetCode:Spiral Matrix I II
Spiral MatrixGiven a matrix of m x n elements (m rows, n columns), return all elements of the matrix in spiral order.For example, Given the following ...
分类:其他好文   时间:2014-06-07 22:57:31    阅读次数:236
Leetcode | Rotate Image
You are given an n x n 2D matrix representing an image.Rotate the image by 90 degrees (clockwise).Follow up:Could you do this in-place?实现题。从最外圈顺时针交换,最...
分类:其他好文   时间:2014-06-07 20:33:17    阅读次数:283
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!