码迷,mamicode.com
首页 >  
搜索关键字:original    ( 2117个结果
Remove Duplicates from Sorted List II
Given a sorted linked list, delete all nodes that have duplicate numbers, leaving onlydistinctnumbers from the original list.For example,Given1->2->3-...
分类:其他好文   时间:2014-06-04 20:19:49    阅读次数:282
利用matlab提取并分割RGB图像中的某一个已知像素值的图像
已知一副RGB图像中的的像素值,利用matlab将其分割出来并以二进制图像形式显示: %extract.m clear all; I=imread('new_original.png'); figure,imshow(I),title('Original Image'); bw=im2bw(I,0.3); %figure,imshow(bw),title('Gray Image'); rgb=[...
分类:其他好文   时间:2014-06-03 02:46:26    阅读次数:989
LeetCode: Partition List [086]
【题目】 Given a linked list and a value x, partition it such that all nodes less than x come before nodes greater than or equal to x. You should preserve the original relative order of the nodes in each of the two partitions. For example, Given 1->4->3-...
分类:其他好文   时间:2014-06-03 00:02:29    阅读次数:270
javascript bind
最近在代码中经常看到bind关键词,之前没用过啊,这里记录下。从微软复制过来的例子: // Define the original function. var checkNumericRange = function (value) { if (typeof value !== 'number') return false; else return...
分类:编程语言   时间:2014-06-01 04:51:27    阅读次数:481
LeetCode: Remove Duplicates from Sorted List II [083]
【题目】 Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the original list. For example, Given 1->2->3->3->4->4->5, return 1->2->5. Given 1->1->1->2->3, return 2->3. 【题意】 给定一个有序链表,删出其中重复出现的值...
分类:其他好文   时间:2014-05-31 21:14:11    阅读次数:333
miui patchrom makefile
## Makefile for h30_u10## The original zip file, MUST be specified by each productlocal-zip-file := stockrom.zip# The output zip file of MIUI rom,...
分类:其他好文   时间:2014-05-30 08:40:13    阅读次数:333
Leetcode: Best Time to Buy and Sell Stock
My original thought was to calculate all the possible transactions by using nested loop. But got time limit excess error.I knew it can be done in O(n)...
分类:其他好文   时间:2014-05-29 20:44:37    阅读次数:271
opencv学习笔记(05)——操作相邻区域
下面的例子以灰度图像为例:#include #include #include using namespace cv;void sharpen(const cv::Mat& img_original, cv::Mat& img_altered); void sharpen2D(const cv...
分类:其他好文   时间:2014-05-26 07:51:53    阅读次数:283
我的原创软件(持续更新) My Original Software[Continuously updated]
-好软件的定义就是它的体积不大不小,功能不多不少,一切都是那么的恰到好处。 -Good software is neither too big nor too small,neither too Complex nor too Simple,everything is so right. +点击.....
分类:其他好文   时间:2014-05-26 00:54:15    阅读次数:254
opencv学习笔记(04)——ROI
ROI的用法:1、直接相加;2、掩码法#include #include #include int main(){ cv::Mat img_original = cv::imread("F:\\images\\boldt.jpg"); cv::Mat logo = cv::im...
分类:其他好文   时间:2014-05-24 09:09:36    阅读次数:264
2117条   上一页 1 ... 208 209 210 211 212 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!