本文使用Delphi和C++创建CRC32的COM文件(Dll)。 VB: V6.0 PB: V8.0 Delphi创建的文件,提供给VB6调用;C++创建的文件,提供给PB8调用。 一、VB部分 COM文件:FCN.dll 注册:regsvr32 x:\yyy\FCN.dll 1. 校验值文件 描...
分类:
编程语言 时间:
2016-01-09 06:11:51
阅读次数:
343
《Fully Convolutional Networks for Semantic Segmentation》,CVPR 2015 best paper,pixel level, fully supervised。
主要思路是把CNN改为FCN,输入一幅图像后直接在输出端得到dense prediction,也就是每个像素所属的class,从而得到一个end-to-end的方法来实现ima...
分类:
Web程序 时间:
2015-08-02 13:46:28
阅读次数:
524
select * from (SELECT 'C_DILEI' as fen,'地类' as fcn,'NVARCHAR'as ftype,'2'as flen,(SELECT count(1) FROM xbmbd WHERE len(ISNULL(C_DILEI,'')) > 2 ) as rn...
分类:
数据库 时间:
2015-07-31 23:25:42
阅读次数:
161
【概览&主要贡献】
【问题&解决办法】
如何进行dense prediction
如何refine,得到更好的结果
【结果】...
分类:
Web程序 时间:
2015-07-14 20:27:00
阅读次数:
21480
1、问题的引入
1).观察以下第一块代码:
#include
using namespace std;
class Screen{
public:
void test(){
dummy_fcn( );
}
void dummy_fcn( ){
}
};
此代码编译无错误。。。。。。。。。。。...
分类:
编程语言 时间:
2015-06-11 21:18:22
阅读次数:
163
先贴代码:data = rand(100,2); [center,U,obj_fcn] = fcm(data,2); plot(data(:,1), data(:,2),'o'); hold on; maxU = max(U); % Find th...
分类:
其他好文 时间:
2015-05-11 23:40:02
阅读次数:
318
#include
#include
using namespace std;
class base
{
public:
virtual int fcn()
{
cout<<"base::fcn()"<<endl;
}
};
class D1:public base{
public:
// using base::fcn;//如果解注释的话,则在...
分类:
编程语言 时间:
2015-02-05 09:33:31
阅读次数:
189
先看看python类的类变量和成员变量。见下面代码:
class TestClass(object):
val1 = 100
def __init__(self):
self.val2 = 200
def fcn(self,val = 400):
val3 = 300
self.val4 = val...
分类:
编程语言 时间:
2014-08-22 16:19:09
阅读次数:
193
模板左值右值的转换
/**
* 功能:模板左值右值的转换
* 时间:2014年7月27日08:18:06
* 作者:cutter_point
*/
#include
#include
#include
using namespace std;
template
auto fcn(It beg, It end) -> typename remove_reference::ty...
分类:
编程语言 时间:
2014-07-31 09:55:27
阅读次数:
312