openbr_internal.h 11.6 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479
#ifndef OPENBR_INTERNAL_H
#define OPENBR_INTERNAL_H

#include "openbr/openbr_plugin.h"
#include "openbr/core/resource.h"

namespace br
{

class BR_EXPORT UntrainableTransform : public Transform
{
    Q_OBJECT

protected:
    UntrainableTransform(bool independent = true) : Transform(independent, false) {} /*!< \brief Construct an untrainable transform. */

private:
    Transform *clone() const { return const_cast<UntrainableTransform*>(this); }
    void train(const TemplateList &data) { (void) data; }
    void store(QDataStream &stream) const { (void) stream; }
    void load(QDataStream &stream) { (void) stream; }
};

class BR_EXPORT MetaTransform : public Transform
{
    Q_OBJECT

protected:
    MetaTransform() : Transform(false) {}
};

class BR_EXPORT UntrainableMetaTransform : public UntrainableTransform
{
    Q_OBJECT

protected:
    UntrainableMetaTransform() : UntrainableTransform(false) {}
};

class TransformCopier : public ResourceMaker<Transform>
{
public:
    Transform *basis;
    TransformCopier(Transform *_basis)
    {
        basis = _basis;
    }

    virtual Transform *make() const
    {
        return basis->smartCopy();
    }

};

class TimeInvariantWrapperTransform : public MetaTransform
{
public:
    Resource<Transform> transformSource;

    TimeInvariantWrapperTransform(Transform *basis) : transformSource(new TransformCopier(basis))
    {
        if (!basis)
            qFatal("TimeInvariantWrapper created with NULL transform");
        baseTransform = basis;
        trainable = basis->trainable;
    }

    virtual void project(const Template &src, Template &dst) const
    {
        Transform *aTransform = transformSource.acquire();
        aTransform->projectUpdate(src,dst);
        transformSource.release(aTransform);
    }

    void project(const TemplateList &src, TemplateList &dst) const
    {
        Transform *aTransform = transformSource.acquire();
        aTransform->projectUpdate(src,dst);
        transformSource.release(aTransform);
    }

    void train(const QList<TemplateList> &data)
    {
        baseTransform->train(data);
    }

private:
    Transform *baseTransform;
};

class BR_EXPORT TimeVaryingTransform : public Transform
{
    Q_OBJECT

public:

    virtual bool timeVarying() const { return true; }

    virtual void project(const Template &src, Template &dst) const
    {
        timeInvariantAlias.project(src,dst);
    }

    virtual void project(const TemplateList &src, TemplateList &dst) const
    {
        timeInvariantAlias.project(src,dst);
    }

    // Get a compile failure if this isn't here to go along with the other
    // projectUpdate, no idea why
    virtual void projectUpdate(const Template &src, Template &dst)
    {
        (void) src; (void) dst;
        qFatal("do something useful");
    }

    virtual void projectUpdate(const TemplateList &src, TemplateList &dst)
    {
        foreach (const Template &src_part, src) {
            Template out;
            projectUpdate(src_part, out);
            dst.append(out);
        }
    }

    virtual Transform *smartCopy(bool &newTransform)
    {
        newTransform = true;
        return this->clone();
    }

protected:
    // Since copies aren't actually made until project is called, we can set up
    // timeInvariantAlias in the constructor.
    TimeInvariantWrapperTransform timeInvariantAlias;
    TimeVaryingTransform(bool independent = true, bool trainable = true) : Transform(independent, trainable), timeInvariantAlias(this)
    {
        //
    }
};

class BR_EXPORT WrapperTransform : public TimeVaryingTransform
{
    Q_OBJECT
public:
    WrapperTransform(bool independent = true) : TimeVaryingTransform(independent)
    {
    }

    Q_PROPERTY(br::Transform *transform READ get_transform WRITE set_transform RESET reset_transform STORED false)
    BR_PROPERTY(br::Transform *, transform, NULL)

    bool timeVarying() const { return transform->timeVarying(); }

    void project(const Template &src, Template &dst) const
    {
        transform->project(src,dst);
    }

    void project(const TemplateList &src, TemplateList &dst) const
    {
        transform->project(src, dst);
    }

    void projectUpdate(const Template &src, Template &dst)
    {
        transform->projectUpdate(src,dst);
    }
    void projectUpdate(const TemplateList &src, TemplateList &dst)
    {
        transform->projectUpdate(src,dst);
    }

    void train(const QList<TemplateList> &data)
    {
        transform->train(data);
    }

    virtual void finalize(TemplateList &output)
    {
        transform->finalize(output);
    }

    void init()
    {
        if (transform)
            this->trainable = transform->trainable;
    }

    virtual Transform *simplify(bool &newTransform)
    {
        newTransform = false;
        bool newChild = false;
        Transform *temp = transform->simplify(newTransform);
        if (temp == transform)
            return this;

        if (!temp)
            return NULL;

        // else make a copy to point at the new transform
        Transform *child = transform;
        transform = NULL;
        WrapperTransform *output = dynamic_cast<WrapperTransform *>(Transform::make(description(), NULL));
        transform = child;

        output->transform = temp;

        if (newChild)
            temp->setParent(output);

        newTransform = true;
        return output;
    }

    Transform *smartCopy(bool &newTransform)
    {
        if (!timeVarying()) {
            newTransform = false;
            return this;
        }
        newTransform = true;
        Transform *temp = transform;
        transform = NULL;
        WrapperTransform *output = dynamic_cast<WrapperTransform *>(Transform::make(description(), NULL));
        transform = temp;

        if (output == NULL)
            qFatal("Dynamic cast failed!");

        bool newItem = false;
        Transform *maybe_copy = transform->smartCopy(newItem);
        if (newItem)
            maybe_copy->setParent(output);
        output->transform = maybe_copy;

        output->file = this->file;
        output->init();

        return output;
    }

};

class BR_EXPORT CompositeTransform : public TimeVaryingTransform
{
    Q_OBJECT

public:
    Q_PROPERTY(QList<br::Transform*> transforms READ get_transforms WRITE set_transforms RESET reset_transforms)
    BR_PROPERTY(QList<br::Transform*>, transforms, QList<br::Transform*>())

    virtual void project(const Template &src, Template &dst) const
    {
        if (timeVarying()) {
            timeInvariantAlias.project(src,dst);
            return;
        }
        _project(src, dst);
    }

    virtual void project(const TemplateList &src, TemplateList &dst) const
    {
        if (timeVarying()) {
            timeInvariantAlias.project(src,dst);
            return;
        }
        _project(src, dst);
    }


    bool timeVarying() const { return isTimeVarying; }

    void init()
    {
        isTimeVarying = false;
        trainable = false;
        foreach (const br::Transform *transform, transforms) {
            isTimeVarying = isTimeVarying || transform->timeVarying();
            trainable = trainable || transform->trainable;
        }
    }

    Transform *smartCopy(bool &newTransform)
    {
        if (!timeVarying()) {
            newTransform = false;
            return this;
        }
        newTransform = true;

        QList<Transform *> temp = transforms;
        transforms = QList<Transform *>();
        CompositeTransform *output = dynamic_cast<CompositeTransform *>(Transform::make(description(), NULL));
        transforms = temp;

        if (output == NULL)
            qFatal("Dynamic cast failed!");

        foreach (Transform* t, transforms ) {
            bool newItem = false;
            Transform *maybe_copy = t->smartCopy(newItem);
            if (newItem)
                maybe_copy->setParent(output);
            output->transforms.append(maybe_copy);
        }

        output->file = this->file;
        output->init();

        return output;
    }

    virtual Transform *simplify(bool &newTransform)
    {
        newTransform = false;
        QList<Transform *> newTransforms;
        bool anyNew = false;

        QList<bool> newChildren;
        for (int i=0; i < transforms.size();i++)
        {
            bool newChild = false;
            Transform *temp = transforms[i]->simplify(newChild);
            if (temp == NULL) {
                anyNew = true;
                continue;
            }
            newTransforms.append(temp);
            newChildren.append(newChild);
            if (temp != transforms[i])
                anyNew = true;
        }

        if (newTransforms.empty() )
            return NULL;

        if (!anyNew)
            return this;

        // make a copy of the current object, with empty transforms
        QList<Transform *> children = transforms;
        transforms = QList<Transform *> ();
        CompositeTransform *output = dynamic_cast<CompositeTransform *>(Transform::make(description(false), NULL));
        transforms = children;

        output->transforms = newTransforms;
        for (int i=0;i < newChildren.size();i++)
        {
            if (newChildren[i])
                output->transforms[i]->setParent(output);
        }
        output->init();

        newTransform = true;
        return output;
    }

protected:
    bool isTimeVarying;

    virtual void _project(const Template &src, Template &dst) const = 0;
    virtual void _project(const TemplateList &src, TemplateList &dst) const = 0;

    CompositeTransform() : TimeVaryingTransform(false) {}
};

class EnrollmentWorker;

// Implemented in plugins/process.cpp
struct WorkerProcess
{
    QString transform;
    QString baseName;
    EnrollmentWorker *processInterface;

    void mainLoop();
};

class MetadataTransform : public Transform
{
    Q_OBJECT
public:

    virtual void projectMetadata(const File &src, File &dst) const = 0;

    void project(const Template &src, Template &dst) const
    {
        dst = src;
        projectMetadata(src.file, dst.file);
    }

protected:
    MetadataTransform(bool trainable = true) : Transform(false,trainable) {}
};

class UntrainableMetadataTransform : public MetadataTransform
{
    Q_OBJECT

protected:
    UntrainableMetadataTransform() : MetadataTransform(false) {}
};

class FileGallery : public Gallery
{
    Q_OBJECT
public:
    QFile f;

    virtual ~FileGallery() { f.close(); }

    void init();

    qint64 totalSize();
    qint64 position() { return f.pos(); }

    bool readOpen();
    void writeOpen();

};


void applyAdditionalProperties(const File &temp, Transform *target);


inline void splitFTEs(TemplateList &src, TemplateList  &ftes)
{
    TemplateList active = src;
    src.clear();

    foreach (const Template &t, active) {
        if (t.file.fte) {
            if (!Globals->enrollAll)
                ftes.append(t);
        } else
            src.append(t);
    }
}

typedef QPair<int,float> Neighbor; // QPair<id,similarity>
typedef QList<Neighbor> Neighbors;
typedef QVector<Neighbors> Neighborhood;

BR_EXPORT bool compareNeighbors(const Neighbor &a, const Neighbor &b);

class BR_EXPORT UntrainableDistance : public Distance
{
    Q_OBJECT

private:
    bool trainable() { return false; }
    void train(const TemplateList &data) { (void) data; }
};

/*!
 * \brief A br::Distance that checks the elements of its list property to see if it needs to be trained.
 */
class BR_EXPORT ListDistance : public Distance
{
    Q_OBJECT

public:
    Q_PROPERTY(QList<br::Distance*> distances READ get_distances WRITE set_distances RESET reset_distances)
    BR_PROPERTY(QList<br::Distance*>, distances, QList<br::Distance*>())

    bool trainable()
    {
        for (int i=0; i<distances.size(); i++)
            if (distances[i]->trainable())
                return true;
        return false;
    }
};

}

#endif // OPENBR_INTERNAL_H