Path: blob/master/modules/imgproc/src/imgwarp.avx2.cpp
16339 views
/*M///////////////////////////////////////////////////////////////////////////////////////1//2// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.3//4// By downloading, copying, installing or using the software you agree to this license.5// If you do not agree to this license, do not download, install,6// copy or use the software.7//8//9// License Agreement10// For Open Source Computer Vision Library11//12// Copyright (C) 2000-2008, Intel Corporation, all rights reserved.13// Copyright (C) 2009, Willow Garage Inc., all rights reserved.14// Copyright (C) 2014-2015, Itseez Inc., all rights reserved.15// Third party copyrights are property of their respective owners.16//17// Redistribution and use in source and binary forms, with or without modification,18// are permitted provided that the following conditions are met:19//20// * Redistribution's of source code must retain the above copyright notice,21// this list of conditions and the following disclaimer.22//23// * Redistribution's in binary form must reproduce the above copyright notice,24// this list of conditions and the following disclaimer in the documentation25// and/or other materials provided with the distribution.26//27// * The name of the copyright holders may not be used to endorse or promote products28// derived from this software without specific prior written permission.29//30// This software is provided by the copyright holders and contributors "as is" and31// any express or implied warranties, including, but not limited to, the implied32// warranties of merchantability and fitness for a particular purpose are disclaimed.33// In no event shall the Intel Corporation or contributors be liable for any direct,34// indirect, incidental, special, exemplary, or consequential damages35// (including, but not limited to, procurement of substitute goods or services;36// loss of use, data, or profits; or business interruption) however caused37// and on any theory of liability, whether in contract, strict liability,38// or tort (including negligence or otherwise) arising in any way out of39// the use of this software, even if advised of the possibility of such damage.40//41//M*/4243/* ////////////////////////////////////////////////////////////////////44//45// Geometrical transforms on images and matrices: rotation, zoom etc.46//47// */4849#include "precomp.hpp"50#include "imgwarp.hpp"5152namespace cv53{54namespace opt_AVX255{5657int warpAffineBlockline(int *adelta, int *bdelta, short* xy, short* alpha, int X0, int Y0, int bw)58{59const int AB_BITS = MAX(10, (int)INTER_BITS);60int x1 = 0;61__m256i fxy_mask = _mm256_set1_epi32(INTER_TAB_SIZE - 1);62__m256i XX = _mm256_set1_epi32(X0), YY = _mm256_set1_epi32(Y0);63for (; x1 <= bw - 16; x1 += 16)64{65__m256i tx0, tx1, ty0, ty1;66tx0 = _mm256_add_epi32(_mm256_loadu_si256((const __m256i*)(adelta + x1)), XX);67ty0 = _mm256_add_epi32(_mm256_loadu_si256((const __m256i*)(bdelta + x1)), YY);68tx1 = _mm256_add_epi32(_mm256_loadu_si256((const __m256i*)(adelta + x1 + 8)), XX);69ty1 = _mm256_add_epi32(_mm256_loadu_si256((const __m256i*)(bdelta + x1 + 8)), YY);7071tx0 = _mm256_srai_epi32(tx0, AB_BITS - INTER_BITS);72ty0 = _mm256_srai_epi32(ty0, AB_BITS - INTER_BITS);73tx1 = _mm256_srai_epi32(tx1, AB_BITS - INTER_BITS);74ty1 = _mm256_srai_epi32(ty1, AB_BITS - INTER_BITS);7576__m256i fx_ = _mm256_packs_epi32(_mm256_and_si256(tx0, fxy_mask),77_mm256_and_si256(tx1, fxy_mask));78__m256i fy_ = _mm256_packs_epi32(_mm256_and_si256(ty0, fxy_mask),79_mm256_and_si256(ty1, fxy_mask));80tx0 = _mm256_packs_epi32(_mm256_srai_epi32(tx0, INTER_BITS),81_mm256_srai_epi32(tx1, INTER_BITS));82ty0 = _mm256_packs_epi32(_mm256_srai_epi32(ty0, INTER_BITS),83_mm256_srai_epi32(ty1, INTER_BITS));84fx_ = _mm256_adds_epi16(fx_, _mm256_slli_epi16(fy_, INTER_BITS));85fx_ = _mm256_permute4x64_epi64(fx_, (3 << 6) + (1 << 4) + (2 << 2) + 0);8687_mm256_storeu_si256((__m256i*)(xy + x1 * 2), _mm256_unpacklo_epi16(tx0, ty0));88_mm256_storeu_si256((__m256i*)(xy + x1 * 2 + 16), _mm256_unpackhi_epi16(tx0, ty0));89_mm256_storeu_si256((__m256i*)(alpha + x1), fx_);90}91_mm256_zeroupper();92return x1;93}9495}96}97/* End of file. */9899100