码迷,mamicode.com
首页 >  
搜索关键字:confusion matrix    ( 4333个结果
opencv_mat
在Learning OpenCV书中,讲到一个基础数据类型CvMat,其中有一段程序: 不知是我理解错了,还是书中的注释错了,“Summing all of the elements in a three-channel matrix”,我觉得是对三通道CvMat中的所有数据进行求和,按我之前的编写 ...
分类:其他好文   时间:2017-10-27 22:28:52    阅读次数:152
C_棋盘覆盖
1 #include 2 #include 3 #include 4 5 int nCount = 0; 6 int Matrix[100][100]; 7 8 void chessBoard(int tr, int tc, int dr, int dc, int size); 9 10 int m... ...
分类:其他好文   时间:2017-10-27 19:51:27    阅读次数:152
图形学思考 - 聊聊透视图投射矩阵perspective projective matrix
from:版权声明:本文作者靖心,靖空间地址:http://blog.csdn.net/kenden23/,未经本作者允许不得转载。 什么是透视图投射矩阵perspective projective matrix? 空间物体的坐标乘以投射矩阵,那么就可以把空间的物体投射到屏幕上。 大体是这样的矩阵: ...
分类:其他好文   时间:2017-10-26 21:06:01    阅读次数:180
Matrix4x4矩阵 api
Matrix4x4 矩阵api介绍 Namespace: UnityEngine Namespace: UnityEngine Description 描述 A standard 4×4 transformation matrix. 一个标准的4×4变换矩阵。 A transformation ma ...
分类:Windows程序   时间:2017-10-26 13:30:06    阅读次数:271
指针动态开空间的板子
#include int **matrix; int n,m; int main(){ register int i,j; scanf("%d%d",&n,&m); matrix=new int *[n]; for(i=0;i<n;++i) matrix[i]=new int [m]; for(i=... ...
分类:其他好文   时间:2017-10-25 23:54:53    阅读次数:219
POJ2155(二维树状数组)
Matrix Matrix Time Limit: 3000MS Memory Limit: 65536K Total Submissions: 17226 Accepted: 6461 Description Given an N*N matrix A, whose elements are ei ...
分类:编程语言   时间:2017-10-25 23:35:08    阅读次数:180
CF 873C Strange Game On Matrix(贪心)
题目: Strange Game On Matrix Ivan is playing a strange game. He has a matrix a with n rows and m columns. Each element of the matrix is equal to either  ...
分类:其他好文   时间:2017-10-25 21:46:51    阅读次数:199
378. Kth Smallest Element in a Sorted Matrix
Given a n x n matrix where each of the rows and columns are sorted in ascending order, find the kth smallest element in the matrix. Note that it is th ...
分类:其他好文   时间:2017-10-24 16:07:33    阅读次数:100
542. 01 Matrix
Given a matrix consists of 0 and 1, find the distance of the nearest 0 for each cell. The distance between two adjacent cells is 1. Example 1: Input: ...
分类:其他好文   时间:2017-10-24 14:52:03    阅读次数:150
QT中给各控件增加背景图片(可缩放可旋转)的几种方法
1. 给QPushButton 增加背景图片:背景图片可根据Button大小自由缩放。 [cpp] view plain copy void setButtonBackImage(QPushButton *button,QString image,int sizeW, int sizeH) { // ...
分类:其他好文   时间:2017-10-20 20:21:57    阅读次数:270
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!