上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 36 下一页
摘要: 1.Ambari安装Ambari & HDP(Hortonworks Data Platform)*****************************************************************************************************... 阅读全文
posted @ 2017-11-17 22:26 wangyaning 阅读(630) 评论(0) 推荐(0) 编辑
摘要: 找工作时候一般需要准备的算法题目类型,其实参考leetcode和poj或者剑指offer基本能够摆平大部分的题目了1.图的遍历,BFS、DFS;2.递归的回溯剪枝;3.树的建立和遍历;4.状态的二进制表示,如一列开关的状态,图某行的开关状态。 数据结构:1.图的表示:邻接矩阵、邻接表(比如:使用... 阅读全文
posted @ 2017-11-17 22:26 wangyaning 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 线程是进程的一条执行路径,它包含独立的堆栈和CPU寄存器状态,每个线程共享所有的进程资源,包括打开的文件、信号标识及动态分配的内存等。一个进程内的所有线程使用同一个地址空间,而这些线程的执行由系统调度程序控制,调度程序决定哪个线程可执行以及什么时候执行线程。线程有优先级别,优先权较低的线程必须等... 阅读全文
posted @ 2017-11-17 22:26 wangyaning 阅读(10389) 评论(1) 推荐(0) 编辑
摘要: Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters fo... 阅读全文
posted @ 2017-11-17 22:26 wangyaning 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 不知道下面的错误是为什么?Error:scalac: missing or invalid dependency detected while loading class file 'RDD.class'.Could not access term hadoop in package org.apa... 阅读全文
posted @ 2017-11-17 22:26 wangyaning 阅读(571) 评论(0) 推荐(0) 编辑
摘要: 程序流程:1.图像采集先从opencv(2.4.10版本)采集回来摄像头的图像,是一帧一帧的每一帧图像是一个矩阵,opencv中的mat 数据结构。 2.人脸的美化人脸美化,我们用的皮肤检测,皮肤在颜色空间是特定的一个区域检测到这个区域(感兴趣区域),完后对这个区域进行美化,就是滤波,主要是双边滤波... 阅读全文
posted @ 2017-11-17 22:26 wangyaning 阅读(1903) 评论(0) 推荐(0) 编辑
摘要: 解决方案:int _tmain(int argc,_TCHAR* argv[]){ size_t fib[] = {1,2,3,5,8,13,21,34}; string str,tempstr; cin >> str; tempstr = str; auto it =... 阅读全文
posted @ 2017-11-17 22:26 wangyaning 阅读(180) 评论(0) 推荐(0) 编辑
摘要: 最终效果:其实这个小功能非常有用,甚至加上只有给人感觉好像人脸检测,目标检测直接成了demo了,主要代码如下:// localize the object std::vector obj; std::vector scene; for (size_t i = 0; i obj_corners(4)... 阅读全文
posted @ 2017-11-17 22:26 wangyaning 阅读(1829) 评论(0) 推荐(0) 编辑
摘要: 效果图:代码:// FindGravity.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include #include #include "cv.h" #include "highgui.h" #include #include #pragma comm... 阅读全文
posted @ 2017-11-17 22:26 wangyaning 阅读(3078) 评论(0) 推荐(0) 编辑
摘要: 其实挺坑爹的一个题目:也不知道考察的重点是啥,大体思路是从2个人分开始算起,自己找到规律了,写代码实现。讨论帖:http://bbs.csdn.net/topics/391835433?page=1#post-400493630实现代码一:#include #include size_t apple... 阅读全文
posted @ 2017-11-17 22:26 wangyaning 阅读(231) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 36 下一页