-
Notifications
You must be signed in to change notification settings - Fork 82
/
NPPImage_64fC1.cs
968 lines (885 loc) · 56.1 KB
/
NPPImage_64fC1.cs
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
// Copyright (c) 2023, Michael Kunz and Artic Imaging SARL. All rights reserved.
// http://kunzmi.github.io/managedCuda
//
// This file is part of ManagedCuda.
//
// Commercial License Usage
// Licensees holding valid commercial ManagedCuda licenses may use this
// file in accordance with the commercial license agreement provided with
// the Software or, alternatively, in accordance with the terms contained
// in a written agreement between you and Artic Imaging SARL. For further
// information contact us at [email protected].
//
// GNU General Public License Usage
// Alternatively, this file may be used under the terms of the GNU General
// Public License as published by the Free Software Foundation, either
// version 3 of the License, or (at your option) any later version.
//
// ManagedCuda 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, see <http://www.gnu.org/licenses/>.
using System;
using System.Diagnostics;
using ManagedCuda.BasicTypes;
namespace ManagedCuda.NPP
{
/// <summary>
///
/// </summary>
public partial class NPPImage_64fC1 : NPPImageBase
{
#region Constructors
/// <summary>
/// Allocates new memory on device using NPP-Api.
/// </summary>
/// <param name="nWidthPixels">Image width in pixels</param>
/// <param name="nHeightPixels">Image height in pixels</param>
public NPPImage_64fC1(int nWidthPixels, int nHeightPixels)
{
_sizeOriginal.width = nWidthPixels;
_sizeOriginal.height = nHeightPixels;
_sizeRoi.width = nWidthPixels;
_sizeRoi.height = nHeightPixels;
_channels = 1;
_isOwner = true;
_typeSize = sizeof(double);
_dataType = NppDataType.NPP_64F;
_nppChannels = NppiChannels.NPP_CH_1;
//use 32fc as allocation type as NPP doesn't provide a 64f and 32fc has the same constraints...
_devPtr = NPPNativeMethods.NPPi.MemAlloc.nppiMalloc_32fc_C1(nWidthPixels, nHeightPixels, ref _pitch);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}, Pitch is: {3}, Number of color channels: {4}", DateTime.Now, "nppiMalloc_32fc_C1", res, _pitch, _channels));
if (_devPtr.Pointer == 0)
{
throw new NPPException("Device allocation error", null);
}
_devPtrRoi = _devPtr;
}
/// <summary>
/// Creates a new NPPImage from allocated device ptr.
/// </summary>
/// <param name="devPtr">Already allocated device ptr.</param>
/// <param name="width">Image width in pixels</param>
/// <param name="height">Image height in pixels</param>
/// <param name="pitch">Pitch / Line step</param>
/// <param name="isOwner">If TRUE, devPtr is freed when disposing</param>
public NPPImage_64fC1(CUdeviceptr devPtr, int width, int height, int pitch, bool isOwner)
{
_devPtr = devPtr;
_devPtrRoi = _devPtr;
_sizeOriginal.width = width;
_sizeOriginal.height = height;
_sizeRoi.width = width;
_sizeRoi.height = height;
_pitch = pitch;
_channels = 1;
_isOwner = isOwner;
_typeSize = sizeof(double);
_dataType = NppDataType.NPP_64F;
_nppChannels = NppiChannels.NPP_CH_1;
}
/// <summary>
/// Creates a new NPPImage from allocated device ptr. Does not take ownership of decPtr.
/// </summary>
/// <param name="devPtr">Already allocated device ptr.</param>
/// <param name="width">Image width in pixels</param>
/// <param name="height">Image height in pixels</param>
/// <param name="pitch">Pitch / Line step</param>
public NPPImage_64fC1(CUdeviceptr devPtr, int width, int height, int pitch)
: this(devPtr, width, height, pitch, false)
{
}
/// <summary>
/// Creates a new NPPImage from allocated device ptr. Does not take ownership of inner image device pointer.
/// </summary>
/// <param name="image">NPP image</param>
public NPPImage_64fC1(NPPImageBase image)
: this(image.DevicePointer, image.Width, image.Height, image.Pitch, false)
{
}
/// <summary>
/// Allocates new memory on device using NPP-Api.
/// </summary>
/// <param name="size">Image size</param>
public NPPImage_64fC1(NppiSize size)
: this(size.width, size.height)
{
}
/// <summary>
/// Creates a new NPPImage from allocated device ptr.
/// </summary>
/// <param name="devPtr">Already allocated device ptr.</param>
/// <param name="size">Image size</param>
/// <param name="pitch">Pitch / Line step</param>
/// <param name="isOwner">If TRUE, devPtr is freed when disposing</param>
public NPPImage_64fC1(CUdeviceptr devPtr, NppiSize size, int pitch, bool isOwner)
: this(devPtr, size.width, size.height, pitch, isOwner)
{
}
/// <summary>
/// Creates a new NPPImage from allocated device ptr.
/// </summary>
/// <param name="devPtr">Already allocated device ptr.</param>
/// <param name="size">Image size</param>
/// <param name="pitch">Pitch / Line step</param>
public NPPImage_64fC1(CUdeviceptr devPtr, NppiSize size, int pitch)
: this(devPtr, size.width, size.height, pitch)
{
}
/// <summary>
/// For dispose
/// </summary>
~NPPImage_64fC1()
{
Dispose(false);
}
#endregion
#region Converter operators
/// <summary>
/// Converts a NPPImage to a CudaPitchedDeviceVariable
/// </summary>
public CudaPitchedDeviceVariable<double> ToCudaPitchedDeviceVariable()
{
return new CudaPitchedDeviceVariable<double>(_devPtr, _sizeOriginal.width, _sizeOriginal.height, _pitch);
}
/// <summary>
/// Converts a NPPImage to a CudaPitchedDeviceVariable
/// </summary>
/// <param name="img">NPPImage</param>
/// <returns>CudaPitchedDeviceVariable with the same device pointer and size of NPPImage without ROI information</returns>
public static implicit operator CudaPitchedDeviceVariable<double>(NPPImage_64fC1 img)
{
return img.ToCudaPitchedDeviceVariable();
}
/// <summary>
/// Converts a CudaPitchedDeviceVariable to a NPPImage
/// </summary>
/// <param name="img">CudaPitchedDeviceVariable</param>
/// <returns>NPPImage with the same device pointer and size of CudaPitchedDeviceVariable with ROI set to full image</returns>
public static implicit operator NPPImage_64fC1(CudaPitchedDeviceVariable<double> img)
{
return img.ToNPPImage();
}
#endregion
#region MaxError
/// <summary>
/// image maximum error. User buffer is internally allocated and freed.
/// </summary>
/// <param name="src2">2nd source image</param>
/// <param name="pError">Pointer to the computed error.</param>
public void MaxError(NPPImage_64fC1 src2, CudaDeviceVariable<double> pError)
{
SizeT bufferSize = MaxErrorGetBufferHostSize();
CudaDeviceVariable<byte> buffer = new CudaDeviceVariable<byte>(bufferSize);
status = NPPNativeMethods.NPPi.MaximumError.nppiMaximumError_64f_C1R(_devPtrRoi, _pitch, src2.DevicePointerRoi, src2.Pitch, _sizeRoi, pError.DevicePointer, buffer.DevicePointer);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiMaximumError_64f_C1R", status));
buffer.Dispose();
NPPException.CheckNppStatus(status, this);
}
/// <summary>
/// image maximum error.
/// </summary>
/// <param name="src2">2nd source image</param>
/// <param name="pError">Pointer to the computed error.</param>
/// <param name="buffer">Pointer to the user-allocated scratch buffer required for the MaxError operation.</param>
public void MaxError(NPPImage_64fC1 src2, CudaDeviceVariable<double> pError, CudaDeviceVariable<byte> buffer)
{
SizeT bufferSize = MaxErrorGetBufferHostSize();
if (bufferSize > buffer.Size) throw new NPPException("Provided buffer is too small.");
status = NPPNativeMethods.NPPi.MaximumError.nppiMaximumError_64f_C1R(_devPtrRoi, _pitch, src2.DevicePointerRoi, src2.Pitch, _sizeRoi, pError.DevicePointer, buffer.DevicePointer);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiMaximumError_64f_C1R", status));
NPPException.CheckNppStatus(status, this);
}
/// <summary>
/// Device scratch buffer size (in bytes) for MaxError.
/// </summary>
/// <returns></returns>
public SizeT MaxErrorGetBufferHostSize()
{
SizeT bufferSize = 0;
status = NPPNativeMethods.NPPi.MaximumError.nppiMaximumErrorGetBufferHostSize_64f_C1R(_sizeRoi, ref bufferSize);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiMaximumErrorGetBufferHostSize_64f_C1R", status));
NPPException.CheckNppStatus(status, this);
return bufferSize;
}
#endregion
#region AverageError
/// <summary>
/// image average error. User buffer is internally allocated and freed.
/// </summary>
/// <param name="src2">2nd source image</param>
/// <param name="pError">Pointer to the computed error.</param>
public void AverageError(NPPImage_64fC1 src2, CudaDeviceVariable<double> pError)
{
SizeT bufferSize = AverageErrorGetBufferHostSize();
CudaDeviceVariable<byte> buffer = new CudaDeviceVariable<byte>(bufferSize);
status = NPPNativeMethods.NPPi.AverageError.nppiAverageError_64f_C1R(_devPtrRoi, _pitch, src2.DevicePointerRoi, src2.Pitch, _sizeRoi, pError.DevicePointer, buffer.DevicePointer);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiAverageError_64f_C1R", status));
buffer.Dispose();
NPPException.CheckNppStatus(status, this);
}
/// <summary>
/// image average error.
/// </summary>
/// <param name="src2">2nd source image</param>
/// <param name="pError">Pointer to the computed error.</param>
/// <param name="buffer">Pointer to the user-allocated scratch buffer required for the AverageError operation.</param>
public void AverageError(NPPImage_64fC1 src2, CudaDeviceVariable<double> pError, CudaDeviceVariable<byte> buffer)
{
SizeT bufferSize = AverageErrorGetBufferHostSize();
if (bufferSize > buffer.Size) throw new NPPException("Provided buffer is too small.");
status = NPPNativeMethods.NPPi.AverageError.nppiAverageError_64f_C1R(_devPtrRoi, _pitch, src2.DevicePointerRoi, src2.Pitch, _sizeRoi, pError.DevicePointer, buffer.DevicePointer);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiAverageError_64f_C1R", status));
NPPException.CheckNppStatus(status, this);
}
/// <summary>
/// Device scratch buffer size (in bytes) for AverageError.
/// </summary>
/// <returns></returns>
public SizeT AverageErrorGetBufferHostSize()
{
SizeT bufferSize = 0;
status = NPPNativeMethods.NPPi.AverageError.nppiAverageErrorGetBufferHostSize_64f_C1R(_sizeRoi, ref bufferSize);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiAverageErrorGetBufferHostSize_64f_C1R", status));
NPPException.CheckNppStatus(status, this);
return bufferSize;
}
#endregion
#region MaximumRelative_Error
/// <summary>
/// image maximum relative error. User buffer is internally allocated and freed.
/// </summary>
/// <param name="src2">2nd source image</param>
/// <param name="pError">Pointer to the computed error.</param>
public void MaximumRelativeError(NPPImage_64fC1 src2, CudaDeviceVariable<double> pError)
{
SizeT bufferSize = MaximumRelativeErrorGetBufferHostSize();
CudaDeviceVariable<byte> buffer = new CudaDeviceVariable<byte>(bufferSize);
status = NPPNativeMethods.NPPi.MaximumRelativeError.nppiMaximumRelativeError_64f_C1R(_devPtrRoi, _pitch, src2.DevicePointerRoi, src2.Pitch, _sizeRoi, pError.DevicePointer, buffer.DevicePointer);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiMaximumRelativeError_64f_C1R", status));
buffer.Dispose();
NPPException.CheckNppStatus(status, this);
}
/// <summary>
/// image maximum relative error.
/// </summary>
/// <param name="src2">2nd source image</param>
/// <param name="pError">Pointer to the computed error.</param>
/// <param name="buffer">Pointer to the user-allocated scratch buffer required for the MaximumRelativeError operation.</param>
public void MaximumRelativeError(NPPImage_64fC1 src2, CudaDeviceVariable<double> pError, CudaDeviceVariable<byte> buffer)
{
SizeT bufferSize = MaximumRelativeErrorGetBufferHostSize();
if (bufferSize > buffer.Size) throw new NPPException("Provided buffer is too small.");
status = NPPNativeMethods.NPPi.MaximumRelativeError.nppiMaximumRelativeError_64f_C1R(_devPtrRoi, _pitch, src2.DevicePointerRoi, src2.Pitch, _sizeRoi, pError.DevicePointer, buffer.DevicePointer);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiMaximumRelativeError_64f_C1R", status));
NPPException.CheckNppStatus(status, this);
}
/// <summary>
/// Device scratch buffer size (in bytes) for MaximumRelativeError.
/// </summary>
/// <returns></returns>
public SizeT MaximumRelativeErrorGetBufferHostSize()
{
SizeT bufferSize = 0;
status = NPPNativeMethods.NPPi.MaximumRelativeError.nppiMaximumRelativeErrorGetBufferHostSize_64f_C1R(_sizeRoi, ref bufferSize);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiMaximumRelativeErrorGetBufferHostSize_64f_C1R", status));
NPPException.CheckNppStatus(status, this);
return bufferSize;
}
#endregion
#region AverageRelative_Error
/// <summary>
/// image average relative error. User buffer is internally allocated and freed.
/// </summary>
/// <param name="src2">2nd source image</param>
/// <param name="pError">Pointer to the computed error.</param>
public void AverageRelativeError(NPPImage_64fC1 src2, CudaDeviceVariable<double> pError)
{
SizeT bufferSize = AverageRelativeErrorGetBufferHostSize();
CudaDeviceVariable<byte> buffer = new CudaDeviceVariable<byte>(bufferSize);
status = NPPNativeMethods.NPPi.AverageRelativeError.nppiAverageRelativeError_64f_C1R(_devPtrRoi, _pitch, src2.DevicePointerRoi, src2.Pitch, _sizeRoi, pError.DevicePointer, buffer.DevicePointer);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiAverageRelativeError_64f_C1R", status));
buffer.Dispose();
NPPException.CheckNppStatus(status, this);
}
/// <summary>
/// image average relative error.
/// </summary>
/// <param name="src2">2nd source image</param>
/// <param name="pError">Pointer to the computed error.</param>
/// <param name="buffer">Pointer to the user-allocated scratch buffer required for the AverageRelativeError operation.</param>
public void AverageRelativeError(NPPImage_64fC1 src2, CudaDeviceVariable<double> pError, CudaDeviceVariable<byte> buffer)
{
SizeT bufferSize = AverageRelativeErrorGetBufferHostSize();
if (bufferSize > buffer.Size) throw new NPPException("Provided buffer is too small.");
status = NPPNativeMethods.NPPi.AverageRelativeError.nppiAverageRelativeError_64f_C1R(_devPtrRoi, _pitch, src2.DevicePointerRoi, src2.Pitch, _sizeRoi, pError.DevicePointer, buffer.DevicePointer);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiAverageRelativeError_64f_C1R", status));
NPPException.CheckNppStatus(status, this);
}
/// <summary>
/// Device scratch buffer size (in bytes) for AverageRelativeError.
/// </summary>
/// <returns></returns>
public SizeT AverageRelativeErrorGetBufferHostSize()
{
SizeT bufferSize = 0;
status = NPPNativeMethods.NPPi.AverageRelativeError.nppiAverageRelativeErrorGetBufferHostSize_64f_C1R(_sizeRoi, ref bufferSize);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiAverageRelativeErrorGetBufferHostSize_64f_C1R", status));
NPPException.CheckNppStatus(status, this);
return bufferSize;
}
#endregion
#region new in Cuda 12.0
/// <summary>
/// Scratch-buffer size for SignedDistanceTransformPBA 64 bit floating point output.
/// </summary>
/// <returns></returns>
public SizeT SignedDistanceTransformPBAGet64BufferSize()
{
SizeT bufferSize = 0;
status = NPPNativeMethods.NPPi.FilterDistanceTransform.nppiSignedDistanceTransformPBAGet64fBufferSize(_sizeRoi, ref bufferSize);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiSignedDistanceTransformPBAGet64fBufferSize", status));
NPPException.CheckNppStatus(status, this);
return bufferSize;
}
/// <summary>
/// Scratch-buffer size for DistanceTransformPBA.
/// </summary>
/// <returns></returns>
public SizeT DistanceTransformPBAGetBufferSize()
{
SizeT bufferSize = 0;
status = NPPNativeMethods.NPPi.FilterDistanceTransform.nppiDistanceTransformPBAGetBufferSize(_sizeRoi, ref bufferSize);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiDistanceTransformPBAGetBufferSize", status));
NPPException.CheckNppStatus(status, this);
return bufferSize;
}
/// <summary>
/// Calculate scratch buffer size needed for the DistanceTransformPBA function based antialiasing on destination image SizeROI width and height.
/// </summary>
/// <returns></returns>
public SizeT DistanceTransformPBAGetAntialiasingBufferSize()
{
SizeT bufferSize = 0;
status = NPPNativeMethods.NPPi.FilterDistanceTransform.nppiDistanceTransformPBAGetAntialiasingBufferSize(_sizeRoi, ref bufferSize);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiDistanceTransformPBAGetAntialiasingBufferSize", status));
NPPException.CheckNppStatus(status, this);
return bufferSize;
}
/// <summary>
/// Calculate scratch buffer size needed for the SignedDistanceTransformPBA function based antialiasing on destination image SizeROI width and height.
/// </summary>
/// <returns></returns>
public SizeT SignedDistanceTransformPBAGetAntialiasingBufferSize()
{
SizeT bufferSize = 0;
status = NPPNativeMethods.NPPi.FilterDistanceTransform.nppiSignedDistanceTransformPBAGetAntialiasingBufferSize(_sizeRoi, ref bufferSize);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiSignedDistanceTransformPBAGetAntialiasingBufferSize", status));
NPPException.CheckNppStatus(status, this);
return bufferSize;
}
/// <summary>
/// Returns the required size of host memory buffer needed by 64 bit nppiFilterBoxBorderAdvanced functions.
/// </summary>
public int FilterBoxBorderAdvancedGetDeviceBufferSize()
{
int bufferSize = 0;
status = NPPNativeMethods.NPPi.LinearFixedFilters2D.nppiFilterBoxBorderAdvancedGetDeviceBufferSize_64(_sizeRoi, _channels, ref bufferSize);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiFilterBoxBorderAdvancedGetDeviceBufferSize_64", status));
NPPException.CheckNppStatus(status, this);
return bufferSize;
}
/// <summary>
/// Buffer size (in bytes) for nppiCrossCorrFull_NormLevelAdvanced functions.
/// </summary>
/// <param name="oTplRoiSize">Region-of-Interest (ROI) size of the template image.</param>
public SizeT CrossCorrFull_NormLevel_GetAdvancedScratchBufferSize(NppiSize oTplRoiSize)
{
SizeT bufferSize = 0;
status = NPPNativeMethods.NPPi.ImageProximity.nppiCrossCorrFull_NormLevel_GetAdvancedScratchBufferSize(_sizeRoi, oTplRoiSize, sizeof(double), _channels, ref bufferSize);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiCrossCorrFull_NormLevel_GetAdvancedScratchBufferSize", status));
NPPException.CheckNppStatus(status, this);
return bufferSize;
}
/// <summary>
/// Buffer size (in bytes) for nppiCrossCorrSame_NormLevelAdvanced functions.
/// </summary>
/// <param name="oTplRoiSize">Region-of-Interest (ROI) size of the template image.</param>
public SizeT CrossCorrSame_NormLevel_GetAdvancedScratchBufferSize(NppiSize oTplRoiSize)
{
SizeT bufferSize = 0;
status = NPPNativeMethods.NPPi.ImageProximity.nppiCrossCorrSame_NormLevel_GetAdvancedScratchBufferSize(_sizeRoi, oTplRoiSize, sizeof(double), _channels, ref bufferSize);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiCrossCorrSame_NormLevel_GetAdvancedScratchBufferSize", status));
NPPException.CheckNppStatus(status, this);
return bufferSize;
}
/// <summary>
/// Buffer size (in bytes) for nppiCrossCorrValid_NormLevelAdvanced functions.
/// </summary>
/// <param name="oTplRoiSize">Region-of-Interest (ROI) size of the template image.</param>
public SizeT CrossCorrValid_NormLevel_GetAdvancedScratchBufferSize(NppiSize oTplRoiSize)
{
SizeT bufferSize = 0;
status = NPPNativeMethods.NPPi.ImageProximity.nppiCrossCorrValid_NormLevel_GetAdvancedScratchBufferSize(_sizeRoi, oTplRoiSize, sizeof(double), _channels, ref bufferSize);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiCrossCorrValid_NormLevel_GetAdvancedScratchBufferSize", status));
NPPException.CheckNppStatus(status, this);
return bufferSize;
}
#if ADD_MISSING_CTX
/// <summary>
/// 1 channel 64-bit floating point grayscale to optional 1 channel 16-bit signed integer euclidean distance voronoi diagram
/// and 64-bit floating point transform with optional sub-pixel shifts.
/// <para/>
/// For this particular version of the function acceptable input pixel intensities are less than or equal to 0.0f for those fully outside of connected
/// pixel regions, intensities with fractional parts between 0.0f and 1.0f representing the percentage of connected pixel region sub-pixel coverage within a
/// particular pixel (region contour), and intensities greater than or equal to 1.0f for pixels that are fully contained within closed connected pixel regions.
/// This function executes in two passes, the first pass prioritizes pixels outside of closed regions, the second pass
/// prioritizes pixels within closed regions. The two passes are then merged on output. The function assumes that fully
/// covered pixels have centers located at sub-pixel locations of .5,.5. In general, object exterior distances are output as negative
/// numbers progressing to positive and object interior distances are output as positive numbers progressing to negative.
/// </summary>
/// <param name="nCutoffValue">source image pixel values < nCutoffValue will be considered fully outside of pixel regions (and set to -1).</param>
/// <param name="nSubPixelXShift">final transform distances will be shifted in the X direction by this sub-pixel fraction. </param>
/// <param name="nSubPixelYShift">final transform distances will be shifted in the Y direction by this sub-pixel fraction. </param>
/// <param name="pDstVoronoi">device memory voronoi diagram destination_image_pointer or NULL for no voronoi output.</param>
/// <param name="pDstVoronoiIndices">device memory voronoi diagram destination_image_pointer or NULL for no voronoi indices output.</param>
/// <param name="pDstVoronoiManhattanRelativeDistances">device memory voronoi relative Manhattan distances destination_image_pointer or NULL for no voronoi Manhattan output.</param>
/// <param name="pDstTransform">device memory true euclidean distance transform destination_image_pointer or NULL for no transform output.</param>
/// <param name="pBuffer">pointer to scratch DEVICE memory buffer of size hpBufferSize (see nppiSignedDistanceTransformPBAGet64fBufferSize() above)</param>
/// <param name="pAntialiasingDeviceBuffer">pointer to scratch DEVICE memory buffer of size hpAntialiasingBufferSize (see nppiSignedDistanceTransformPBAGetAntialiasingBufferSize() above) or NULL if not Antialiasing</param>
public void SignedDistanceTransformPBA(double nCutoffValue,
double nSubPixelXShift, double nSubPixelYShift, NPPImage_16sC1 pDstVoronoi, NPPImage_16sC1 pDstVoronoiIndices,
NPPImage_16sC1 pDstVoronoiManhattanRelativeDistances, NPPImage_64fC1 pDstTransform, CudaDeviceVariable<byte> pBuffer, CudaDeviceVariable<byte> pAntialiasingDeviceBuffer)
{
CUdeviceptr dstVoronoi = new CUdeviceptr();
CUdeviceptr dstTransform = new CUdeviceptr();
CUdeviceptr dstVoronoiIndices = new CUdeviceptr();
CUdeviceptr dstVoronoiManhattenDistances = new CUdeviceptr();
CUdeviceptr antiAlias = new CUdeviceptr();
int pitchVoronoi = 0;
int pitchTransform = 0;
int pitchVoronoiIndices = 0;
int pitchVoronoiManhattenDistances = 0;
if (pDstVoronoi != null)
{
dstVoronoi = pDstVoronoi.DevicePointerRoi;
pitchVoronoi = pDstVoronoi.Pitch;
}
if (pDstTransform != null)
{
dstTransform = pDstTransform.DevicePointerRoi;
pitchTransform = pDstTransform.Pitch;
}
if (pDstVoronoiIndices != null)
{
dstVoronoiIndices = pDstVoronoiIndices.DevicePointerRoi;
pitchVoronoiIndices = pDstVoronoiIndices.Pitch;
}
if (pDstVoronoiManhattanRelativeDistances != null)
{
dstVoronoiManhattenDistances = pDstVoronoiManhattanRelativeDistances.DevicePointerRoi;
pitchVoronoiManhattenDistances = pDstVoronoiManhattanRelativeDistances.Pitch;
}
if (pAntialiasingDeviceBuffer != null)
{
antiAlias = pAntialiasingDeviceBuffer.DevicePointer;
}
status = NPPNativeMethods.NPPi.FilterDistanceTransform.nppiSignedDistanceTransformPBA_64f_C1R(_devPtrRoi, _pitch, nCutoffValue, nSubPixelXShift, nSubPixelYShift, dstVoronoi, pitchVoronoi, dstVoronoiIndices, pitchVoronoiIndices, dstVoronoiManhattenDistances, pitchVoronoiManhattenDistances, dstTransform, pitchTransform, _sizeRoi, pBuffer.DevicePointer, antiAlias);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiSignedDistanceTransformPBA_64f_C1R", status));
NPPException.CheckNppStatus(status, this);
}
/// <summary>
/// 1 channel 64-bit floating point grayscale to optional 1 channel 16-bit signed integer euclidean distance voronoi diagram
/// and 64-bit floating point transform with optional sub-pixel shifts.
/// <para/>
/// For this particular version of the function acceptable input pixel intensities are less than or equal to 0.0f for those fully outside of connected
/// pixel regions, intensities with fractional parts between 0.0f and 1.0f representing the percentage of connected pixel region sub-pixel coverage within a
/// particular pixel (region contour), and intensities greater than or equal to 1.0f for pixels that are fully contained within closed connected pixel regions.
/// This function executes in two passes, the first pass prioritizes pixels outside of closed regions, the second pass
/// prioritizes pixels within closed regions. The two passes are then merged on output. The function assumes that fully
/// covered pixels have centers located at sub-pixel locations of .5,.5. In general, object exterior distances are output as negative
/// numbers progressing to positive and object interior distances are output as positive numbers progressing to negative.
/// </summary>
/// <param name="nCutoffValue">source image pixel values < nCutoffValue will be considered fully outside of pixel regions (and set to -1).</param>
/// <param name="nSubPixelXShift">final transform distances will be shifted in the X direction by this sub-pixel fraction. </param>
/// <param name="nSubPixelYShift">final transform distances will be shifted in the Y direction by this sub-pixel fraction. </param>
/// <param name="pDstVoronoi">device memory voronoi diagram destination_image_pointer or NULL for no voronoi output.</param>
/// <param name="pDstVoronoiIndices">device memory voronoi diagram destination_image_pointer or NULL for no voronoi indices output.</param>
/// <param name="pDstVoronoiAbsoluteManhattanDistances">device memory voronoi relative Manhattan distances destination_image_pointer or NULL for no voronoi Manhattan output.</param>
/// <param name="pDstTransform">device memory true euclidean distance transform destination_image_pointer or NULL for no transform output.</param>
/// <param name="pBuffer">pointer to scratch DEVICE memory buffer of size hpBufferSize (see nppiSignedDistanceTransformPBAGet64fBufferSize() above)</param>
/// <param name="pAntialiasingDeviceBuffer">pointer to scratch DEVICE memory buffer of size hpAntialiasingBufferSize (see nppiSignedDistanceTransformPBAGetAntialiasingBufferSize() above) or NULL if not Antialiasing</param>
public void SignedDistanceTransformAbsPBA(double nCutoffValue, double nSubPixelXShift, double nSubPixelYShift, NPPImage_16sC1 pDstVoronoi, NPPImage_16sC1 pDstVoronoiIndices,
NPPImage_16sC1 pDstVoronoiAbsoluteManhattanDistances, NPPImage_64fC1 pDstTransform, CudaDeviceVariable<byte> pBuffer, CudaDeviceVariable<byte> pAntialiasingDeviceBuffer)
{
CUdeviceptr dstVoronoi = new CUdeviceptr();
CUdeviceptr dstTransform = new CUdeviceptr();
CUdeviceptr dstVoronoiIndices = new CUdeviceptr();
CUdeviceptr dstVoronoiManhattenDistances = new CUdeviceptr();
CUdeviceptr antiAlias = new CUdeviceptr();
int pitchVoronoi = 0;
int pitchTransform = 0;
int pitchVoronoiIndices = 0;
int pitchVoronoiManhattenDistances = 0;
if (pDstVoronoi != null)
{
dstVoronoi = pDstVoronoi.DevicePointerRoi;
pitchVoronoi = pDstVoronoi.Pitch;
}
if (pDstTransform != null)
{
dstTransform = pDstTransform.DevicePointerRoi;
pitchTransform = pDstTransform.Pitch;
}
if (pDstVoronoiIndices != null)
{
dstVoronoiIndices = pDstVoronoiIndices.DevicePointerRoi;
pitchVoronoiIndices = pDstVoronoiIndices.Pitch;
}
if (pDstVoronoiAbsoluteManhattanDistances != null)
{
dstVoronoiManhattenDistances = pDstVoronoiAbsoluteManhattanDistances.DevicePointerRoi;
pitchVoronoiManhattenDistances = pDstVoronoiAbsoluteManhattanDistances.Pitch;
}
if (pAntialiasingDeviceBuffer != null)
{
antiAlias = pAntialiasingDeviceBuffer.DevicePointer;
}
status = NPPNativeMethods.NPPi.FilterDistanceTransform.nppiSignedDistanceTransformAbsPBA_64f_C1R(_devPtrRoi, _pitch, nCutoffValue, nSubPixelXShift, nSubPixelYShift, dstVoronoi, pitchVoronoi, dstVoronoiIndices, pitchVoronoiIndices, dstVoronoiManhattenDistances, pitchVoronoiManhattenDistances, dstTransform, pitchTransform, _sizeRoi, pBuffer.DevicePointer, antiAlias);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiSignedDistanceTransformAbsPBA_64f_C1R", status));
NPPException.CheckNppStatus(status, this);
}
/// <summary>
/// 1 channel 64-bit floating point grayscale to optional 1 channel 16-bit signed integer euclidean distance voronoi diagram output and/or
/// optional 64-bit floating point transform with optional relative Manhattan distances.
/// </summary>
/// <param name="nMinSiteValue">source image pixel values >= nMinSiteValue and <= nMaxSiteValue are considered sites (traditionally 0s)</param>
/// <param name="nMaxSiteValue">source image pixel values >= nMinSiteValue and <= nMaxSiteValue are considered sites (traditionally 0s)</param>
/// <param name="pDstVoronoi">device memory voronoi diagram destination_image_pointer or NULL for no voronoi output.</param>
/// <param name="pDstVoronoiIndices">device memory voronoi diagram destination_image_pointer or NULL for no voronoi indices output.</param>
/// <param name="pDstVoronoiManhattanRelativeDistances">device memory voronoi relative Manhattan distances destination_image_pointer or NULL for no voronoi Manhattan output.</param>
/// <param name="pDstTransform">device memory true euclidean distance transform destination_image_pointer or NULL for no transform output.</param>
/// <param name="pBuffer">pointer to scratch DEVICE memory buffer of size hpBufferSize (see nppiDistanceTransformPBAGet64fBufferSize() above)</param>
/// <param name="pAntialiasingDeviceBuffer">pointer to scratch DEVICE memory buffer of size hpAntialiasingBufferSize (see nppiDistanceTransformPBAGetAntialiasingBufferSize() above) or NULL if not Antialiasing</param>
public void DistanceTransformPBA(double nMinSiteValue, double nMaxSiteValue, NPPImage_16sC1 pDstVoronoi, NPPImage_16sC1 pDstVoronoiIndices,
NPPImage_16sC1 pDstVoronoiManhattanRelativeDistances, NPPImage_64fC1 pDstTransform, CudaDeviceVariable<byte> pBuffer, CudaDeviceVariable<byte> pAntialiasingDeviceBuffer)
{
CUdeviceptr dstVoronoi = new CUdeviceptr();
CUdeviceptr dstTransform = new CUdeviceptr();
CUdeviceptr dstVoronoiIndices = new CUdeviceptr();
CUdeviceptr dstVoronoiManhattenDistances = new CUdeviceptr();
CUdeviceptr antiAlias = new CUdeviceptr();
int pitchVoronoi = 0;
int pitchTransform = 0;
int pitchVoronoiIndices = 0;
int pitchVoronoiManhattenDistances = 0;
if (pDstVoronoi != null)
{
dstVoronoi = pDstVoronoi.DevicePointerRoi;
pitchVoronoi = pDstVoronoi.Pitch;
}
if (pDstTransform != null)
{
dstTransform = pDstTransform.DevicePointerRoi;
pitchTransform = pDstTransform.Pitch;
}
if (pDstVoronoiIndices != null)
{
dstVoronoiIndices = pDstVoronoiIndices.DevicePointerRoi;
pitchVoronoiIndices = pDstVoronoiIndices.Pitch;
}
if (pDstVoronoiManhattanRelativeDistances != null)
{
dstVoronoiManhattenDistances = pDstVoronoiManhattanRelativeDistances.DevicePointerRoi;
pitchVoronoiManhattenDistances = pDstVoronoiManhattanRelativeDistances.Pitch;
}
if (pAntialiasingDeviceBuffer != null)
{
antiAlias = pAntialiasingDeviceBuffer.DevicePointer;
}
status = NPPNativeMethods.NPPi.FilterDistanceTransform.nppiDistanceTransformPBA_64f_C1R(_devPtrRoi, _pitch, nMinSiteValue, nMaxSiteValue, dstVoronoi, pitchVoronoi, dstVoronoiIndices, pitchVoronoiIndices, dstVoronoiManhattenDistances, pitchVoronoiManhattenDistances, dstTransform, pitchTransform, _sizeRoi, pBuffer.DevicePointer, antiAlias);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiDistanceTransformPBA_64f_C1R", status));
NPPException.CheckNppStatus(status, this);
}
/// <summary>
/// 1 channel 64-bit floating point grayscale to optional 1 channel 16-bit signed integer euclidean distance voronoi diagram output and/or
/// optional 64-bit floating point transform with optional absolute Manhattan distances
/// </summary>
/// <param name="nMinSiteValue">source image pixel values >= nMinSiteValue and <= nMaxSiteValue are considered sites (traditionally 0s)</param>
/// <param name="nMaxSiteValue">source image pixel values >= nMinSiteValue and <= nMaxSiteValue are considered sites (traditionally 0s)</param>
/// <param name="pDstVoronoi">device memory voronoi diagram destination_image_pointer or NULL for no voronoi output.</param>
/// <param name="pDstVoronoiIndices">device memory voronoi diagram destination_image_pointer or NULL for no voronoi indices output.</param>
/// <param name="pDstVoronoiAbsoluteManhattanDistances">device memory voronoi relative Manhattan distances destination_image_pointer or NULL for no voronoi Manhattan output.</param>
/// <param name="pDstTransform">device memory true euclidean distance transform destination_image_pointer or NULL for no transform output.</param>
/// <param name="pBuffer">pointer to scratch DEVICE memory buffer of size hpBufferSize (see nppiDistanceTransformPBAGet64fBufferSize() above)</param>
/// <param name="pAntialiasingDeviceBuffer">pointer to scratch DEVICE memory buffer of size hpAntialiasingBufferSize (see nppiDistanceTransformPBAGetAntialiasingBufferSize() above) or NULL if not Antialiasing</param>
public void DistanceTransformAbsPBA(double nMinSiteValue, double nMaxSiteValue, NPPImage_16sC1 pDstVoronoi, NPPImage_16sC1 pDstVoronoiIndices,
NPPImage_16sC1 pDstVoronoiAbsoluteManhattanDistances, NPPImage_64fC1 pDstTransform, CudaDeviceVariable<byte> pBuffer, CudaDeviceVariable<byte> pAntialiasingDeviceBuffer)
{
CUdeviceptr dstVoronoi = new CUdeviceptr();
CUdeviceptr dstTransform = new CUdeviceptr();
CUdeviceptr dstVoronoiIndices = new CUdeviceptr();
CUdeviceptr dstVoronoiManhattenDistances = new CUdeviceptr();
CUdeviceptr antiAlias = new CUdeviceptr();
int pitchVoronoi = 0;
int pitchTransform = 0;
int pitchVoronoiIndices = 0;
int pitchVoronoiManhattenDistances = 0;
if (pDstVoronoi != null)
{
dstVoronoi = pDstVoronoi.DevicePointerRoi;
pitchVoronoi = pDstVoronoi.Pitch;
}
if (pDstTransform != null)
{
dstTransform = pDstTransform.DevicePointerRoi;
pitchTransform = pDstTransform.Pitch;
}
if (pDstVoronoiIndices != null)
{
dstVoronoiIndices = pDstVoronoiIndices.DevicePointerRoi;
pitchVoronoiIndices = pDstVoronoiIndices.Pitch;
}
if (pDstVoronoiAbsoluteManhattanDistances != null)
{
dstVoronoiManhattenDistances = pDstVoronoiAbsoluteManhattanDistances.DevicePointerRoi;
pitchVoronoiManhattenDistances = pDstVoronoiAbsoluteManhattanDistances.Pitch;
}
if (pAntialiasingDeviceBuffer != null)
{
antiAlias = pAntialiasingDeviceBuffer.DevicePointer;
}
status = NPPNativeMethods.NPPi.FilterDistanceTransform.nppiDistanceTransformAbsPBA_64f_C1R(_devPtrRoi, _pitch, nMinSiteValue, nMaxSiteValue, dstVoronoi, pitchVoronoi, dstVoronoiIndices, pitchVoronoiIndices, dstVoronoiManhattenDistances, pitchVoronoiManhattenDistances, dstTransform, pitchTransform, _sizeRoi, pBuffer.DevicePointer, antiAlias);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiDistanceTransformAbsPBA_64f_C1R", status));
NPPException.CheckNppStatus(status, this);
}
/// <summary>
/// Box filter with border control.
/// </summary>
/// <param name="dest">Destination image</param>
/// <param name="oMaskSize">Width and Height of the neighborhood region for the local Avg operation.</param>
/// <param name="oAnchor">X and Y offsets of the kernel origin frame of reference w.r.t the source pixel.</param>
/// <param name="eBorderType">The border type operation to be applied at source image border boundaries.</param>
/// <param name="pBuffer">Pointer to the user-allocated scratch buffer required for the Median operation.</param>
/// <param name="filterArea">The area where the filter is allowed to read pixels. The point is relative to the ROI set to source image, the size is the total size starting from the filterArea point. Default value is the set ROI.</param>
public void FilterBoxBorderAdvanced(NPPImage_64fC1 dest, NppiSize oMaskSize, NppiPoint oAnchor, NppiBorderType eBorderType, CudaDeviceVariable<byte> pBuffer, NppiRect filterArea = new NppiRect())
{
if (filterArea.Size == new NppiSize())
{
filterArea.Size = _sizeRoi;
}
status = NPPNativeMethods.NPPi.LinearFixedFilters2D.nppiFilterBoxBorderAdvanced_64f_C1R(_devPtrRoi, _pitch, filterArea.Size, filterArea.Location, dest.DevicePointerRoi,
dest.Pitch, dest.SizeRoi, oMaskSize, oAnchor, eBorderType, pBuffer.DevicePointer);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiFilterBoxBorderAdvanced_64f_C1R", status));
NPPException.CheckNppStatus(status, this);
}
/// <summary>
/// CrossCorrFull_NormLevel.
/// </summary>
/// <param name="tpl">template image.</param>
/// <param name="dst">Destination image</param>
/// <param name="buffer">Pointer to the required device memory allocation. </param>
/// <param name="bufferAdvanced">Pointer to the required device memory allocation. See nppiCrossCorrFull_NormLevel_GetAdvancedScratchBufferSize</param>
public void CrossCorrFull_NormLevel(NPPImage_64fC1 tpl, NPPImage_64fC1 dst, CudaDeviceVariable<byte> buffer, CudaDeviceVariable<byte> bufferAdvanced)
{
status = NPPNativeMethods.NPPi.ImageProximity.nppiCrossCorrFull_NormLevelAdvanced_64f_C1R(_devPtrRoi, _pitch, _sizeRoi, tpl.DevicePointerRoi, tpl.Pitch, tpl.SizeRoi, dst.DevicePointer, dst.Pitch, buffer.DevicePointer, bufferAdvanced.DevicePointer);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiCrossCorrFull_NormLevelAdvanced_64f_C1R", status));
NPPException.CheckNppStatus(status, this);
}
/// <summary>
/// CrossCorrSame_NormLevel.
/// </summary>
/// <param name="tpl">template image.</param>
/// <param name="dst">Destination image</param>
/// <param name="buffer">Pointer to the required device memory allocation. </param>
/// <param name="bufferAdvanced">Pointer to the required device memory allocation. See nppiCrossCorrSame_NormLevel_GetAdvancedScratchBufferSize</param>
public void CrossCorrSame_NormLevel(NPPImage_64fC1 tpl, NPPImage_64fC1 dst, CudaDeviceVariable<byte> buffer, CudaDeviceVariable<byte> bufferAdvanced)
{
status = NPPNativeMethods.NPPi.ImageProximity.nppiCrossCorrSame_NormLevelAdvanced_64f_C1R(_devPtrRoi, _pitch, _sizeRoi, tpl.DevicePointerRoi, tpl.Pitch, tpl.SizeRoi, dst.DevicePointer, dst.Pitch, buffer.DevicePointer, bufferAdvanced.DevicePointer);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiCrossCorrSame_NormLevelAdvanced_64f_C1R", status));
NPPException.CheckNppStatus(status, this);
}
/// <summary>
/// CrossCorrValid_NormLevel.
/// </summary>
/// <param name="tpl">template image.</param>
/// <param name="dst">Destination image</param>
/// <param name="buffer">Pointer to the required device memory allocation. </param>
/// <param name="bufferAdvanced">Pointer to the required device memory allocation. See nppiCrossCorrValid_NormLevel_GetAdvancedScratchBufferSize</param>
public void CrossCorrValid_NormLevel(NPPImage_64fC1 tpl, NPPImage_64fC1 dst, CudaDeviceVariable<byte> buffer, CudaDeviceVariable<byte> bufferAdvanced)
{
status = NPPNativeMethods.NPPi.ImageProximity.nppiCrossCorrValid_NormLevelAdvanced_64f_C1R(_devPtrRoi, _pitch, _sizeRoi, tpl.DevicePointerRoi, tpl.Pitch, tpl.SizeRoi, dst.DevicePointer, dst.Pitch, buffer.DevicePointer, bufferAdvanced.DevicePointer);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiCrossCorrValid_NormLevelAdvanced_64f_C1R", status));
NPPException.CheckNppStatus(status, this);
}
#endif
/// <summary>
/// Device scratch buffer size (in bytes) for CrossCorrFull_NormLevel.
/// </summary>
/// <returns></returns>
public SizeT FullNormLevelGetBufferHostSize()
{
SizeT bufferSize = 0;
status = NPPNativeMethods.NPPi.ImageProximity.nppiFullNormLevelGetBufferHostSize_64f_C1R(_sizeRoi, ref bufferSize);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiFullNormLevelGetBufferHostSize_64f_C1R", status));
NPPException.CheckNppStatus(status, this);
return bufferSize;
}
/// <summary>
/// CrossCorrFull_NormLevel.
/// </summary>
/// <param name="tpl">template image.</param>
/// <param name="dst">Destination image</param>
/// <param name="buffer">Allocated device memory with size of at <see cref="FullNormLevelGetBufferHostSize()"/></param>
public void CrossCorrFull_NormLevel(NPPImage_64fC1 tpl, NPPImage_64fC1 dst, CudaDeviceVariable<byte> buffer)
{
SizeT bufferSize = FullNormLevelGetBufferHostSize();
if (bufferSize > buffer.Size) throw new NPPException("Provided buffer is too small.");
status = NPPNativeMethods.NPPi.ImageProximity.nppiCrossCorrFull_NormLevel_64f_C1R(_devPtrRoi, _pitch, _sizeRoi, tpl.DevicePointerRoi, tpl.Pitch, tpl.SizeRoi, dst.DevicePointer, dst.Pitch, buffer.DevicePointer);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiCrossCorrFull_NormLevel_64f_C1R", status));
NPPException.CheckNppStatus(status, this);
}
/// <summary>
/// CrossCorrFull_NormLevel. Buffer is internally allocated and freed.
/// </summary>
/// <param name="tpl">template image.</param>
/// <param name="dst">Destination image</param>
public void CrossCorrFull_NormLevel(NPPImage_64fC1 tpl, NPPImage_64fC1 dst)
{
SizeT bufferSize = FullNormLevelGetBufferHostSize();
CudaDeviceVariable<byte> buffer = new CudaDeviceVariable<byte>(bufferSize);
status = NPPNativeMethods.NPPi.ImageProximity.nppiCrossCorrFull_NormLevel_64f_C1R(_devPtrRoi, _pitch, _sizeRoi, tpl.DevicePointerRoi, tpl.Pitch, tpl.SizeRoi, dst.DevicePointer, dst.Pitch, buffer.DevicePointer);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiCrossCorrFull_NormLevel_64f_C1R", status));
buffer.Dispose();
NPPException.CheckNppStatus(status, this);
}
/// <summary>
/// Device scratch buffer size (in bytes) for CrossCorrSame_NormLevel.
/// </summary>
/// <returns></returns>
public SizeT SameNormLevelGetBufferHostSize()
{
SizeT bufferSize = 0;
status = NPPNativeMethods.NPPi.ImageProximity.nppiSameNormLevelGetBufferHostSize_64f_C1R(_sizeRoi, ref bufferSize);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiSameNormLevelGetBufferHostSize_64f_C1R", status));
NPPException.CheckNppStatus(status, this);
return bufferSize;
}
/// <summary>
/// CrossCorrSame_NormLevel.
/// </summary>
/// <param name="tpl">template image.</param>
/// <param name="dst">Destination image</param>
/// <param name="buffer">Allocated device memory with size of at <see cref="SameNormLevelGetBufferHostSize()"/></param>
public void CrossCorrSame_NormLevel(NPPImage_64fC1 tpl, NPPImage_64fC1 dst, CudaDeviceVariable<byte> buffer)
{
SizeT bufferSize = SameNormLevelGetBufferHostSize();
if (bufferSize > buffer.Size) throw new NPPException("Provided buffer is too small.");
status = NPPNativeMethods.NPPi.ImageProximity.nppiCrossCorrSame_NormLevel_64f_C1R(_devPtrRoi, _pitch, _sizeRoi, tpl.DevicePointerRoi, tpl.Pitch, tpl.SizeRoi, dst.DevicePointer, dst.Pitch, buffer.DevicePointer);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiCrossCorrSame_NormLevel_64f_C1R", status));
NPPException.CheckNppStatus(status, this);
}
/// <summary>
/// CrossCorrSame_NormLevel. Buffer is internally allocated and freed.
/// </summary>
/// <param name="tpl">template image.</param>
/// <param name="dst">Destination image</param>
public void CrossCorrSame_NormLevel(NPPImage_64fC1 tpl, NPPImage_64fC1 dst)
{
SizeT bufferSize = SameNormLevelGetBufferHostSize();
CudaDeviceVariable<byte> buffer = new CudaDeviceVariable<byte>(bufferSize);
status = NPPNativeMethods.NPPi.ImageProximity.nppiCrossCorrSame_NormLevel_64f_C1R(_devPtrRoi, _pitch, _sizeRoi, tpl.DevicePointerRoi, tpl.Pitch, tpl.SizeRoi, dst.DevicePointer, dst.Pitch, buffer.DevicePointer);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiCrossCorrSame_NormLevel_64f_C1R", status));
buffer.Dispose();
NPPException.CheckNppStatus(status, this);
}
/// <summary>
/// Device scratch buffer size (in bytes) for CrossCorrValid_NormLevel.
/// </summary>
/// <returns></returns>
public SizeT ValidNormLevelGetBufferHostSize()
{
SizeT bufferSize = 0;
status = NPPNativeMethods.NPPi.ImageProximity.nppiValidNormLevelGetBufferHostSize_64f_C1R(_sizeRoi, ref bufferSize);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiValidNormLevelGetBufferHostSize_64f_C1R", status));
NPPException.CheckNppStatus(status, this);
return bufferSize;
}
/// <summary>
/// CrossCorrValid_NormLevel.
/// </summary>
/// <param name="tpl">template image.</param>
/// <param name="dst">Destination image</param>
/// <param name="buffer">Allocated device memory with size of at <see cref="ValidNormLevelGetBufferHostSize()"/></param>
public void CrossCorrValid_NormLevel(NPPImage_64fC1 tpl, NPPImage_64fC1 dst, CudaDeviceVariable<byte> buffer)
{
SizeT bufferSize = ValidNormLevelGetBufferHostSize();
if (bufferSize > buffer.Size) throw new NPPException("Provided buffer is too small.");
status = NPPNativeMethods.NPPi.ImageProximity.nppiCrossCorrValid_NormLevel_64f_C1R(_devPtrRoi, _pitch, _sizeRoi, tpl.DevicePointerRoi, tpl.Pitch, tpl.SizeRoi, dst.DevicePointer, dst.Pitch, buffer.DevicePointer);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiCrossCorrValid_NormLevel_64f_C1R", status));
NPPException.CheckNppStatus(status, this);
}
/// <summary>
/// CrossCorrValid_NormLevel. Buffer is internally allocated and freed.
/// </summary>
/// <param name="tpl">template image.</param>
/// <param name="dst">Destination image</param>
public void CrossCorrValid_NormLevel(NPPImage_64fC1 tpl, NPPImage_64fC1 dst)
{
SizeT bufferSize = ValidNormLevelGetBufferHostSize();
CudaDeviceVariable<byte> buffer = new CudaDeviceVariable<byte>(bufferSize);
status = NPPNativeMethods.NPPi.ImageProximity.nppiCrossCorrValid_NormLevel_64f_C1R(_devPtrRoi, _pitch, _sizeRoi, tpl.DevicePointerRoi, tpl.Pitch, tpl.SizeRoi, dst.DevicePointer, dst.Pitch, buffer.DevicePointer);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiCrossCorrValid_NormLevel_64f_C1R", status));
buffer.Dispose();
NPPException.CheckNppStatus(status, this);
}
/// <summary>
/// image CrossCorrValid.
/// </summary>
/// <param name="tpl">template image.</param>
/// <param name="dst">Destination-Image</param>
public void CrossCorrValid(NPPImage_64fC1 tpl, NPPImage_64fC1 dst)
{
status = NPPNativeMethods.NPPi.ImageProximity.nppiCrossCorrValid_64f_C1R(_devPtrRoi, _pitch, _sizeRoi, tpl.DevicePointerRoi, tpl.Pitch, tpl.SizeRoi, dst.DevicePointerRoi, dst.Pitch);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiCrossCorrValid_64f_C1R", status));
NPPException.CheckNppStatus(status, this);
}
/// <summary>
/// image CrossCorrFull_Norm.
/// </summary>
/// <param name="tpl">template image.</param>
/// <param name="dst">Destination-Image</param>
public void CrossCorrFull_Norm(NPPImage_64fC1 tpl, NPPImage_64fC1 dst)
{
status = NPPNativeMethods.NPPi.ImageProximity.nppiCrossCorrFull_Norm_64f_C1R(_devPtrRoi, _pitch, _sizeRoi, tpl.DevicePointerRoi, tpl.Pitch, tpl.SizeRoi, dst.DevicePointerRoi, dst.Pitch);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiCrossCorrFull_Norm_64f_C1R", status));
NPPException.CheckNppStatus(status, this);
}
/// <summary>
/// image CrossCorrSame_Norm.
/// </summary>
/// <param name="tpl">template image.</param>
/// <param name="dst">Destination-Image</param>
public void CrossCorrSame_Norm(NPPImage_64fC1 tpl, NPPImage_64fC1 dst)
{
status = NPPNativeMethods.NPPi.ImageProximity.nppiCrossCorrSame_Norm_64f_C1R(_devPtrRoi, _pitch, _sizeRoi, tpl.DevicePointerRoi, tpl.Pitch, tpl.SizeRoi, dst.DevicePointerRoi, dst.Pitch);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiCrossCorrSame_Norm_64f_C1R", status));
NPPException.CheckNppStatus(status, this);
}
/// <summary>
/// image CrossCorrValid_Norm.
/// </summary>
/// <param name="tpl">template image.</param>
/// <param name="dst">Destination-Image</param>
public void CrossCorrValid_Norm(NPPImage_64fC1 tpl, NPPImage_64fC1 dst)
{
status = NPPNativeMethods.NPPi.ImageProximity.nppiCrossCorrValid_Norm_64f_C1R(_devPtrRoi, _pitch, _sizeRoi, tpl.DevicePointerRoi, tpl.Pitch, tpl.SizeRoi, dst.DevicePointerRoi, dst.Pitch);
Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiCrossCorrValid_Norm_64f_C1R", status));
NPPException.CheckNppStatus(status, this);
}
#endregion
}
}