File: SimdRectangle.hpp

package info (click to toggle)
visp 3.6.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 119,296 kB
  • sloc: cpp: 500,914; ansic: 52,904; xml: 22,642; python: 7,365; java: 4,247; sh: 482; makefile: 237; objc: 145
file content (997 lines) | stat: -rw-r--r-- 30,970 bytes parent folder | download | duplicates (2)
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
/*
* Simd Library (http://ermig1979.github.io/Simd).
*
* Copyright (c) 2011-2017 Yermalayeu Ihar.
*
* 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.
*/
#ifndef __SimdRectangle_hpp__
#define __SimdRectangle_hpp__

#include "Simd/SimdPoint.hpp"

#include <algorithm>

namespace Simd
{
    /*! @ingroup cpp_rectangle

        \short The Rectangle structure defines the positions of left, top, right and bottom sides of a rectangle.

        In order to have mutual conversion with OpenCV rectangle you have to define macro SIMD_OPENCV_ENABLE:
        \verbatim
        #include "opencv2/core/core.hpp"
        #define SIMD_OPENCV_ENABLE
        #include "Simd/SimdRectangle.hpp"

        int main()
        {
            typedef Simd::Rectangle<ptrdiff_t> Rect;

            cv::Rect cvRect;
            Rect simdRect;

            simdRect = cvRect;
            cvRect = simdRect;

            return 0;
        }
        \endverbatim

        \ref cpp_rectangle_functions.
    */
    template <typename T>
    struct Rectangle
    {
        typedef T Type; /*!< Type definition. */

        T left; /*!< \brief Specifies the position of left side of a rectangle. */
        T top; /*!< \brief Specifies the position of top side of a rectangle. */
        T right; /*!< \brief Specifies the position of right side of a rectangle. */
        T bottom; /*!< \brief Specifies the position of bottom side of a rectangle. */

        /*!
            Creates a new Rectangle structure that contains the default (0, 0, 0, 0) positions of its sides.
        */
        Rectangle();

        /*!
            Creates a new Rectangle structure that contains the specified positions of its sides.

            \param [in] l - initial left value.
            \param [in] t - initial top value.
            \param [in] r - initial right value.
            \param [in] b - initial bottom value.
        */
        template <typename TL, typename TT, typename TR, typename TB> Rectangle(TL l, TT t, TR r, TB b);

        /*!
            Creates a new Rectangular structure that contains the specified coordinates of its left-top and right-bottom corners.

            \param [in] lt - initial coordinates of left-top corner.
            \param [in] rb - initial coordinates of right-bottom corner.
        */
        template <typename TLT, typename TRB> Rectangle(const Point<TLT> & lt, const Point<TRB> & rb);

        /*!
            Creates a new Rectangular structure that contains the specified coordinates of its right-bottom corner.
            The coordinates of left-top corner is set to (0, 0).

            \param [in] rb - initial coordinates of right-bottom corner.
        */
        template <typename TRB> Rectangle(const Point<TRB> & rb);

        /*!
            Creates a new Rectangle structure on the base of another rectangle of arbitrary type.

            \param [in] r - a rectangle of arbitrary type.
        */
        template <class TR, template<class> class TRectangle> Rectangle(const TRectangle<TR> & r);

#ifdef SIMD_OPENCV_ENABLE
        /*!
            Creates a new Rectangle structure on the base of OpenCV rectangle.

            \note You have to define SIMD_OPENCV_ENABLE in order to use this functionality.

            \param [in] r - an OpenCV rectangle.
        */
        template <class TR> Rectangle(const cv::Rect_<TR> & r);
#endif

        /*!
            A rectangle destructor.
        */
        ~Rectangle();

        /*!
            Converts itself to rectangle of arbitrary type.

            \return a rectangle of arbitrary type.
        */
        template <class TR, template<class> class TRectangle> operator TRectangle<TR>() const;

#ifdef SIMD_OPENCV_ENABLE
        /*!
            Converts itself to OpenCV rectangle.

            \note You have to define SIMD_OPENCV_ENABLE in order to use this functionality.

            \return an OpenCV rectangle.
        */
        template <class TR> operator cv::Rect_<TR>() const;
#endif

        /*!
            Performs copying from rectangle of arbitrary type.

            \param [in] r - a rectangle of arbitrary type.
            \return a reference to itself.
        */
        template <typename TR> Rectangle<T> & operator = (const Rectangle<TR> & r);

#ifdef SIMD_OPENCV_ENABLE
        /*!
            Performs copying from OpenCV rectangle.

            \note You have to define SIMD_OPENCV_ENABLE in order to use this functionality.

            \param [in] r - an OpenCV rectangle.
            \return a reference to itself.
        */
        template <typename TR> Rectangle<T> & operator = (const cv::Rect_<TR> & r);
#endif

        /*!
            Sets position of left side.

            \param [in] l - a new position of left side.
            \return a reference to itself.
        */
        template <typename TL> Rectangle<T> & SetLeft(const TL & l);

        /*!
            Sets position of top side.

            \param [in] t - a new position of top side.
            \return a reference to itself.
        */
        template <typename TT> Rectangle<T> & SetTop(const TT & t);

        /*!
            Sets position of right side.

            \param [in] r - a new position of right side.
            \return a reference to itself.
        */
        template <typename TR> Rectangle<T> & SetRight(const TR & r);

        /*!
            Sets position of bottom side.

            \param [in] b - a new position of bottom side.
            \return a reference to itself.
        */
        template <typename TB> Rectangle<T> & SetBottom(const TB & b);

        /*!
            Sets coordinates of top-left corner.

            \param [in] topLeft - a new coordinates of top-left corner.
            \return a reference to itself.
        */
        template <typename TP> Rectangle<T> & SetTopLeft(const Point<TP> & topLeft);

        /*!
            Sets coordinates of top-right corner.

            \param [in] topRight - a new coordinates of top-right corner.
            \return a reference to itself.
        */
        template <typename TP> Rectangle<T> & SetTopRight(const Point<TP> & topRight);

        /*!
            Sets coordinates of bottom-left corner.

            \param [in] bottomLeft - a new coordinates of bottom-left corner.
            \return a reference to itself.
        */
        template <typename TP> Rectangle<T> & SetBottomLeft(const Point<TP> & bottomLeft);

        /*!
            Sets coordinates of bottom-right corner.

            \param [in] bottomRight - a new coordinates of bottom-right corner.
            \return a reference to itself.
        */
        template <typename TP> Rectangle<T> & SetBottomRight(const Point<TP> & bottomRight);

        /*!
            Gets position of left side.

            \return a position of left side.
        */
        T Left() const;

        /*!
            Gets position of top side.

            \return a position of top side.
        */
        T Top() const;

        /*!
            Gets position of right side.

            \return a position of right side.
        */
        T Right() const;

        /*!
            Gets position of bottom side.

            \return a position of bottom side.
        */
        T Bottom() const;

        /*!
            Gets coordinates of top-left corner.

            \return a point with coordinates of top-left corner.
        */
        Point<T> TopLeft() const;

        /*!
            Gets coordinates of top-right corner.

            \return a point with coordinates of top-right corner.
        */
        Point<T> TopRight() const;

        /*!
            Gets coordinates of bottom-left corner.

            \return a point with coordinates of bottom-left corner.
        */
        Point<T> BottomLeft() const;

        /*!
            Gets coordinates of bottom-right corner.

            \return a point with coordinates of bottom-right corner.
        */
        Point<T> BottomRight() const;

        /*!
            Gets rectangle width.

            \return a rectangle width.
        */
        T Width() const;

        /*!
            Gets rectangle height.

            \return a rectangle height.
        */
        T Height() const;

        /*!
            Gets rectangle area.

            \return a rectangle area.
        */
        T Area() const;

        /*!
            Returns true if rectangle area is equal to zero.

            \return a boolean value.
        */
        bool Empty() const;

        /*!
            Gets size (width and height) of the rectangle.

            \return a point with rectangle size.
        */
        Point<T> Size() const;

        /*!
            Gets coordinates of rectangle center.

            \return a point with coordinates of rectangle center.
        */
        Point<T> Center() const;

        /*!
            Checks on the point with specified coordinates to belonging to the rectangle.

            \param [in] x - x-coordinate of checked point.
            \param [in] y - y-coordinate of checked point.
            \return a result of checking.
        */
        template <typename TX, typename TY> bool Contains(TX x, TY y) const;

        /*!
            Checks on the point to belonging to the rectangle.

            \param [in] p - a checked point.
            \return a result of checking.
        */
        template <typename TP> bool Contains(const Point<TP> & p) const;

        /*!
            Checks on the rectangle with specified coordinates to belonging to the rectangle.

            \param [in] l - a left side of checked rectangle.
            \param [in] t - a top side of checked rectangle.
            \param [in] r - a right side of checked rectangle.
            \param [in] b - a bottom side of checked rectangle.
            \return a result of checking.
        */
        template <typename TL, typename TT, typename TR, typename TB> bool Contains(TL l, TT t, TR r, TB b) const;

        /*!
            Checks on the rectangle to belonging to the rectangle.

            \param [in] r - a checked rectangle.
            \return a result of checking.
        */
        template <typename TR> bool Contains(const Rectangle <TR> & r) const;

        /*!
            Shifts a rectangle on the specific value.

            \param [in] shift - a point with shift value.
            \return a reference to itself.
        */
        template <typename TP> Rectangle<T> & Shift(const Point<TP> & shift);

        /*!
            Shifts a rectangle on the specific value.

            \param [in] shiftX - x-coordinate of the shift.
            \param [in] shiftY - y-coordinate of the shift.
            \return a reference to itself.
        */
        template <typename TX, typename TY> Rectangle<T> & Shift(TX shiftX, TY shiftY);

        /*!
            Gets a rectangle with shifted coordinates.

            \param [in] shift - a point with shift value.
            \return a shifted rectangle.
        */
        template <typename TP> Rectangle<T> Shifted(const Point<TP> & shift) const;

        /*!
            Gets a rectangle with shifted coordinates.

            \param [in] shiftX - x-coordinate of the shift.
            \param [in] shiftY - y-coordinate of the shift.
            \return a shifted rectangle.
        */
        template <typename TX, typename TY> Rectangle<T> Shifted(TX shiftX, TY shiftY) const;

        /*!
            Adds border to rectangle.

            \note The value of border can be negative.

            \param [in] border - a width of added border.
            \return a reference to itself.
        */
        template <typename TB> Rectangle<T> & AddBorder(TB border);

        /*!
            Gets an intersection of the two rectangles (current and specified).

            \param [in] r - specified rectangle.
            \return a rectangle with result of intersection.
        */
        template <typename TR> Rectangle<T> Intersection(const Rectangle<TR> & r) const;

        /*!
            Sets to the rectangle results of the intersection of the rectangle and specified point.

            \param [in] p - specified point.
            \return a reference to itself.
        */
        template <typename TP> Rectangle<T> & operator &= (const Point<TP> & p);

        /*!
            Sets to the rectangle results of the intersection of the rectangle and specified rectangle.

            \param [in] r - specified rectangle.
            \return a reference to itself.
        */
        template <typename TR> Rectangle<T> & operator &= (const Rectangle<TR> & r);

        /*!
            Sets to the rectangle results of the union of the rectangle and specified point.

            \param [in] p - specified point.
            \return a reference to itself.
        */
        template <typename TP> Rectangle<T> & operator |= (const Point<TP> & p);

        /*!
            Sets to the rectangle results of the union of the rectangle and specified rectangle.

            \param [in] r - specified rectangle.
            \return a reference to itself.
        */
        template <typename TR> Rectangle<T> & operator |= (const Rectangle<TR> & r);

        /*!
            Adds to the rectangle's coordinates corresponding coordinates of specified rectangle.

            \param [in] r - specified rectangle.
            \return a reference to itself.
        */
        template <typename TR> Rectangle<T> & operator += (const Rectangle<TR> & r);

        /*!
            Checks on overlapping of current rectangle and specified rectangle.

            \param [in] r - specified rectangle.
            \return a result of checking.
        */
        bool Overlaps(const Rectangle<T> & r) const;
    };

    /*! @ingroup cpp_rectangle_functions

        \fn template <typename T> bool operator == (const Rectangle<T> & r1, const Rectangle<T> & r2);

        \short Compares two rectangles on equality.

        \param [in] r1 - a first rectangle.
        \param [in] r2 - a second rectangle.
        \return a result of comparison.
    */
    template <typename T> bool operator == (const Rectangle<T> & r1, const Rectangle<T> & r2);

    /*! @ingroup cpp_rectangle_functions

        \fn template <typename T> bool operator != (const Rectangle<T> & r1, const Rectangle<T> & r2);

        \short Compares two rectangles on inequality.

        \param [in] r1 - a first rectangle.
        \param [in] r2 - a second rectangle.
        \return a result of comparison.
    */
    template <typename T> bool operator != (const Rectangle<T> & r1, const Rectangle<T> & r2);

    /*! @ingroup cpp_rectangle_functions

        \fn template<class T1, class T2> Rectangle<T1> operator / (const Rectangle<T1> & rect, const T2 & value);

        \short Divides the rectangle on the scalar value.

        \param [in] rect - a rectangle.
        \param [in] value - a scalar value.
        \return a result of division.
    */
    template<class T1, class T2> Rectangle<T1> operator / (const Rectangle<T1> & rect, const T2 & value);

    /*! @ingroup cpp_rectangle_functions

        \fn template<class T1, class T2> Rectangle<T1> operator * (const Rectangle<T1> & rect, const T2 & value);

        \short Multiplies the rectangle on the scalar value.

        \param [in] rect - a rectangle.
        \param [in] value - a scalar value.
        \return a result of multiplication.
    */
    template<class T1, class T2> Rectangle<T1> operator * (const Rectangle<T1> & rect, const T2 & value);

    /*! @ingroup cpp_rectangle_functions

        \fn template<class T1, class T2> Rectangle<T1> operator * (const T2 & value, const Rectangle<T1> & rect);

        \short Multiplies the scalar value on the rectangle.

        \param [in] value - a scalar value.
        \param [in] rect - a rectangle.
        \return a result of multiplication.
    */
    template<class T1, class T2> Rectangle<T1> operator * (const T2 & value, const Rectangle<T1> & rect);

    /*! @ingroup cpp_rectangle_functions

        \fn template <typename T> Rectangle<T> operator + (const Rectangle<T> & r1, const Rectangle<T> & r2);

        \short Sums the corresponding rectangle's coordinates of two rectangles..

        \param [in] r1 - a first rectangle.
        \param [in] r2 - a second rectangle.
        \return a rectangle with result coordinates.
    */
    template <typename T> Rectangle<T> operator + (const Rectangle<T> & r1, const Rectangle<T> & r2);

    //-------------------------------------------------------------------------

    // struct Rectangle<T> implementation:

    template <typename T>
    SIMD_INLINE Rectangle<T>::Rectangle()
        : left(0)
        , top(0)
        , right(0)
        , bottom(0)
    {
    }

    template <typename T> template <typename TL, typename TT, typename TR, typename TB>
    SIMD_INLINE Rectangle<T>::Rectangle(TL l, TT t, TR r, TB b)
        : left(Convert<T, TL>(l))
        , top(Convert<T, TT>(t))
        , right(Convert<T, TR>(r))
        , bottom(Convert<T, TB>(b))
    {
    }

    template <typename T> template <typename TLT, typename TRB>
    SIMD_INLINE Rectangle<T>::Rectangle(const Point<TLT> & lt, const Point<TRB> & rb)
        : left(Convert<T, TLT>(lt.x))
        , top(Convert<T, TLT>(lt.y))
        , right(Convert<T, TRB>(rb.x))
        , bottom(Convert<T, TRB>(rb.y))
    {
    }

    template <typename T> template <typename TRB>
    SIMD_INLINE Rectangle<T>::Rectangle(const Point<TRB> & rb)
        : left(0)
        , top(0)
        , right(Convert<T, TRB>(rb.x))
        , bottom(Convert<T, TRB>(rb.y))
    {
    }

    template <typename T> template <class TR, template<class> class TRectangle>
    SIMD_INLINE Rectangle<T>::Rectangle(const TRectangle<TR> & r)
        : left(Convert<T, TR>(r.left))
        , top(Convert<T, TR>(r.top))
        , right(Convert<T, TR>(r.right))
        , bottom(Convert<T, TR>(r.bottom))
    {
    }

#ifdef SIMD_OPENCV_ENABLE
    template <typename T> template <class TR>
    SIMD_INLINE Rectangle<T>::Rectangle(const cv::Rect_<TR> & r)
        : left(Convert<T, TR>(r.x))
        , top(Convert<T, TR>(r.y))
        , right(Convert<T, TR>(r.x + r.width))
        , bottom(Convert<T, TR>(r.y + r.height))
    {
    }
#endif

    template <typename T>
    SIMD_INLINE Rectangle<T>::~Rectangle()
    {
    }

    template <typename T> template <class TR, template<class> class TRectangle>
    SIMD_INLINE Rectangle<T>::operator TRectangle<TR>() const
    {
        return TRectangle<TR>(Convert<TR, T>(left), Convert<TR, T>(top),
            Convert<TR, T>(right), Convert<TR, T>(bottom));
    }

#ifdef SIMD_OPENCV_ENABLE
    template <typename T> template <class TR>
    SIMD_INLINE Rectangle<T>::operator cv::Rect_<TR>() const
    {
        return cv::Rect_<TR>(Convert<TR, T>(left), Convert<TR, T>(top),
            Convert<TR, T>(right - left), Convert<TR, T>(bottom - top));
    }
#endif

    template <typename T> template <typename TR>
    SIMD_INLINE Rectangle<T> & Rectangle<T>::operator = (const Rectangle<TR> & r)
    {
        left = Convert<T, TR>(r.left);
        top = Convert<T, TR>(r.top);
        right = Convert<T, TR>(r.right);
        bottom = Convert<T, TR>(r.bottom);
        return *this;
    }

#ifdef SIMD_OPENCV_ENABLE
    template <typename T> template <class TR>
    SIMD_INLINE Rectangle<T> & Rectangle<T>::operator = (const cv::Rect_<TR> & r)
    {
        left = Convert<T, TR>(r.x);
        top = Convert<T, TR>(r.y);
        right = Convert<T, TR>(r.x + r.width);
        bottom = Convert<T, TR>(r.y + r.height);
        return *this;
    }
#endif

    template <typename T> template <typename TL>
    SIMD_INLINE Rectangle<T> & Rectangle<T>::SetLeft(const TL & l)
    {
        left = Convert<T, TL>(l);
        return *this;
    }

    template <typename T> template <typename TT>
    SIMD_INLINE Rectangle<T> & Rectangle<T>::SetTop(const TT & t)
    {
        top = Convert<T, TT>(t);
        return *this;
    }

    template <typename T> template <typename TR>
    SIMD_INLINE Rectangle<T> & Rectangle<T>::SetRight(const TR & r)
    {
        right = Convert<T, TR>(r);
        return *this;
    }

    template <typename T> template <typename TB>
    SIMD_INLINE Rectangle<T> & Rectangle<T>::SetBottom(const TB & b)
    {
        bottom = Convert<T, TB>(b);
        return *this;
    }

    template <typename T> template <typename TP>
    SIMD_INLINE Rectangle<T> & Rectangle<T>::SetTopLeft(const Point<TP> & topLeft)
    {
        left = Convert<T, TP>(topLeft.x);
        top = Convert<T, TP>(topLeft.y);
        return *this;
    }

    template <typename T> template <typename TP>
    SIMD_INLINE Rectangle<T> & Rectangle<T>::SetTopRight(const Point<TP> & topRight)
    {
        right = Convert<T, TP>(topRight.x);
        top = Convert<T, TP>(topRight.y);
        return *this;
    }

    template <typename T> template <typename TP>
    SIMD_INLINE Rectangle<T> & Rectangle<T>::SetBottomLeft(const Point<TP> & bottomLeft)
    {
        left = Convert<T, TP>(bottomLeft.x);
        bottom = Convert<T, TP>(bottomLeft.y);
        return *this;
    }

    template <typename T> template <typename TP>
    SIMD_INLINE Rectangle<T> & Rectangle<T>::SetBottomRight(const Point<TP> & bottomRight)
    {
        right = Convert<T, TP>(bottomRight.x);
        bottom = Convert<T, TP>(bottomRight.y);
        return *this;
    }

    template <typename T>
    SIMD_INLINE T Rectangle<T>::Left() const
    {
        return left;
    }

    template <typename T>
    SIMD_INLINE T Rectangle<T>::Top() const
    {
        return top;
    }

    template <typename T>
    SIMD_INLINE T Rectangle<T>::Right() const
    {
        return right;
    }

    template <typename T>
    SIMD_INLINE T Rectangle<T>::Bottom() const
    {
        return bottom;
    }

    template <typename T>
    SIMD_INLINE Point<T> Rectangle<T>::TopLeft() const
    {
        return Point<T>(left, top);
    }

    template <typename T>
    SIMD_INLINE Point<T> Rectangle<T>::TopRight() const
    {
        return Point<T>(right, top);
    }

    template <typename T>
    SIMD_INLINE Point<T> Rectangle<T>::BottomLeft() const
    {
        return Point<T>(left, bottom);
    }

    template <typename T>
    SIMD_INLINE Point<T> Rectangle<T>::BottomRight() const
    {
        return Point<T>(right, bottom);
    }

    template <typename T>
    SIMD_INLINE T Rectangle<T>::Width() const
    {
        return right - left;
    }

    template <typename T>
    SIMD_INLINE T Rectangle<T>::Height() const
    {
        return bottom - top;
    }

    template <typename T>
    SIMD_INLINE T Rectangle<T>::Area() const
    {
        return Width()*Height();
    }

    template <typename T>
    SIMD_INLINE bool Rectangle<T>::Empty() const
    {
        return Area() == 0;
    }

    template <typename T>
    SIMD_INLINE Point<T> Rectangle<T>::Size() const
    {
        return Point<T>(Width(), Height());
    }

    template <typename T>
    SIMD_INLINE Point<T> Rectangle<T>::Center() const
    {
        return Point<T>((left + right) / 2.0, (top + bottom) / 2.0);
    }

    template <typename T> template <typename TX, typename TY>
    SIMD_INLINE bool Rectangle<T>::Contains(TX x, TY y) const
    {
        Point<T> p(x, y);
        return p.x >= left && p.x < right && p.y >= top && p.y < bottom;
    }

    template <typename T> template <typename TP>
    SIMD_INLINE bool Rectangle<T>::Contains(const Point<TP> & p) const
    {
        return Contains(p.x, p.y);
    }

    template <typename T> template <typename TL, typename TT, typename TR, typename TB>
    SIMD_INLINE bool Rectangle<T>::Contains(TL l, TT t, TR r, TB b) const
    {
        Rectangle<T> rect(l, t, r, b);
        return rect.left >= left && rect.right <= right && rect.top >= top && rect.bottom <= bottom;
    }

    template <typename T> template <typename TR>
    SIMD_INLINE bool Rectangle<T>::Contains(const Rectangle <TR> & r) const
    {
        return Contains(r.left, r.top, r.right, r.bottom);
    }

    template <typename T> template <typename TP>
    SIMD_INLINE Rectangle<T> & Rectangle<T>::Shift(const Point<TP> & shift)
    {
        return Shift(shift.x, shift.y);
    }

    template <typename T> template <typename TX, typename TY>
    SIMD_INLINE Rectangle<T> & Rectangle<T>::Shift(TX shiftX, TY shiftY)
    {
        Point<T> shift(shiftX, shiftY);
        left += shift.x;
        top += shift.y;
        right += shift.x;
        bottom += shift.y;
        return *this;
    }

    template <typename T> template <typename TP>
    SIMD_INLINE Rectangle<T> Rectangle<T>::Shifted(const Point<TP> & shift) const
    {
        return Shifted(shift.x, shift.y);
    }

    template <typename T> template <typename TX, typename TY>
    SIMD_INLINE Rectangle<T> Rectangle<T>::Shifted(TX shiftX, TY shiftY) const
    {
        Point<T> shift(shiftX, shiftY);
        return Rectangle<T>(left + shift.x, top + shift.y, right + shift.x, bottom + shift.y);
    }

    template <typename T> template <typename TB>
    SIMD_INLINE Rectangle<T> & Rectangle<T>::AddBorder(TB border)
    {
        T _border = Convert<T, TB>(border);
        left -= _border;
        top -= _border;
        right += _border;
        bottom += _border;
        return *this;
    }

    template <typename T> template <typename TR>
    SIMD_INLINE Rectangle<T> Rectangle<T>::Intersection(const Rectangle<TR> & rect) const
    {
        Rectangle<T> _rect(rect);
        T l = std::max(left, _rect.left);
        T t = std::max(top, _rect.top);
        T r = std::max(l, std::min(right, _rect.right));
        T b = std::max(t, std::min(bottom, _rect.bottom));
        return Rectangle(l, t, r, b);
    }

    /*! \cond PRIVATE */
    template <typename T> template <typename TP>
    SIMD_INLINE Rectangle<T> & Rectangle<T>::operator &= (const Point<TP> & p)
    {
        Point<T> _p(p);
        if (Contains(_p))
        {
            left = _p.x;
            top = _p.y;
            right = _p.x + 1;
            bottom = _p.y + 1;
        }
        else
        {
            bottom = top;
            right = left;
        }
        return *this;
    }

    template <typename T> template <typename TR>
    SIMD_INLINE Rectangle<T> & Rectangle<T>::operator &= (const Rectangle<TR> & r)
    {
        if (Empty())
            return *this;
        if (r.Empty())
            return this->operator=(r);

        Rectangle<T> _r(r);
        if (left < _r.left)
            left = std::min(_r.left, right);
        if (top < _r.top)
            top = std::min(_r.top, bottom);
        if (right > _r.right)
            right = std::max(_r.right, left);
        if (bottom > _r.bottom)
            bottom = std::max(_r.bottom, top);
        return *this;
    }
    /*! \endcond */

    template <typename T> template <typename TP>
    SIMD_INLINE Rectangle<T> & Rectangle<T>::operator |= (const Point<TP> & p)
    {
        Point<T> _p(p);
        if (Empty())
        {
            left = _p.x;
            top = _p.y;
            right = _p.x + 1;
            bottom = _p.y + 1;
        }
        else
        {
            if (left > _p.x)
                left = _p.x;
            if (top > _p.y)
                top = _p.y;
            if (right <= _p.x)
                right = _p.x + 1;
            if (bottom <= _p.y)
                bottom = _p.y + 1;
        }
        return *this;
    }

    template <typename T> template <typename TR>
    SIMD_INLINE Rectangle<T> & Rectangle<T>::operator |= (const Rectangle<TR> & r)
    {
        if (Empty())
            return this->operator=(r);
        if (r.Empty())
            return *this;

        Rectangle<T> _r(r);
        left = std::min(left, _r.left);
        top = std::min(top, _r.top);
        right = std::max(right, _r.right);
        bottom = std::max(bottom, _r.bottom);
        return *this;
    }

    template <typename T> template <typename TR>
    SIMD_INLINE Rectangle<T> & Rectangle<T>::operator += (const Rectangle<TR> & r)
    {
        left += Convert<T, TR>(r.left);
        top += Convert<T, TR>(r.top);
        right += Convert<T, TR>(r.right);
        bottom += Convert<T, TR>(r.bottom);
        return *this;
    }

    template <typename T>
    SIMD_INLINE bool Rectangle<T>::Overlaps(const Rectangle<T> & r) const
    {
        bool lr = left < r.right;
        bool rl = right > r.left;
        bool tb = top < r.bottom;
        bool bt = bottom > r.top;
        return (lr == rl) && (tb == bt);
    }

    // Rectangle<T> utilities implementation:

    template <typename T>
    SIMD_INLINE bool operator == (const Rectangle<T> & r1, const Rectangle<T> & r2)
    {
        return r1.left == r2.left && r1.top == r2.top && r1.right == r2.right && r1.bottom == r2.bottom;
    }

    template <typename T>
    SIMD_INLINE bool operator != (const Rectangle<T> & r1, const Rectangle<T> & r2)
    {
        return r1.left != r2.left || r1.top != r2.top || r1.right != r2.right || r1.bottom != r2.bottom;
    }

    template<class T1, class T2>
    SIMD_INLINE Rectangle<T1> operator / (const Rectangle<T1> & rect, const T2 & value)
    {
        return Rectangle<T1>(rect.left / value, rect.top / value, rect.right / value, rect.bottom / value);
    }

    template<class T1, class T2>
    SIMD_INLINE Rectangle<T1> operator * (const Rectangle<T1> & rect, const T2 & value)
    {
        return Rectangle<T1>(rect.left*value, rect.top*value, rect.right*value, rect.bottom*value);
    }

    template<class T1, class T2>
    SIMD_INLINE Rectangle<T1> operator * (const T2 & value, const Rectangle<T1> & rect)
    {
        return Rectangle<T1>(rect.left*value, rect.top*value, rect.right*value, rect.bottom*value);
    }

    template<class T>
    SIMD_INLINE Rectangle<T> operator + (const Rectangle<T> & r1, const Rectangle<T> & r2)
    {
        return Rectangle<T>(r1.left + r2.left, r1.top + r2.top, r1.right + r2.right, r1.bottom + r2.bottom);
    }
}
#endif//__SimdRectangle_hpp__