From 9a4f7be72af3997aa07604295ba5e76ead05dd0c Mon Sep 17 00:00:00 2001 From: Josh Klontz Date: Tue, 31 Aug 2021 17:22:03 -0600 Subject: [PATCH] removed template gallery --- openbr/plugins/gallery/template.cpp | 56 -------------------------------------------------------- 1 file changed, 0 insertions(+), 56 deletions(-) delete mode 100644 openbr/plugins/gallery/template.cpp diff --git a/openbr/plugins/gallery/template.cpp b/openbr/plugins/gallery/template.cpp deleted file mode 100644 index 00a040f..0000000 --- a/openbr/plugins/gallery/template.cpp +++ /dev/null @@ -1,56 +0,0 @@ -/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * - * Copyright 2012 The MITRE Corporation * - * * - * Licensed under the Apache License, Version 2.0 (the "License"); * - * you may not use this file except in compliance with the License. * - * You may obtain a copy of the License at * - * * - * http://www.apache.org/licenses/LICENSE-2.0 * - * * - * Unless required by applicable law or agreed to in writing, software * - * distributed under the License is distributed on an "AS IS" BASIS, * - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * - * See the License for the specific language governing permissions and * - * limitations under the License. * - * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ - -#include -#include - -namespace br -{ - -/*! - * \ingroup galleries - * \brief Treat the file as a single binary Template. - * \author Josh Klontz \cite jklontz - */ -class templateGallery : public Gallery -{ - Q_OBJECT - - TemplateList readBlock(bool *done) - { - *done = true; - QByteArray data; - QtUtils::readFile(file.name.left(file.name.size()-QString(".template").size()), data); - return TemplateList() << Template(file, cv::Mat(1, data.size(), CV_8UC1, data.data()).clone()); - } - - void write(const Template &t) - { - (void) t; - qFatal("Not supported."); - } - - void init() - { - // - } -}; - -BR_REGISTER(Gallery, templateGallery) - -} // namespace br - -#include "gallery/template.moc" -- libgit2 0.21.4