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 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388
|
/*
* Simd Library (http://ermig1979.github.io/Simd).
*
* Copyright (c) 2011-2021 Yermalayeu Ihar,
* 2014-2019 Antonenka Mikhail,
* 2019-2019 Facundo Galan.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#include "Simd/SimdView.hpp"
#include "Simd/SimdPixel.hpp"
#include "Simd/SimdPyramid.hpp"
#ifndef __SimdLib_hpp__
#define __SimdLib_hpp__
/*! @ingroup functions
Simd API C++ wrappers.
*/
namespace Simd
{
/*! @ingroup bgra_conversion
\fn void BgraToBgr(const View<A>& bgra, View<A>& bgr)
\short Converts 32-bit BGRA image to 24-bit BGR image.
All images must have the same width and height.
\note This function is a C++ wrapper for function ::SimdBgraToBgr.
\param [in] bgra - an input 32-bit BGRA image.
\param [out] bgr - an output 24-bit BGR image.
*/
template<template<class> class A> SIMD_INLINE void BgraToBgr(const View<A>& bgra, View<A>& bgr)
{
assert(EqualSize(bgra, bgr) && bgra.format == View<A>::Bgra32 && bgr.format == View<A>::Bgr24);
SimdBgraToBgr(bgra.data, bgra.width, bgra.height, bgra.stride, bgr.data, bgr.stride);
}
/*! @ingroup bgra_conversion
\fn void BgraToGray(const View<A>& bgra, View<A>& gray)
\short Converts 32-bit BGRA image to 8-bit gray image.
All images must have the same width and height.
\note This function is a C++ wrapper for function ::SimdBgraToGray.
\param [in] bgra - an input 32-bit BGRA image.
\param [out] gray - an output 8-bit gray image.
*/
template<template<class> class A> SIMD_INLINE void BgraToGray(const View<A>& bgra, View<A>& gray)
{
assert(EqualSize(bgra, gray) && bgra.format == View<A>::Bgra32 && gray.format == View<A>::Gray8);
SimdBgraToGray(bgra.data, bgra.width, bgra.height, bgra.stride, gray.data, gray.stride);
}
/*! @ingroup bgra_conversion
\fn void BgraToRgb(const View<A>& bgra, View<A>& rgb)
\short Converts 32-bit BGRA image to 24-bit RGB image.
All images must have the same width and height.
\note This function is a C++ wrapper for function ::SimdBgraToRgb.
\param [in] bgra - an input 32-bit BGRA image.
\param [out] rgb - an output 24-bit RGB image.
*/
template<template<class> class A> SIMD_INLINE void BgraToRgb(const View<A>& bgra, View<A>& rgb)
{
assert(EqualSize(bgra, rgb) && bgra.format == View<A>::Bgra32 && rgb.format == View<A>::Rgb24);
SimdBgraToRgb(bgra.data, bgra.width, bgra.height, bgra.stride, rgb.data, rgb.stride);
}
/*! @ingroup bgra_conversion
\fn void BgraToRgba(const View<A>& bgra, View<A>& rgba)
\short Converts 32-bit BGRA image to 32-bit RGBA image.
All images must have the same width and height.
\note This function is a C++ wrapper for function ::SimdBgraToRgba.
\param [in] bgra - an input 32-bit BGRA image.
\param [out] rgba - an output 32-bit RGBA image.
*/
template<template<class> class A> SIMD_INLINE void BgraToRgba(const View<A>& bgra, View<A>& rgba)
{
assert(EqualSize(bgra, rgba) && bgra.format == View<A>::Bgra32 && rgba.format == View<A>::Rgba32);
SimdBgraToRgba(bgra.data, bgra.width, bgra.height, bgra.stride, rgba.data, rgba.stride);
}
/*! @ingroup bgr_conversion
\fn void BgrToBgra(const View<A>& bgr, View<A>& bgra, uint8_t alpha = 0xFF)
\short Converts 24-bit BGR image to 32-bit BGRA image.
All images must have the same width and height.
\note This function is a C++ wrapper for function ::SimdBgrToBgra.
\param [in] bgr - an input 24-bit BGR image.
\param [out] bgra - an output 32-bit BGRA image.
\param [in] alpha - a value of alpha channel. It is equal to 256 by default.
*/
template<template<class> class A> SIMD_INLINE void BgrToBgra(const View<A>& bgr, View<A>& bgra, uint8_t alpha = 0xFF)
{
assert(EqualSize(bgr, bgra) && bgra.format == View<A>::Bgra32 && bgr.format == View<A>::Bgr24);
SimdBgrToBgra(bgr.data, bgr.width, bgr.height, bgr.stride, bgra.data, bgra.stride, alpha);
}
/*! @ingroup other_conversion
\fn void Bgr48pToBgra32(const View<A>& blue, const View<A>& green, const View<A>& red, View<A>& bgra, uint8_t alpha = 0xFF)
\short Converts 48-bit planar BGR image to 32-bit BGRA image.
All images must have the same width and height.
\note This function is a C++ wrapper for function ::SimdBgr48pToBgra32.
\param [in] blue - an input 16-bit image with blue color plane.
\param [in] green - an input 16-bit image with green color plane.
\param [in] red - an input 16-bit image with red color plane.
\param [out] bgra - an output 32-bit BGRA image.
\param [in] alpha - a value of alpha channel. It is equal to 256 by default.
*/
template<template<class> class A> SIMD_INLINE void Bgr48pToBgra32(const View<A>& blue, const View<A>& green, const View<A>& red, View<A>& bgra, uint8_t alpha = 0xFF)
{
assert(Compatible(blue, green, red) && EqualSize(blue, bgra) && blue.format == View<A>::Int16 && bgra.format == View<A>::Bgra32);
SimdBgr48pToBgra32(blue.data, blue.stride, blue.width, blue.height, green.data, green.stride, red.data, red.stride, bgra.data, bgra.stride, alpha);
}
/*! @ingroup bgr_conversion
\fn void BgrToGray(const View<A>& bgr, View<A>& gray)
\short Converts 24-bit BGR image to 8-bit gray image.
All images must have the same width and height.
\note This function is a C++ wrapper for function ::SimdBgrToGray.
\param [in] bgr - an input 24-bit BGR image.
\param [out] gray - an output 8-bit gray image.
*/
template<template<class> class A> SIMD_INLINE void BgrToGray(const View<A>& bgr, View<A>& gray)
{
assert(EqualSize(bgr, gray) && bgr.format == View<A>::Bgr24 && gray.format == View<A>::Gray8);
SimdBgrToGray(bgr.data, bgr.width, bgr.height, bgr.stride, gray.data, gray.stride);
}
/*! @ingroup bgr_conversion
\fn void BgrToRgb(const View<A> & bgr, View<A> & rgb)
\short Converts 24-bit BGR image to 24-bit RGB image.
All images must have the same width and height.
\note This function is a C++ wrapper for function ::SimdBgrToRgb.
\param [in] bgr - an input 24-bit BGR image.
\param [out] rgb - an output 24-bit RGB image.
*/
template<template<class> class A> SIMD_INLINE void BgrToRgb(const View<A> & bgr, View<A> & rgb)
{
assert(EqualSize(bgr, rgb) && bgr.format == View<A>::Bgr24 && rgb.format == View<A>::Rgb24);
SimdBgrToRgb(bgr.data, bgr.width, bgr.height, bgr.stride, rgb.data, rgb.stride);
}
/*! @ingroup bgr_conversion
\fn void BgrToRgba(const View<A>& bgr, View<A>& rgba, uint8_t alpha = 0xFF)
\short Converts 24-bit BGR image to 32-bit RGBA image.
All images must have the same width and height.
\note This function is a C++ wrapper for function ::SimdRgbToBgra.
\param [in] bgr - an input 24-bit BGR image.
\param [out] rgba - an output 32-bit RGBA image.
\param [in] alpha - a value of alpha channel. It is equal to 256 by default.
*/
template<template<class> class A> SIMD_INLINE void BgrToRgba(const View<A>& bgr, View<A>& rgba, uint8_t alpha = 0xFF)
{
assert(EqualSize(bgr, rgba) && rgba.format == View<A>::Rgba32 && bgr.format == View<A>::Bgr24);
SimdRgbToBgra(bgr.data, bgr.width, bgr.height, bgr.stride, rgba.data, rgba.stride, alpha);
}
/*! @ingroup copying
\fn void Copy(const View<A> & src, View<B> & dst)
\short Copies pixels data of image from source to destination.
All images must have the same width, height and format.
\note This function is a C++ wrapper for function ::SimdCopy.
\param [in] src - a source image.
\param [out] dst - a destination image.
*/
template<template<class> class A, template<class> class B> SIMD_INLINE void Copy(const View<A> & src, View<B> & dst)
{
assert(Compatible(src, dst));
if (src.format)
{
SimdCopy(src.data, src.stride, src.width, src.height, src.PixelSize(), dst.data, dst.stride);
}
}
/*! @ingroup copying
\fn void CopyFrame(const View<A>& src, const Rectangle<ptrdiff_t> & frame, View<A>& dst)
\short Copies pixels data of image from source to destination except for the portion bounded frame.
All images must have the same width, height and format.
\note This function is a C++ wrapper for function ::SimdCopyFrame.
\param [in] src - a source image.
\param [in] frame - a frame rectangle.
\param [out] dst - a destination image.
*/
template<template<class> class A> SIMD_INLINE void CopyFrame(const View<A>& src, const Rectangle<ptrdiff_t> & frame, View<A>& dst)
{
assert(Compatible(src, dst) && frame.Width() >= 0 && frame.Height() >= 0);
assert(frame.left >= 0 && frame.top >= 0 && frame.right <= ptrdiff_t(src.width) && frame.bottom <= ptrdiff_t(src.height));
SimdCopyFrame(src.data, src.stride, src.width, src.height, src.PixelSize(),
frame.left, frame.top, frame.right, frame.bottom, dst.data, dst.stride);
}
/*! @ingroup deinterleave_conversion
\fn void DeinterleaveBgr(const View<A>& bgr, View<A>& b, View<A>& g, View<A>& r)
\short Deinterleaves 24-bit BGR interleaved image into separated 8-bit Blue, Green and Red planar images.
All images must have the same width and height.
\note This function is a C++ wrapper for function ::SimdDeinterleaveBgr.
\param [in] bgr - an input 24-bit BGR interleaved image.
\param [out] b - an output 8-bit Blue planar image.
\param [out] g - an output 8-bit Green planar image.
\param [out] r - an output 8-bit Red planar image.
*/
template<template<class> class A> SIMD_INLINE void DeinterleaveBgr(const View<A>& bgr, View<A>& b, View<A>& g, View<A>& r)
{
assert(EqualSize(bgr, b) && Compatible(b, g, r) && bgr.format == View<A>::Bgr24 && b.format == View<A>::Gray8);
SimdDeinterleaveBgr(bgr.data, bgr.stride, bgr.width, bgr.height, b.data, b.stride, g.data, g.stride, r.data, r.stride);
}
/*! @ingroup deinterleave_conversion
\fn void DeinterleaveBgra(const View<A>& bgra, View<A>& b, View<A>& g, View<A>& r, View<A>& a)
\short Deinterleaves 32-bit BGRA interleaved image into separated 8-bit Blue, Green, Red and Alpha planar images.
All images must have the same width and height.
\note This function is a C++ wrapper for function ::SimdDeinterleaveBgra.
\param [in] bgra - an input 32-bit BGRA interleaved image.
\param [out] b - an output 8-bit Blue planar image.
\param [out] g - an output 8-bit Green planar image.
\param [out] r - an output 8-bit Red planar image.
\param [out] a - an output 8-bit Alpha planar image.
*/
template<template<class> class A> SIMD_INLINE void DeinterleaveBgra(const View<A>& bgra, View<A>& b, View<A>& g, View<A>& r, View<A>& a)
{
assert(EqualSize(bgra, b) && Compatible(b, g, r, a) && bgra.format == View<A>::Bgra32 && b.format == View<A>::Gray8);
SimdDeinterleaveBgra(bgra.data, bgra.stride, bgra.width, bgra.height, b.data, b.stride, g.data, g.stride, r.data, r.stride, a.data, a.stride);
}
/*! @ingroup deinterleave_conversion
\fn void DeinterleaveBgra(const View<A>& bgra, View<A>& b, View<A>& g, View<A>& r)
\short Deinterleaves 32-bit BGRA interleaved image into separated 8-bit Blue, Green and Red planar images (Alpha channel is ignored).
All images must have the same width and height.
\note This function is a C++ wrapper for function ::SimdDeinterleaveBgra.
\param [in] bgra - an input 32-bit BGRA interleaved image.
\param [out] b - an output 8-bit Blue planar image.
\param [out] g - an output 8-bit Green planar image.
\param [out] r - an output 8-bit Red planar image.
*/
template<template<class> class A> SIMD_INLINE void DeinterleaveBgra(const View<A>& bgra, View<A>& b, View<A>& g, View<A>& r)
{
assert(EqualSize(bgra, b) && Compatible(b, g, r) && bgra.format == View<A>::Bgra32 && b.format == View<A>::Gray8);
SimdDeinterleaveBgra(bgra.data, bgra.stride, bgra.width, bgra.height, b.data, b.stride, g.data, g.stride, r.data, r.stride, NULL, 0);
}
/*! @ingroup deinterleave_conversion
\fn void DeinterleaveRgb(const View<A>& rgb, View<A>& r, View<A>& g, View<A>& b)
\short Deinterleaves 24-bit RGB interleaved image into separated 8-bit Red, Green and Blue planar images.
All images must have the same width and height.
\note This function is a C++ wrapper for function ::SimdDeinterleaveBgr.
\param [in] rgb - an input 24-bit RGB interleaved image.
\param [out] r - an output 8-bit Red planar image.
\param [out] g - an output 8-bit Green planar image.
\param [out] b - an output 8-bit Blue planar image.
*/
template<template<class> class A> SIMD_INLINE void DeinterleaveRgb(const View<A>& rgb, View<A>& r, View<A>& g, View<A>& b)
{
assert(EqualSize(rgb, b) && Compatible(b, g, r) && rgb.format == View<A>::Rgb24 && b.format == View<A>::Gray8);
SimdDeinterleaveBgr(rgb.data, rgb.stride, rgb.width, rgb.height, r.data, r.stride, g.data, g.stride, b.data, b.stride);
}
/*! @ingroup deinterleave_conversion
\fn void DeinterleaveRgba(const View<A>& rgba, View<A>& r, View<A>& g, View<A>& b, View<A>& a)
\short Deinterleaves 32-bit RGBA interleaved image into separated 8-bit Red, Green, Blue and Alpha planar images.
All images must have the same width and height.
\note This function is a C++ wrapper for function ::SimdDeinterleaveBgra.
\param [in] rgba - an input 32-bit RGBA interleaved image.
\param [out] r - an output 8-bit Red planar image.
\param [out] g - an output 8-bit Green planar image.
\param [out] b - an output 8-bit Blue planar image.
\param [out] a - an output 8-bit Alpha planar image.
*/
template<template<class> class A> SIMD_INLINE void DeinterleaveRgba(const View<A>& rgba, View<A>& r, View<A>& g, View<A>& b, View<A>& a)
{
assert(EqualSize(rgba, b) && Compatible(b, g, r, a) && rgba.format == View<A>::Rgba32 && b.format == View<A>::Gray8);
SimdDeinterleaveBgra(rgba.data, rgba.stride, rgba.width, rgba.height, r.data, r.stride, g.data, g.stride, b.data, b.stride, a.data, a.stride);
}
/*! @ingroup deinterleave_conversion
\fn void DeinterleaveRgba(const View<A>& rgba, View<A>& r, View<A>& g, View<A>& b)
\short Deinterleaves 32-bit RGBA interleaved image into separated 8-bit Red, Green and Blue planar images (Alpha channel is ignored).
All images must have the same width and height.
\note This function is a C++ wrapper for function ::SimdDeinterleaveBgra.
\param [in] rgba - an input 32-bit RGBA interleaved image.
\param [out] r - an output 8-bit Red planar image.
\param [out] g - an output 8-bit Green planar image.
\param [out] b - an output 8-bit Blue planar image.
*/
template<template<class> class A> SIMD_INLINE void DeinterleaveRgba(const View<A>& rgba, View<A>& r, View<A>& g, View<A>& b)
{
assert(EqualSize(rgba, b) && Compatible(b, g, r) && rgba.format == View<A>::Rgba32 && b.format == View<A>::Gray8);
SimdDeinterleaveBgra(rgba.data, rgba.stride, rgba.width, rgba.height, r.data, r.stride, g.data, g.stride, b.data, b.stride, NULL, 0);
}
/*! @ingroup other_filter
\fn void GaussianBlur3x3(const View<A>& src, View<A>& dst)
\short Performs Gaussian blur filtration with window 3x3.
For every point:
\verbatim
dst[x, y] = (src[x-1, y-1] + 2*src[x, y-1] + src[x+1, y-1] +
2*(src[x-1, y] + 2*src[x, y] + src[x+1, y]) +
src[x-1, y+1] + 2*src[x, y+1] + src[x+1, y+1] + 8) / 16;
\endverbatim
All images must have the same width, height and format (8-bit gray, 16-bit UV, 24-bit BGR or 32-bit BGRA).
\note This function is a C++ wrapper for function ::SimdGaussianBlur3x3.
\param [in] src - a source image.
\param [out] dst - a destination image.
*/
template<template<class> class A> SIMD_INLINE void GaussianBlur3x3(const View<A>& src, View<A>& dst)
{
assert(Compatible(src, dst) && src.ChannelSize() == 1);
SimdGaussianBlur3x3(src.data, src.stride, src.width, src.height, src.ChannelCount(), dst.data, dst.stride);
}
/*! @ingroup gray_conversion
\fn void GrayToBgr(const View<A>& gray, View<A>& bgr)
\short Converts 8-bit gray image to 24-bit BGR image.
All images must have the same width and height.
\note This function is a C++ wrapper for function ::SimdGrayToBgr.
\param [in] gray - an input 8-bit gray image.
\param [out] bgr - an output 24-bit BGR image.
*/
template<template<class> class A> SIMD_INLINE void GrayToBgr(const View<A>& gray, View<A>& bgr)
{
assert(EqualSize(gray, bgr) && bgr.format == View<A>::Bgr24 && gray.format == View<A>::Gray8);
SimdGrayToBgr(gray.data, gray.width, gray.height, gray.stride, bgr.data, bgr.stride);
}
/*! @ingroup gray_conversion
\fn void GrayToRgb(const View<A>& gray, View<A>& rgb)
\short Converts 8-bit gray image to 24-bit RGB image.
All images must have the same width and height.
\note This function is a C++ wrapper for function ::SimdGrayToBgr.
\param [in] gray - an input 8-bit gray image.
\param [out] rgb - an output 24-bit RGB image.
*/
template<template<class> class A> SIMD_INLINE void GrayToRgb(const View<A>& gray, View<A>& rgb)
{
assert(EqualSize(gray, rgb) && rgb.format == View<A>::Rgb24 && gray.format == View<A>::Gray8);
SimdGrayToBgr(gray.data, gray.width, gray.height, gray.stride, rgb.data, rgb.stride);
}
/*! @ingroup gray_conversion
\fn void GrayToBgra(const View<A>& gray, View<A>& bgra, uint8_t alpha = 0xFF)
\short Converts 8-bit gray image to 32-bit BGRA image.
All images must have the same width and height.
\note This function is a C++ wrapper for function ::SimdGrayToBgra.
\param [in] gray - an input 8-bit gray image.
\param [out] bgra - an output 32-bit BGRA image.
\param [in] alpha - a value of alpha channel. It is equal to 255 by default.
*/
template<template<class> class A> SIMD_INLINE void GrayToBgra(const View<A>& gray, View<A>& bgra, uint8_t alpha = 0xFF)
{
assert(EqualSize(gray, bgra) && bgra.format == View<A>::Bgra32 && gray.format == View<A>::Gray8);
SimdGrayToBgra(gray.data, gray.width, gray.height, gray.stride, bgra.data, bgra.stride, alpha);
}
/*! @ingroup gray_conversion
\fn void GrayToRgba(const View<A>& gray, View<A>& rgba, uint8_t alpha = 0xFF)
\short Converts 8-bit gray image to 32-bit RGBA image.
All images must have the same width and height.
\note This function is a C++ wrapper for function ::SimdGrayToBgra.
\param [in] gray - an input 8-bit gray image.
\param [out] rgba - an output 32-bit RGBA image.
\param [in] alpha - a value of alpha channel. It is equal to 255 by default.
*/
template<template<class> class A> SIMD_INLINE void GrayToRgba(const View<A>& gray, View<A>& rgba, uint8_t alpha = 0xFF)
{
assert(EqualSize(gray, rgba) && rgba.format == View<A>::Rgba32 && gray.format == View<A>::Gray8);
SimdGrayToBgra(gray.data, gray.width, gray.height, gray.stride, rgba.data, rgba.stride, alpha);
}
/*! @ingroup other_conversion
\fn void InterleaveBgr(const View<A> & b, const View<A> & g, const View<A> & r, View<A> & bgr)
\short Interleaves 8-bit Blue, Green and Red planar images into one 24-bit BGR interleaved image.
All images must have the same width and height.
\note This function is a C++ wrapper for function ::SimdInterleaveBgr.
\param [in] b - an input 8-bit Blue planar image.
\param [in] g - an input 8-bit Green planar image.
\param [in] r - an input 8-bit Red planar image.
\param [out] bgr - an output 24-bit BGR interleaved image.
*/
template<template<class> class A> SIMD_INLINE void InterleaveBgr(const View<A> & b, const View<A> & g, const View<A> & r, View<A> & bgr)
{
assert(EqualSize(bgr, b, g, r) && Compatible(b, g, r) && bgr.format == View<A>::Bgr24 && b.format == View<A>::Gray8);
SimdInterleaveBgr(b.data, b.stride, g.data, g.stride, r.data, r.stride, bgr.width, bgr.height, bgr.data, bgr.stride);
}
/*! @ingroup interleave_conversion
\fn void InterleaveBgra(const View<A>& b, const View<A>& g, const View<A>& r, const View<A>& a, View<A>& bgra)
\short Interleaves 8-bit Blue, Green, Red and Alpha planar images into one 32-bit BGRA interleaved image.
All images must have the same width and height.
\note This function is a C++ wrapper for function ::SimdInterleaveBgra.
\param [in] b - an input 8-bit Blue planar image.
\param [in] g - an input 8-bit Green planar image.
\param [in] r - an input 8-bit Red planar image.
\param [in] a - an input 8-bit Alpha planar image.
\param [out] bgra - an output 32-bit BGRA interleaved image.
*/
template<template<class> class A> SIMD_INLINE void InterleaveBgra(const View<A>& b, const View<A>& g, const View<A>& r, const View<A>& a, View<A>& bgra)
{
assert(EqualSize(bgra, b) && Compatible(b, g, r, a) && bgra.format == View<A>::Bgra32 && b.format == View<A>::Gray8);
SimdInterleaveBgra(b.data, b.stride, g.data, g.stride, r.data, r.stride, a.data, a.stride, bgra.width, bgra.height, bgra.data, bgra.stride);
}
/*! @ingroup other_filter
\fn void MeanFilter3x3(const View<A>& src, View<A>& dst)
\short Performs an averaging with window 3x3.
For every point:
\verbatim
dst[x, y] = (src[x-1, y-1] + src[x, y-1] + src[x+1, y-1] +
src[x-1, y] + src[x, y] + src[x+1, y] +
src[x-1, y+1] + src[x, y+1] + src[x+1, y+1] + 4) / 9;
\endverbatim
All images must have the same width, height and format (8-bit gray, 16-bit UV, 24-bit BGR or 32-bit BGRA).
\note This function is a C++ wrapper for function ::SimdMeanFilter3x3.
\param [in] src - a source image.
\param [out] dst - a destination image.
*/
template<template<class> class A> SIMD_INLINE void MeanFilter3x3(const View<A>& src, View<A>& dst)
{
assert(Compatible(src, dst) && src.ChannelSize() == 1);
SimdMeanFilter3x3(src.data, src.stride, src.width, src.height, src.ChannelCount(), dst.data, dst.stride);
}
/*! @ingroup median_filter
\fn void MedianFilterRhomb3x3(const View<A>& src, View<A>& dst)
\short Performs median filtration of input image (filter window is a rhomb 3x3).
All images must have the same width, height and format (8-bit gray, 16-bit UV, 24-bit BGR or 32-bit BGRA).
\note This function is a C++ wrapper for function ::SimdMedianFilterRhomb3x3.
\param [in] src - an original input image.
\param [out] dst - a filtered output image.
*/
template<template<class> class A> SIMD_INLINE void MedianFilterRhomb3x3(const View<A>& src, View<A>& dst)
{
assert(Compatible(src, dst) && src.ChannelSize() == 1);
SimdMedianFilterRhomb3x3(src.data, src.stride, src.width, src.height, src.ChannelCount(), dst.data, dst.stride);
}
/*! @ingroup median_filter
\fn void MedianFilterRhomb5x5(const View<A>& src, View<A>& dst)
\short Performs median filtration of input image (filter window is a rhomb 5x5).
All images must have the same width, height and format (8-bit gray, 16-bit UV, 24-bit BGR or 32-bit BGRA).
\note This function is a C++ wrapper for function ::SimdMedianFilterRhomb5x5.
\param [in] src - an original input image.
\param [out] dst - a filtered output image.
*/
template<template<class> class A> SIMD_INLINE void MedianFilterRhomb5x5(const View<A>& src, View<A>& dst)
{
assert(Compatible(src, dst) && src.ChannelSize() == 1);
SimdMedianFilterRhomb5x5(src.data, src.stride, src.width, src.height, src.ChannelCount(), dst.data, dst.stride);
}
/*! @ingroup median_filter
\fn void MedianFilterSquare3x3(const View<A>& src, View<A>& dst)
\short Performs median filtration of input image (filter window is a square 3x3).
All images must have the same width, height and format (8-bit gray, 16-bit UV, 24-bit BGR or 32-bit BGRA).
\note This function is a C++ wrapper for function ::SimdMedianFilterSquare3x3.
\param [in] src - an original input image.
\param [out] dst - a filtered output image.
*/
template<template<class> class A> SIMD_INLINE void MedianFilterSquare3x3(const View<A>& src, View<A>& dst)
{
assert(Compatible(src, dst) && src.ChannelSize() == 1);
SimdMedianFilterSquare3x3(src.data, src.stride, src.width, src.height, src.ChannelCount(), dst.data, dst.stride);
}
/*! @ingroup median_filter
\fn void MedianFilterSquare5x5(const View<A>& src, View<A>& dst)
\short Performs median filtration of input image (filter window is a square 5x5).
All images must have the same width, height and format (8-bit gray, 16-bit UV, 24-bit BGR or 32-bit BGRA).
\note This function is a C++ wrapper for function ::SimdMedianFilterSquare5x5.
\param [in] src - an original input image.
\param [out] dst - a filtered output image.
*/
template<template<class> class A> SIMD_INLINE void MedianFilterSquare5x5(const View<A>& src, View<A>& dst)
{
assert(Compatible(src, dst) && src.ChannelSize() == 1);
SimdMedianFilterSquare5x5(src.data, src.stride, src.width, src.height, src.ChannelCount(), dst.data, dst.stride);
}
/*! @ingroup operation
\fn void OperationBinary8u(const View<A>& a, const View<A>& b, View<A>& dst, SimdOperationBinary8uType type)
\short Performs given operation between two images.
All images must have the same width, height and format (8-bit gray, 16-bit UV (UV plane of NV12 pixel format), 24-bit BGR or 32-bit BGRA).
\note This function is a C++ wrapper for function ::SimdOperationBinary8u.
\param [in] a - a first input image.
\param [in] b - a second input image.
\param [out] dst - an output image.
\param [in] type - a type of operation (see ::SimdOperationBinary8uType).
*/
template<template<class> class A> SIMD_INLINE void OperationBinary8u(const View<A>& a, const View<A>& b, View<A>& dst, SimdOperationBinary8uType type)
{
assert(Compatible(a, b, dst) && a.ChannelSize() == 1);
SimdOperationBinary8u(a.data, a.stride, b.data, b.stride, a.width, a.height, a.ChannelCount(), dst.data, dst.stride, type);
}
/*! @ingroup resizing
\fn void ReduceGray2x2(const View<A>& src, View<A>& dst)
\short Performs reducing (in 2 times) and Gaussian blurring a 8-bit gray image with using window 2x2.
For input and output image must be performed: dst.width = (src.width + 1)/2, dst.height = (src.height + 1)/2.
For all points:
\verbatim
dst[x, y] = (src[2*x, 2*y] + src[2*x, 2*y + 1] + src[2*x + 1, 2*y] + src[2*x + 1, 2*y + 1] + 2)/4;
\endverbatim
\note This function is a C++ wrapper for function ::SimdReduceGray2x2.
\param [in] src - an original input image.
\param [out] dst - a reduced output image.
*/
template<template<class> class A> SIMD_INLINE void ReduceGray2x2(const View<A>& src, View<A>& dst)
{
assert(src.format == View<A>::Gray8 && dst.format == View<A>::Gray8 && Scale(src.Size()) == dst.Size());
SimdReduceGray2x2(src.data, src.width, src.height, src.stride, dst.data, dst.width, dst.height, dst.stride);
}
/*! @ingroup resizing
\fn void ReduceGray3x3(const View<A>& src, View<A>& dst, bool compensation = true)
\short Performs reducing (in 2 times) and Gaussian blurring a 8-bit gray image with using window 3x3.
For input and output image must be performed: dst.width = (src.width + 1)/2, dst.height = (src.height + 1)/2.
For every point:
\verbatim
dst[x, y] = (src[2*x-1, 2*y-1] + 2*src[2*x, 2*y-1] + src[2*x+1, 2*y-1] +
2*(src[2*x-1, 2*y] + 2*src[2*x, 2*y] + src[2*x+1, 2*y]) +
src[2*x-1, 2*y+1] + 2*src[2*x, 2*y+1] + src[2*x+1, 2*y+1] + compensation ? 8 : 0) / 16;
\endverbatim
\note This function is a C++ wrapper for function ::SimdReduceGray3x3.
\param [in] src - an original input image.
\param [out] dst - a reduced output image.
\param [in] compensation - a flag of compensation of rounding. It is equal to 'true' by default.
*/
template<template<class> class A> SIMD_INLINE void ReduceGray3x3(const View<A>& src, View<A>& dst, bool compensation = true)
{
assert(src.format == View<A>::Gray8 && dst.format == View<A>::Gray8 && Scale(src.Size()) == dst.Size());
SimdReduceGray3x3(src.data, src.width, src.height, src.stride, dst.data, dst.width, dst.height, dst.stride, compensation ? 1 : 0);
}
/*! @ingroup resizing
\fn void ReduceGray4x4(const View<A>& src, View<A>& dst)
\short Performs reducing (in 2 times) and Gaussian blurring a 8-bit gray image with using window 4x4.
For input and output image must be performed: dst.width = (src.width + 1)/2, dst.height = (src.height + 1)/2.
For every point:
\verbatim
dst[x, y] = (src[2*x-1, 2*y-1] + 3*src[2*x, 2*y-1] + 3*src[2*x+1, 2*y-1] + src[2*x+2, 2*y-1]
3*(src[2*x-1, 2*y] + 3*src[2*x, 2*y] + 3*src[2*x+1, 2*y] + src[2*x+2, 2*y]) +
3*(src[2*x-1, 2*y+1] + 3*src[2*x, 2*y+1] + 3*src[2*x+1, 2*y+1] + src[2*x+2, 2*y+1]) +
src[2*x-1, 2*y+2] + 3*src[2*x, 2*y+2] + 3*src[2*x+1, 2*y+2] + src[2*x+2, 2*y+2] + 32) / 64;
\endverbatim
\note This function is a C++ wrapper for function ::SimdReduceGray4x4.
\param [in] src - an original input image.
\param [out] dst - a reduced output image.
*/
template<template<class> class A> SIMD_INLINE void ReduceGray4x4(const View<A>& src, View<A>& dst)
{
assert(src.format == View<A>::Gray8 && dst.format == View<A>::Gray8 && Scale(src.Size()) == dst.Size());
SimdReduceGray4x4(src.data, src.width, src.height, src.stride, dst.data, dst.width, dst.height, dst.stride);
}
/*! @ingroup resizing
\fn void ReduceGray5x5(const View<A>& src, View<A>& dst, bool compensation = true)
\short Performs reducing (in 2 times) and Gaussian blurring a 8-bit gray image with using window 5x5.
For input and output image must be performed: dst.width = (src.width + 1)/2, dst.height = (src.height + 1)/2.
For every point:
\verbatim
dst[x, y] = (
src[2*x-2, 2*y-2] + 4*src[2*x-1, 2*y-2] + 6*src[2*x, 2*y-2] + 4*src[2*x+1, 2*y-2] + src[2*x+2, 2*y-2] +
4*(src[2*x-2, 2*y-1] + 4*src[2*x-1, 2*y-1] + 6*src[2*x, 2*y-1] + 4*src[2*x+1, 2*y-1] + src[2*x+2, 2*y-1]) +
6*(src[2*x-2, 2*y] + 4*src[2*x-1, 2*y] + 6*src[2*x, 2*y] + 4*src[2*x+1, 2*y] + src[2*x+2, 2*y]) +
4*(src[2*x-2, 2*y+1] + 4*src[2*x-1, 2*y+1] + 6*src[2*x, 2*y+1] + 4*src[2*x+1, 2*y+1] + src[2*x+2, 2*y+1]) +
src[2*x-2, 2*y+2] + 4*src[2*x-1, 2*y+2] + 6*src[2*x, 2*y+2] + 4*src[2*x+1, 2*y+2] + src[2*x+2, 2*y+2] +
compensation ? 128 : 0) / 256;
\endverbatim
\note This function is a C++ wrapper for function ::SimdReduceGray5x5.
\param [in] src - an original input image.
\param [out] dst - a reduced output image.
\param [in] compensation - a flag of compensation of rounding. It is equal to 'true' by default.
*/
template<template<class> class A> SIMD_INLINE void ReduceGray5x5(const View<A>& src, View<A>& dst, bool compensation = true)
{
assert(src.format == View<A>::Gray8 && dst.format == View<A>::Gray8 && Scale(src.Size()) == dst.Size());
SimdReduceGray5x5(src.data, src.width, src.height, src.stride, dst.data, dst.width, dst.height, dst.stride, compensation ? 1 : 0);
}
/*! @ingroup resizing
\fn void ReduceGray(const View<A> & src, View<A> & dst, ::SimdReduceType reduceType, bool compensation = true)
\short Performs reducing (in 2 times) and Gaussian blurring a 8-bit gray image.
For input and output image must be performed: dst.width = (src.width + 1)/2, dst.height = (src.height + 1)/2.
\param [in] src - an original input image.
\param [out] dst - a reduced output image.
\param [in] reduceType - a type of function used for image reducing.
\param [in] compensation - a flag of compensation of rounding. It is relevant only for ::SimdReduce3x3 and ::SimdReduce5x5. It is equal to 'true' by default.
*/
template<template<class> class A> SIMD_INLINE void ReduceGray(const View<A> & src, View<A> & dst, ::SimdReduceType reduceType, bool compensation = true)
{
assert(src.format == View<A>::Gray8 && dst.format == View<A>::Gray8 && Scale(src.Size()) == dst.Size());
switch (reduceType)
{
case SimdReduce2x2:
Simd::ReduceGray2x2(src, dst);
break;
case SimdReduce3x3:
Simd::ReduceGray3x3(src, dst, compensation);
break;
case SimdReduce4x4:
Simd::ReduceGray4x4(src, dst);
break;
case SimdReduce5x5:
Simd::ReduceGray5x5(src, dst, compensation);
break;
default:
assert(0);
}
}
/*! @ingroup resizing
\fn void Reduce2x2(const View<A> & src, View<A> & dst)
\short Performs reducing of image (in 2 times).
For input and output image must be performed: dst.width = (src.width + 1)/2, dst.height = (src.height + 1)/2.
\param [in] src - an original input image.
\param [out] dst - a reduced output image.
*/
template<template<class> class A> SIMD_INLINE void Reduce2x2(const View<A> & src, View<A> & dst)
{
assert(src.format == dst.format && Scale(src.Size()) == dst.Size() && src.ChannelSize() == 1);
SimdReduceColor2x2(src.data, src.width, src.height, src.stride, dst.data, dst.width, dst.height, dst.stride, src.ChannelCount());
}
/*! @ingroup resizing
\fn void ResizeBilinear(const View<A>& src, View<A>& dst)
\short Performs resizing of input image with using bilinear interpolation.
All images must have the same format (8-bit gray, 16-bit UV, 24-bit BGR or 32-bit BGRA).
\note This function is a C++ wrapper for function ::SimdResizeBilinear.
\param [in] src - an original input image.
\param [out] dst - a resized output image.
*/
template<template<class> class A> SIMD_INLINE void ResizeBilinear(const View<A> & src, View<A> & dst)
{
assert(src.format == dst.format && src.ChannelSize() == 1);
if (EqualSize(src, dst))
{
Copy(src, dst);
}
else
{
SimdResizeBilinear(src.data, src.width, src.height, src.stride,
dst.data, dst.width, dst.height, dst.stride, src.ChannelCount());
}
}
/*! @ingroup resizing
\fn void ResizeAreaGray(const View<A> & src, View<A> & dst)
\short Performs resizing of input image with using area interpolation.
All images must have the same format (8-bit gray).
\param [in] src - an original input image.
\param [out] dst - a resized output image.
*/
template<template<class> class A> SIMD_INLINE void ResizeAreaGray(const View<A> & src, View<A> & dst)
{
assert(src.format == dst.format && src.format == View<A>::Gray8);
if (EqualSize(src, dst))
{
Copy(src, dst);
}
else
{
size_t level = 0;
for (; (dst.width << (level + 1)) < (size_t)src.width; level++);
Point<ptrdiff_t> size = src.Size() << level;
if (level)
{
Pyramid<A> pyramid(size, level + 1);
Simd::ResizeBilinear(src, pyramid[0]);
for (size_t i = 0; i < level; ++i)
Simd::ReduceGray(pyramid.At(i), pyramid.At(i + 1), ::SimdReduce2x2);
Simd::Copy(pyramid[level], dst);
}
else
Simd::ResizeBilinear(src, dst);
}
}
/*! @ingroup resizing
\fn void ResizeArea(const View<A> & src, View<A> & dst)
\short Performs resizing of input image with using area interpolation.
All images must have the same format.
\param [in] src - an original input image.
\param [out] dst - a resized output image.
*/
template<template<class> class A> SIMD_INLINE void ResizeArea(const View<A> & src, View<A> & dst)
{
assert(src.format == dst.format);
if (EqualSize(src, dst))
{
Copy(src, dst);
}
else
{
size_t level = 0;
for (; (dst.width << (level + 1)) < (size_t)src.width; level++);
Point<ptrdiff_t> size = src.Size() << level;
if (level)
{
std::vector<View<A> > pyramid(level);
pyramid[0].Resize(size, src.format);
Simd::ResizeBilinear(src, pyramid[0]);
for (size_t i = 1; i < level; ++i)
{
size = Simd::Scale(size);
pyramid[i].Resize(size, src.format);
Simd::Reduce2x2(pyramid.At(i - 1), pyramid.At(i));
}
Simd::Reduce2x2(pyramid.At(level - 1), dst);
}
else
Simd::ResizeBilinear(src, dst);
}
}
/*! @ingroup resizing
\fn void Resize(const View<A> & src, View<A> & dst, ::SimdResizeMethodType method = ::SimdResizeMethodBilinear)
\short Performs resizing of image.
All images must have the same format.
\param [in] src - an original input image.
\param [out] dst - a resized output image.
\param [in] method - a resizing method. By default it is equal to ::SimdResizeMethodBilinear.
*/
template<template<class> class A> SIMD_INLINE void Resize(const View<A> & src, View<A> & dst, ::SimdResizeMethodType method = ::SimdResizeMethodBilinear)
{
assert(src.format == dst.format && (src.format == View<A>::Float || src.ChannelSize() == 1));
if (EqualSize(src, dst))
{
Copy(src, dst);
}
else
{
SimdResizeChannelType type = src.format == View<A>::Float ? SimdResizeChannelFloat : SimdResizeChannelByte;
void * resizer = SimdResizerInit(src.width, src.height, dst.width, dst.height, src.ChannelCount(), type, method);
if (resizer)
{
SimdResizerRun(resizer, src.data, src.stride, dst.data, dst.stride);
SimdRelease(resizer);
}
else
assert(0);
}
}
/*! @ingroup resizing
\fn void Resize(const View<A> & src, View<A> & dst, const Point<ptrdiff_t> & size, ::SimdResizeMethodType method = ::SimdResizeMethodBilinear)
\short Performs resizing of image.
\param [in] src - an original input image.
\param [out] dst - a resized output image. The input image can be the output.
\param [in] size - a size of output image.
\param [in] method - a resizing method. By default it is equal to ::SimdResizeMethodBilinear.
*/
template<template<class> class A> SIMD_INLINE void Resize(const View<A>& src, View<A>& dst, const Point<ptrdiff_t> & size, ::SimdResizeMethodType method = ::SimdResizeMethodBilinear)
{
assert(src.format == View<A>::Float || src.ChannelSize() == 1);
if (&src == &dst)
{
if (src.Size() != size)
{
View<A> tmp(size, src.format);
Resize(src, tmp, method);
dst.Swap(tmp);
}
}
else
{
if (dst.Size() != size)
dst.Recreate(size, src.format);
Resize(src, dst, method);
}
}
/*! @ingroup rgb_conversion
\fn void RgbToBgr(const View<A> & rgb, View<A> & bgr)
\short Converts 24-bit RGB image to 24-bit BGR image.
All images must have the same width and height.
\note This function is a C++ wrapper for function ::SimdBgrToRgb.
\param [in] rgb - an input 24-bit RGB image.
\param [out] bgr - an output 24-bit BGR image.
*/
template<template<class> class A> SIMD_INLINE void RgbToBgr(const View<A>& rgb, View<A>& bgr)
{
assert(EqualSize(bgr, rgb) && rgb.format == View<A>::Rgb24 || bgr.format == View<A>::Bgr24);
SimdBgrToRgb(rgb.data, rgb.width, rgb.height, rgb.stride, bgr.data, bgr.stride);
}
/*! @ingroup rgb_conversion
\fn void RgbToBgra(const View<A>& rgb, View<A>& bgra, uint8_t alpha = 0xFF)
\short Converts 24-bit RGB image to 32-bit BGRA image.
All images must have the same width and height.
\note This function is a C++ wrapper for function ::SimdRgbToBgra.
\param [in] rgb - an input 24-bit RGB image.
\param [out] bgra - an output 32-bit BGRA image.
\param [in] alpha - a value of alpha channel. It is equal to 256 by default.
*/
template<template<class> class A> SIMD_INLINE void RgbToBgra(const View<A>& rgb, View<A>& bgra, uint8_t alpha = 0xFF)
{
assert(EqualSize(rgb, bgra) && bgra.format == View<A>::Bgra32 && rgb.format == View<A>::Rgb24);
SimdRgbToBgra(rgb.data, rgb.width, rgb.height, rgb.stride, bgra.data, bgra.stride, alpha);
}
/*! @ingroup rgb_conversion
\fn void RgbToGray(const View<A>& rgb, View<A>& gray)
\short Converts 24-bit RGB image to 8-bit gray image.
All images must have the same width and height.
\note This function is a C++ wrapper for function ::SimdRgbToGray.
\param [in] rgb - an input 24-bit RGB image.
\param [out] gray - an output 8-bit gray image.
*/
template<template<class> class A> SIMD_INLINE void RgbToGray(const View<A>& rgb, View<A>& gray)
{
assert(EqualSize(rgb, gray) && rgb.format == View<A>::Rgb24 && gray.format == View<A>::Gray8);
SimdRgbToGray(rgb.data, rgb.width, rgb.height, rgb.stride, gray.data, gray.stride);
}
/*! @ingroup rgb_conversion
\fn void RgbToRgba(const View<A>& rgb, View<A>& rgba, uint8_t alpha = 0xFF)
\short Converts 24-bit RGB image to 32-bit RGBA image.
All images must have the same width and height.
\note This function is a C++ wrapper for function ::SimdBgrToBgra.
\param [in] rgb - an input 24-bit RGB image.
\param [out] rgba - an output 32-bit RGBA image.
\param [in] alpha - a value of alpha channel. It is equal to 256 by default.
*/
template<template<class> class A> SIMD_INLINE void RgbToRgba(const View<A>& rgb, View<A>& rgba, uint8_t alpha = 0xFF)
{
assert(EqualSize(rgb, rgba) && rgba.format == View<A>::Rgba32 && rgb.format == View<A>::Rgb24);
SimdBgrToBgra(rgb.data, rgb.width, rgb.height, rgb.stride, rgba.data, rgba.stride, alpha);
}
/*! @ingroup rgba_conversion
\fn void RgbaToBgr(const View<A>& rgba, View<A>& bgr)
\short Converts 32-bit RGBA image to 24-bit BGR image.
All images must have the same width and height.
\note This function is a C++ wrapper for function ::SimdBgraToRgb.
\param [in] rgba - an input 32-bit RGBA image.
\param [out] bgr - an output 24-bit RGB image.
*/
template<template<class> class A> SIMD_INLINE void RgbaToBgr(const View<A>& rgba, View<A>& bgr)
{
assert(EqualSize(rgba, bgr) && rgba.format == View<A>::Rgba32 && bgr.format == View<A>::Bgr24);
SimdBgraToRgb(rgba.data, rgba.width, rgba.height, rgba.stride, bgr.data, bgr.stride);
}
/*! @ingroup rgba_conversion
\fn void RgbaToBgra(const View<A>& rgba, View<A>& bgra)
\short Converts 32-bit RGBA image to 32-bit BGRA image.
All images must have the same width and height.
\note This function is a C++ wrapper for function ::SimdBgraToRgba.
\param [in] rgba - an input 32-bit RGBA image.
\param [out] bgra - an output 32-bit BGRA image.
*/
template<template<class> class A> SIMD_INLINE void RgbaToBgra(const View<A>& rgba, View<A>& bgra)
{
assert(EqualSize(bgra, rgba) && bgra.format == View<A>::Bgra32 && rgba.format == View<A>::Rgba32);
SimdBgraToRgba(rgba.data, rgba.width, rgba.height, rgba.stride, bgra.data, bgra.stride);
}
/*! @ingroup rgba_conversion
\fn void RgbaToGray(const View<A>& rgba, View<A>& gray)
\short Converts 32-bit RGBA image to 8-bit gray image.
All images must have the same width and height.
\note This function is a C++ wrapper for function ::SimdRgbaToGray.
\param [in] rgba - an input 32-bit RGBA image.
\param [out] gray - an output 8-bit gray image.
*/
template<template<class> class A> SIMD_INLINE void RgbaToGray(const View<A>& rgba, View<A>& gray)
{
assert(EqualSize(rgba, gray) && rgba.format == View<A>::Rgba32 && gray.format == View<A>::Gray8);
SimdRgbaToGray(rgba.data, rgba.width, rgba.height, rgba.stride, gray.data, gray.stride);
}
/*! @ingroup rgba_conversion
\fn void RgbaToRgb(const View<A>& rgba, View<A>& rgb)
\short Converts 32-bit RGBA image to 24-bit RGB image.
All images must have the same width and height.
\note This function is a C++ wrapper for function ::SimdBgraToBgr.
\param [in] rgba - an input 32-bit RGBA image.
\param [out] rgb - an output 24-bit RGB image.
*/
template<template<class> class A> SIMD_INLINE void RgbaToRgb(const View<A>& rgba, View<A>& rgb)
{
assert(EqualSize(rgba, rgb) && rgba.format == View<A>::Rgba32 && rgb.format == View<A>::Rgb24);
SimdBgraToBgr(rgba.data, rgba.width, rgba.height, rgba.stride, rgb.data, rgb.stride);
}
/*! @ingroup resizing
\fn void StretchGray2x2(const View<A>& src, View<A>& dst)
\short Stretches input 8-bit gray image in two times.
\note This function is a C++ wrapper for function ::SimdStretchGray2x2.
\param [in] src - an original input image.
\param [out] dst - a stretched output image.
*/
template<template<class> class A> SIMD_INLINE void StretchGray2x2(const View<A> & src, View<A> & dst)
{
assert(src.format == View<A>::Gray8 && dst.format == View<A>::Gray8);
assert(src.width * 2 == dst.width && src.height * 2 == dst.height);
SimdStretchGray2x2(src.data, src.width, src.height, src.stride, dst.data, dst.width, dst.height, dst.stride);
}
/*! @ingroup universal_conversion
\fn void Convert(const View<A> & src, View<A> & dst)
\short Converts an image of one format to an image of another format.
The input and output images must have the same width and height.
\note This function supports conversion between View::Gray8, View::Bgr24, View::Bgra32, View::Rgb24 and View::Rgba32 image formats.
\param [in] src - an input image.
\param [out] dst - an output image.
*/
template<template<class> class A> SIMD_INLINE void Convert(const View<A> & src, View<A> & dst)
{
assert(EqualSize(src, dst) && src.format && dst.format);
if (src.format == dst.format)
{
Copy(src, dst);
return;
}
switch (src.format)
{
case View<A>::Gray8:
switch (dst.format)
{
case View<A>::Bgra32:
GrayToBgra(src, dst);
break;
case View<A>::Rgba32:
GrayToRgba(src, dst);
break;
case View<A>::Bgr24:
GrayToBgr(src, dst);
break;
case View<A>::Rgb24:
GrayToRgb(src, dst);
break;
default:
assert(0);
}
break;
case View<A>::Bgr24:
switch (dst.format)
{
case View<A>::Bgra32:
BgrToBgra(src, dst);
break;
case View<A>::Gray8:
BgrToGray(src, dst);
break;
case View<A>::Rgb24:
BgrToRgb(src, dst);
break;
case View<A>::Rgba32:
BgrToRgba(src, dst);
break;
default:
assert(0);
}
break;
case View<A>::Rgb24:
switch (dst.format)
{
case View<A>::Bgra32:
RgbToBgra(src, dst);
break;
case View<A>::Bgr24:
RgbToBgr(src, dst);
break;
case View<A>::Gray8:
RgbToGray(src, dst);
break;
case View<A>::Rgba32:
RgbToRgba(src, dst);
break;
default:
assert(0);
}
break;
case View<A>::Bgra32:
switch (dst.format)
{
case View<A>::Bgr24:
BgraToBgr(src, dst);
break;
case View<A>::Gray8:
BgraToGray(src, dst);
break;
case View<A>::Rgb24:
BgraToRgb(src, dst);
break;
case View<A>::Rgba32:
BgraToRgba(src, dst);
break;
default:
assert(0);
}
break;
case View<A>::Rgba32:
switch (dst.format)
{
case View<A>::Bgra32:
RgbaToBgra(src, dst);
break;
case View<A>::Bgr24:
RgbaToBgr(src, dst);
break;
case View<A>::Gray8:
RgbaToGray(src, dst);
break;
case View<A>::Rgb24:
RgbaToRgb(src, dst);
break;
default:
assert(0);
}
break;
default:
assert(0);
}
}
/*! @ingroup cpp_pyramid_functions
\fn void Fill(Pyramid<A> & pyramid, uint8_t value)
\short Fills pixels data of images in the pyramid by given value.
\param [out] pyramid - a pyramid.
\param [in] value - a value to fill the pyramid.
*/
template<template<class> class A> SIMD_INLINE void Fill(Pyramid<A> & pyramid, uint8_t value)
{
for (size_t level = 0; level < pyramid.Size(); ++level)
Simd::Fill(pyramid.At(level), value);
}
/*! @ingroup cpp_pyramid_functions
\fn void Copy(const Pyramid<A> & src, Pyramid<A> & dst)
\short Copies one pyramid to another pyramid.
\note Input and output pyramids must have the same size.
\param [in] src - an input pyramid.
\param [out] dst - an output pyramid.
*/
template<template<class> class A> SIMD_INLINE void Copy(const Pyramid<A> & src, Pyramid<A> & dst)
{
assert(src.Size() == dst.Size());
for (size_t level = 0; level < src.Size(); ++level)
Simd::Copy(src.At(level), dst.At(level));
}
/*! @ingroup cpp_pyramid_functions
\fn void Build(Pyramid<A> & pyramid, ::SimdReduceType reduceType, bool compensation = true)
\short Builds the pyramid (fills upper levels on the base of the lowest level).
\param [out] pyramid - a built pyramid.
\param [in] reduceType - a type of function used for image reducing.
\param [in] compensation - a flag of compensation of rounding. It is relevant only for ::SimdReduce3x3 and ::SimdReduce5x5. It is equal to 'true' by default.
*/
template<template<class> class A> SIMD_INLINE void Build(Pyramid<A> & pyramid, ::SimdReduceType reduceType, bool compensation = true)
{
for (size_t level = 1; level < pyramid.Size(); ++level)
Simd::ReduceGray(pyramid.At(level - 1), pyramid.At(level), reduceType, compensation);
}
}
#endif//__SimdLib_hpp__
|