Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYimingWu <xp8110@outlook.com>2021-03-10 02:59:23 +0300
committerYimingWu <xp8110@outlook.com>2021-03-10 02:59:23 +0300
commit9166075cbeb4163566bf943f7844759702147a8a (patch)
tree1109502274df385ceabfbb3707a56e164c121edc /source/blender/compositor/operations/COM_DistanceYCCMatteOperation.cc
parent10c097eff0416368bf769c3349e9c81c12f19d5f (diff)
parent53b82efed66baddff3b7ef6c93a919ef10f4ef42 (diff)
Merge remote-tracking branch 'origin/master' into lanpr-under-gp
Diffstat (limited to 'source/blender/compositor/operations/COM_DistanceYCCMatteOperation.cc')
-rw-r--r--source/blender/compositor/operations/COM_DistanceYCCMatteOperation.cc31
1 files changed, 31 insertions, 0 deletions
diff --git a/source/blender/compositor/operations/COM_DistanceYCCMatteOperation.cc b/source/blender/compositor/operations/COM_DistanceYCCMatteOperation.cc
new file mode 100644
index 00000000000..f333cc1ecd9
--- /dev/null
+++ b/source/blender/compositor/operations/COM_DistanceYCCMatteOperation.cc
@@ -0,0 +1,31 @@
+/*
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ * Copyright 2011, Blender Foundation.
+ */
+
+#include "COM_DistanceYCCMatteOperation.h"
+#include "BLI_math.h"
+
+DistanceYCCMatteOperation::DistanceYCCMatteOperation()
+{
+ /* pass */
+}
+
+float DistanceYCCMatteOperation::calculateDistance(float key[4], float image[4])
+{
+ /* only measure the second 2 values */
+ return len_v2v2(key + 1, image + 1);
+}