• 大小: 7.89M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-29
  • 语言: C/C++
  • 标签:

资源简介

用来图像数据增强,进行图像扭曲,从而生成更多样本

资源截图

代码片段和文件信息

/*
 *  delaunay.cpp
 *  aamlib-opencv
 *
 *  Created by Chen Xing on 10-2-12.
 *  Copyright 2010 __MyCompanyName__. All rights reserved.
 *
 */

#include “delaunay.h“
using cv::Point2i;

bool operator<(const Triangle &t1 const Triangle &t2) {
    for (int i = 0; i < 3; i++) {
        if ((t1.v[i].x < t2.v[i].x) ||
            (t1.v[i].x == t2.v[i].x && t1.v[i].y < t2.v[i].y))
            return true;
        else if (t1.v[i].x > t2.v[i].x)
            return false;
        else if (t1.v[i].x == t2.v[i].x && t1.v[i].y > t2.v[i].y)
            return false;
    }
    return false;
}

bool operator<(const TriangleInID &a const TriangleInID &b) {
    return (a.v[0] < b.v[0]) || (a.v[0] == b.v[0] && a.v[1] < b.v[1]) ||
           (a.v[0] == b.v[0] && a.v[1] == b.v[1] && a.v[2] < b.v[2]);
}

i

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件     324096  2017-04-11 09:53  img_deformation\Debug\img_deformation.exe

     文件    2206372  2017-04-11 09:53  img_deformation\Debug\img_deformation.ilk

     文件    3443712  2017-04-11 09:53  img_deformation\Debug\img_deformation.pdb

     文件     786572  2017-03-27 13:51  img_deformation\img_deformation\0.tif

     文件     262442  2017-04-10 11:10  img_deformation\img_deformation\180-220-int-02.tif

     文件      69374  2017-03-14 08:23  img_deformation\img_deformation\BFS.PNG

     文件       4950  2017-04-11 09:53  img_deformation\img_deformation\Debug\cl.command.1.tlog

     文件      90358  2017-04-11 09:53  img_deformation\img_deformation\Debug\CL.read.1.tlog

     文件       6150  2017-04-11 09:53  img_deformation\img_deformation\Debug\CL.write.1.tlog

     文件     333705  2017-03-31 07:41  img_deformation\img_deformation\Debug\delaunay.obj

     文件     309350  2017-03-31 07:41  img_deformation\img_deformation\Debug\imgwarp_mls.obj

     文件     305143  2017-03-31 07:41  img_deformation\img_deformation\Debug\imgwarp_mls_rigid.obj

     文件     245095  2017-03-31 07:41  img_deformation\img_deformation\Debug\imgwarp_mls_similarity.obj

     文件     907376  2017-04-10 11:04  img_deformation\img_deformation\Debug\imgwarp_piecewiseaffine.obj

     文件       7590  2017-03-31 07:41  img_deformation\img_deformation\Debug\img_deformation.Build.CppClean.log

     文件        102  2017-04-11 09:53  img_deformation\img_deformation\Debug\img_deformation.lastbuildstate

     文件       2530  2017-04-11 09:53  img_deformation\img_deformation\Debug\img_deformation.log

     文件          2  2017-04-11 09:53  img_deformation\img_deformation\Debug\link-cvtres.read.1.tlog

     文件          2  2017-04-11 09:53  img_deformation\img_deformation\Debug\link-cvtres.write.1.tlog

     文件          2  2017-04-11 09:53  img_deformation\img_deformation\Debug\link-rc.read.1.tlog

     文件          2  2017-04-11 09:53  img_deformation\img_deformation\Debug\link-rc.write.1.tlog

     文件          2  2017-04-11 09:53  img_deformation\img_deformation\Debug\link.10328-cvtres.read.1.tlog

     文件          2  2017-04-11 09:53  img_deformation\img_deformation\Debug\link.10328-cvtres.write.1.tlog

     文件          2  2017-04-11 09:53  img_deformation\img_deformation\Debug\link.10328-rc.read.1.tlog

     文件          2  2017-04-11 09:53  img_deformation\img_deformation\Debug\link.10328-rc.write.1.tlog

     文件          2  2017-04-11 09:53  img_deformation\img_deformation\Debug\link.10328.read.1.tlog

     文件          2  2017-04-11 09:53  img_deformation\img_deformation\Debug\link.10328.write.1.tlog

     文件          2  2017-04-11 09:53  img_deformation\img_deformation\Debug\link.13512-cvtres.read.1.tlog

     文件          2  2017-04-11 09:53  img_deformation\img_deformation\Debug\link.13512-cvtres.write.1.tlog

     文件          2  2017-04-11 09:53  img_deformation\img_deformation\Debug\link.13512-rc.read.1.tlog

............此处省略66个文件信息

评论

共有 条评论