From b2e51bc454905102fb7d14828a935d33cb4dad30 Mon Sep 17 00:00:00 2001 From: Josh Klontz Date: Tue, 31 Aug 2021 18:03:44 -0600 Subject: [PATCH] remove name --- openbr/plugins/metadata/name.cpp | 44 -------------------------------------------- 1 file changed, 0 insertions(+), 44 deletions(-) delete mode 100644 openbr/plugins/metadata/name.cpp diff --git a/openbr/plugins/metadata/name.cpp b/openbr/plugins/metadata/name.cpp deleted file mode 100644 index 9ed7529..0000000 --- a/openbr/plugins/metadata/name.cpp +++ /dev/null @@ -1,44 +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 - -namespace br -{ - -/*! - * \ingroup transforms - * \brief Sets the Template's matrix data to the br::File::name. - * \author Josh Klontz \cite jklontz - */ -class NameTransform : public UntrainableMetaTransform -{ - Q_OBJECT - - void project(const Template &src, Template &dst) const - { - dst.file = src.file; - QByteArray name = src.file.baseName().toLocal8Bit(); - dst = cv::Mat(1, name.size(), CV_8UC1); - memcpy(dst.m().data, name.data(), name.size()); - } -}; - -BR_REGISTER(Transform, NameTransform) - -} // namespace br - -#include "metadata/name.moc" -- libgit2 0.21.4