NVIDIA 2D Image And Signal Performance Primitives (NPP)  Version 11.2.1.*
 All Data Structures Functions Variables Typedefs Enumerations Enumerator Groups Pages
nppi_threshold_and_compare_operations.h
1  /* Copyright 2009-2018 NVIDIA Corporation. All rights reserved.
2  *
3  * NOTICE TO LICENSEE:
4  *
5  * The source code and/or documentation ("Licensed Deliverables") are
6  * subject to NVIDIA intellectual property rights under U.S. and
7  * international Copyright laws.
8  *
9  * The Licensed Deliverables contained herein are PROPRIETARY and
10  * CONFIDENTIAL to NVIDIA and are being provided under the terms and
11  * conditions of a form of NVIDIA software license agreement by and
12  * between NVIDIA and Licensee ("License Agreement") or electronically
13  * accepted by Licensee. Notwithstanding any terms or conditions to
14  * the contrary in the License Agreement, reproduction or disclosure
15  * of the Licensed Deliverables to any third party without the express
16  * written consent of NVIDIA is prohibited.
17  *
18  * NOTWITHSTANDING ANY TERMS OR CONDITIONS TO THE CONTRARY IN THE
19  * LICENSE AGREEMENT, NVIDIA MAKES NO REPRESENTATION ABOUT THE
20  * SUITABILITY OF THESE LICENSED DELIVERABLES FOR ANY PURPOSE. THEY ARE
21  * PROVIDED "AS IS" WITHOUT EXPRESS OR IMPLIED WARRANTY OF ANY KIND.
22  * NVIDIA DISCLAIMS ALL WARRANTIES WITH REGARD TO THESE LICENSED
23  * DELIVERABLES, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY,
24  * NONINFRINGEMENT, AND FITNESS FOR A PARTICULAR PURPOSE.
25  * NOTWITHSTANDING ANY TERMS OR CONDITIONS TO THE CONTRARY IN THE
26  * LICENSE AGREEMENT, IN NO EVENT SHALL NVIDIA BE LIABLE FOR ANY
27  * SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, OR ANY
28  * DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
29  * WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
30  * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
31  * OF THESE LICENSED DELIVERABLES.
32  *
33  * U.S. Government End Users. These Licensed Deliverables are a
34  * "commercial item" as that term is defined at 48 C.F.R. 2.101 (OCT
35  * 1995), consisting of "commercial computer software" and "commercial
36  * computer software documentation" as such terms are used in 48
37  * C.F.R. 12.212 (SEPT 1995) and are provided to the U.S. Government
38  * only as a commercial end item. Consistent with 48 C.F.R.12.212 and
39  * 48 C.F.R. 227.7202-1 through 227.7202-4 (JUNE 1995), all
40  * U.S. Government End Users acquire the Licensed Deliverables with
41  * only those rights set forth herein.
42  *
43  * Any use of the Licensed Deliverables in individual and commercial
44  * software must include, in the user documentation and internal
45  * comments to the code, the above Disclaimer and U.S. Government End
46  * Users Notice.
47  */
48 #ifndef NV_NPPI_THRESHOLD_AND_COMPARE_OPERATIONS_H
49 #define NV_NPPI_THRESHOLD_AND_COMPARE_OPERATIONS_H
50 
56 #include "nppdefs.h"
57 
58 
59 #ifdef __cplusplus
60 extern "C" {
61 #endif
62 
63 
116 NppStatus nppiThreshold_8u_C1R_Ctx(const Npp8u * pSrc, int nSrcStep,
117  Npp8u * pDst, int nDstStep,
118  NppiSize oSizeROI,
119  const Npp8u nThreshold, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
120 
121 NppStatus nppiThreshold_8u_C1R(const Npp8u * pSrc, int nSrcStep,
122  Npp8u * pDst, int nDstStep,
123  NppiSize oSizeROI,
124  const Npp8u nThreshold, NppCmpOp eComparisonOperation);
125 
134 NppStatus nppiThreshold_8u_C1IR_Ctx(Npp8u * pSrcDst, int nSrcDstStep,
135  NppiSize oSizeROI,
136  const Npp8u nThreshold, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
137 
138 NppStatus nppiThreshold_8u_C1IR(Npp8u * pSrcDst, int nSrcDstStep,
139  NppiSize oSizeROI,
140  const Npp8u nThreshold, NppCmpOp eComparisonOperation);
141 
150 NppStatus nppiThreshold_16u_C1R_Ctx(const Npp16u * pSrc, int nSrcStep,
151  Npp16u * pDst, int nDstStep,
152  NppiSize oSizeROI,
153  const Npp16u nThreshold, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
154 
155 NppStatus nppiThreshold_16u_C1R(const Npp16u * pSrc, int nSrcStep,
156  Npp16u * pDst, int nDstStep,
157  NppiSize oSizeROI,
158  const Npp16u nThreshold, NppCmpOp eComparisonOperation);
159 
168 NppStatus nppiThreshold_16u_C1IR_Ctx(Npp16u * pSrcDst, int nSrcDstStep,
169  NppiSize oSizeROI,
170  const Npp16u nThreshold, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
171 
172 NppStatus nppiThreshold_16u_C1IR(Npp16u * pSrcDst, int nSrcDstStep,
173  NppiSize oSizeROI,
174  const Npp16u nThreshold, NppCmpOp eComparisonOperation);
175 
184 NppStatus nppiThreshold_16s_C1R_Ctx(const Npp16s * pSrc, int nSrcStep,
185  Npp16s * pDst, int nDstStep,
186  NppiSize oSizeROI,
187  const Npp16s nThreshold, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
188 
189 NppStatus nppiThreshold_16s_C1R(const Npp16s * pSrc, int nSrcStep,
190  Npp16s * pDst, int nDstStep,
191  NppiSize oSizeROI,
192  const Npp16s nThreshold, NppCmpOp eComparisonOperation);
193 
202 NppStatus nppiThreshold_16s_C1IR_Ctx(Npp16s * pSrcDst, int nSrcDstStep,
203  NppiSize oSizeROI,
204  const Npp16s nThreshold, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
205 
206 NppStatus nppiThreshold_16s_C1IR(Npp16s * pSrcDst, int nSrcDstStep,
207  NppiSize oSizeROI,
208  const Npp16s nThreshold, NppCmpOp eComparisonOperation);
209 
218 NppStatus nppiThreshold_32f_C1R_Ctx(const Npp32f * pSrc, int nSrcStep,
219  Npp32f * pDst, int nDstStep,
220  NppiSize oSizeROI,
221  const Npp32f nThreshold, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
222 
223 NppStatus nppiThreshold_32f_C1R(const Npp32f * pSrc, int nSrcStep,
224  Npp32f * pDst, int nDstStep,
225  NppiSize oSizeROI,
226  const Npp32f nThreshold, NppCmpOp eComparisonOperation);
227 
236 NppStatus nppiThreshold_32f_C1IR_Ctx(Npp32f * pSrcDst, int nSrcDstStep,
237  NppiSize oSizeROI,
238  const Npp32f nThreshold, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
239 
240 NppStatus nppiThreshold_32f_C1IR(Npp32f * pSrcDst, int nSrcDstStep,
241  NppiSize oSizeROI,
242  const Npp32f nThreshold, NppCmpOp eComparisonOperation);
243 
252 NppStatus nppiThreshold_8u_C3R_Ctx(const Npp8u * pSrc, int nSrcStep,
253  Npp8u * pDst, int nDstStep,
254  NppiSize oSizeROI,
255  const Npp8u rThresholds[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
256 
257 NppStatus nppiThreshold_8u_C3R(const Npp8u * pSrc, int nSrcStep,
258  Npp8u * pDst, int nDstStep,
259  NppiSize oSizeROI,
260  const Npp8u rThresholds[3], NppCmpOp eComparisonOperation);
261 
270 NppStatus nppiThreshold_8u_C3IR_Ctx(Npp8u * pSrcDst, int nSrcDstStep,
271  NppiSize oSizeROI,
272  const Npp8u rThresholds[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
273 
274 NppStatus nppiThreshold_8u_C3IR(Npp8u * pSrcDst, int nSrcDstStep,
275  NppiSize oSizeROI,
276  const Npp8u rThresholds[3], NppCmpOp eComparisonOperation);
277 
286 NppStatus nppiThreshold_16u_C3R_Ctx(const Npp16u * pSrc, int nSrcStep,
287  Npp16u * pDst, int nDstStep,
288  NppiSize oSizeROI,
289  const Npp16u rThresholds[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
290 
291 NppStatus nppiThreshold_16u_C3R(const Npp16u * pSrc, int nSrcStep,
292  Npp16u * pDst, int nDstStep,
293  NppiSize oSizeROI,
294  const Npp16u rThresholds[3], NppCmpOp eComparisonOperation);
295 
304 NppStatus nppiThreshold_16u_C3IR_Ctx(Npp16u * pSrcDst, int nSrcDstStep,
305  NppiSize oSizeROI,
306  const Npp16u rThresholds[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
307 
308 NppStatus nppiThreshold_16u_C3IR(Npp16u * pSrcDst, int nSrcDstStep,
309  NppiSize oSizeROI,
310  const Npp16u rThresholds[3], NppCmpOp eComparisonOperation);
311 
320 NppStatus nppiThreshold_16s_C3R_Ctx(const Npp16s * pSrc, int nSrcStep,
321  Npp16s * pDst, int nDstStep,
322  NppiSize oSizeROI,
323  const Npp16s rThresholds[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
324 
325 NppStatus nppiThreshold_16s_C3R(const Npp16s * pSrc, int nSrcStep,
326  Npp16s * pDst, int nDstStep,
327  NppiSize oSizeROI,
328  const Npp16s rThresholds[3], NppCmpOp eComparisonOperation);
329 
338 NppStatus nppiThreshold_16s_C3IR_Ctx(Npp16s * pSrcDst, int nSrcDstStep,
339  NppiSize oSizeROI,
340  const Npp16s rThresholds[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
341 
342 NppStatus nppiThreshold_16s_C3IR(Npp16s * pSrcDst, int nSrcDstStep,
343  NppiSize oSizeROI,
344  const Npp16s rThresholds[3], NppCmpOp eComparisonOperation);
345 
354 NppStatus nppiThreshold_32f_C3R_Ctx(const Npp32f * pSrc, int nSrcStep,
355  Npp32f * pDst, int nDstStep,
356  NppiSize oSizeROI,
357  const Npp32f rThresholds[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
358 
359 NppStatus nppiThreshold_32f_C3R(const Npp32f * pSrc, int nSrcStep,
360  Npp32f * pDst, int nDstStep,
361  NppiSize oSizeROI,
362  const Npp32f rThresholds[3], NppCmpOp eComparisonOperation);
363 
372 NppStatus nppiThreshold_32f_C3IR_Ctx(Npp32f * pSrcDst, int nSrcDstStep,
373  NppiSize oSizeROI,
374  const Npp32f rThresholds[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
375 
376 NppStatus nppiThreshold_32f_C3IR(Npp32f * pSrcDst, int nSrcDstStep,
377  NppiSize oSizeROI,
378  const Npp32f rThresholds[3], NppCmpOp eComparisonOperation);
379 
388 NppStatus nppiThreshold_8u_AC4R_Ctx(const Npp8u * pSrc, int nSrcStep,
389  Npp8u * pDst, int nDstStep,
390  NppiSize oSizeROI,
391  const Npp8u rThresholds[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
392 
393 NppStatus nppiThreshold_8u_AC4R(const Npp8u * pSrc, int nSrcStep,
394  Npp8u * pDst, int nDstStep,
395  NppiSize oSizeROI,
396  const Npp8u rThresholds[3], NppCmpOp eComparisonOperation);
397 
406 NppStatus nppiThreshold_8u_AC4IR_Ctx(Npp8u * pSrcDst, int nSrcDstStep,
407  NppiSize oSizeROI,
408  const Npp8u rThresholds[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
409 
410 NppStatus nppiThreshold_8u_AC4IR(Npp8u * pSrcDst, int nSrcDstStep,
411  NppiSize oSizeROI,
412  const Npp8u rThresholds[3], NppCmpOp eComparisonOperation);
413 
422 NppStatus nppiThreshold_16u_AC4R_Ctx(const Npp16u * pSrc, int nSrcStep,
423  Npp16u * pDst, int nDstStep,
424  NppiSize oSizeROI,
425  const Npp16u rThresholds[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
426 
427 NppStatus nppiThreshold_16u_AC4R(const Npp16u * pSrc, int nSrcStep,
428  Npp16u * pDst, int nDstStep,
429  NppiSize oSizeROI,
430  const Npp16u rThresholds[3], NppCmpOp eComparisonOperation);
431 
440 NppStatus nppiThreshold_16u_AC4IR_Ctx(Npp16u * pSrcDst, int nSrcDstStep,
441  NppiSize oSizeROI,
442  const Npp16u rThresholds[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
443 
444 NppStatus nppiThreshold_16u_AC4IR(Npp16u * pSrcDst, int nSrcDstStep,
445  NppiSize oSizeROI,
446  const Npp16u rThresholds[3], NppCmpOp eComparisonOperation);
447 
456 NppStatus nppiThreshold_16s_AC4R_Ctx(const Npp16s * pSrc, int nSrcStep,
457  Npp16s * pDst, int nDstStep,
458  NppiSize oSizeROI,
459  const Npp16s rThresholds[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
460 
461 NppStatus nppiThreshold_16s_AC4R(const Npp16s * pSrc, int nSrcStep,
462  Npp16s * pDst, int nDstStep,
463  NppiSize oSizeROI,
464  const Npp16s rThresholds[3], NppCmpOp eComparisonOperation);
465 
474 NppStatus nppiThreshold_16s_AC4IR_Ctx(Npp16s * pSrcDst, int nSrcDstStep,
475  NppiSize oSizeROI,
476  const Npp16s rThresholds[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
477 
478 NppStatus nppiThreshold_16s_AC4IR(Npp16s * pSrcDst, int nSrcDstStep,
479  NppiSize oSizeROI,
480  const Npp16s rThresholds[3], NppCmpOp eComparisonOperation);
481 
490 NppStatus nppiThreshold_32f_AC4R_Ctx(const Npp32f * pSrc, int nSrcStep,
491  Npp32f * pDst, int nDstStep,
492  NppiSize oSizeROI,
493  const Npp32f rThresholds[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
494 
495 NppStatus nppiThreshold_32f_AC4R(const Npp32f * pSrc, int nSrcStep,
496  Npp32f * pDst, int nDstStep,
497  NppiSize oSizeROI,
498  const Npp32f rThresholds[3], NppCmpOp eComparisonOperation);
499 
508 NppStatus nppiThreshold_32f_AC4IR_Ctx(Npp32f * pSrcDst, int nSrcDstStep,
509  NppiSize oSizeROI,
510  const Npp32f rThresholds[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
511 
512 NppStatus nppiThreshold_32f_AC4IR(Npp32f * pSrcDst, int nSrcDstStep,
513  NppiSize oSizeROI,
514  const Npp32f rThresholds[3], NppCmpOp eComparisonOperation);
515 
547 NppStatus nppiThreshold_GT_8u_C1R_Ctx(const Npp8u * pSrc, int nSrcStep,
548  Npp8u * pDst, int nDstStep,
549  NppiSize oSizeROI,
550  const Npp8u nThreshold, NppStreamContext nppStreamCtx);
551 
552 NppStatus nppiThreshold_GT_8u_C1R(const Npp8u * pSrc, int nSrcStep,
553  Npp8u * pDst, int nDstStep,
554  NppiSize oSizeROI,
555  const Npp8u nThreshold);
556 
565 NppStatus nppiThreshold_GT_8u_C1IR_Ctx(Npp8u * pSrcDst, int nSrcDstStep,
566  NppiSize oSizeROI,
567  const Npp8u nThreshold, NppStreamContext nppStreamCtx);
568 
569 NppStatus nppiThreshold_GT_8u_C1IR(Npp8u * pSrcDst, int nSrcDstStep,
570  NppiSize oSizeROI,
571  const Npp8u nThreshold);
572 
581 NppStatus nppiThreshold_GT_16u_C1R_Ctx(const Npp16u * pSrc, int nSrcStep,
582  Npp16u * pDst, int nDstStep,
583  NppiSize oSizeROI,
584  const Npp16u nThreshold, NppStreamContext nppStreamCtx);
585 
586 NppStatus nppiThreshold_GT_16u_C1R(const Npp16u * pSrc, int nSrcStep,
587  Npp16u * pDst, int nDstStep,
588  NppiSize oSizeROI,
589  const Npp16u nThreshold);
590 
599 NppStatus nppiThreshold_GT_16u_C1IR_Ctx(Npp16u * pSrcDst, int nSrcDstStep,
600  NppiSize oSizeROI,
601  const Npp16u nThreshold, NppStreamContext nppStreamCtx);
602 
603 NppStatus nppiThreshold_GT_16u_C1IR(Npp16u * pSrcDst, int nSrcDstStep,
604  NppiSize oSizeROI,
605  const Npp16u nThreshold);
606 
615 NppStatus nppiThreshold_GT_16s_C1R_Ctx(const Npp16s * pSrc, int nSrcStep,
616  Npp16s * pDst, int nDstStep,
617  NppiSize oSizeROI,
618  const Npp16s nThreshold, NppStreamContext nppStreamCtx);
619 
620 NppStatus nppiThreshold_GT_16s_C1R(const Npp16s * pSrc, int nSrcStep,
621  Npp16s * pDst, int nDstStep,
622  NppiSize oSizeROI,
623  const Npp16s nThreshold);
624 
633 NppStatus nppiThreshold_GT_16s_C1IR_Ctx(Npp16s * pSrcDst, int nSrcDstStep,
634  NppiSize oSizeROI,
635  const Npp16s nThreshold, NppStreamContext nppStreamCtx);
636 
637 NppStatus nppiThreshold_GT_16s_C1IR(Npp16s * pSrcDst, int nSrcDstStep,
638  NppiSize oSizeROI,
639  const Npp16s nThreshold);
640 
649 NppStatus nppiThreshold_GT_32f_C1R_Ctx(const Npp32f * pSrc, int nSrcStep,
650  Npp32f * pDst, int nDstStep,
651  NppiSize oSizeROI,
652  const Npp32f nThreshold, NppStreamContext nppStreamCtx);
653 
654 NppStatus nppiThreshold_GT_32f_C1R(const Npp32f * pSrc, int nSrcStep,
655  Npp32f * pDst, int nDstStep,
656  NppiSize oSizeROI,
657  const Npp32f nThreshold);
658 
667 NppStatus nppiThreshold_GT_32f_C1IR_Ctx(Npp32f * pSrcDst, int nSrcDstStep,
668  NppiSize oSizeROI,
669  const Npp32f nThreshold, NppStreamContext nppStreamCtx);
670 
671 NppStatus nppiThreshold_GT_32f_C1IR(Npp32f * pSrcDst, int nSrcDstStep,
672  NppiSize oSizeROI,
673  const Npp32f nThreshold);
674 
683 NppStatus nppiThreshold_GT_8u_C3R_Ctx(const Npp8u * pSrc, int nSrcStep,
684  Npp8u * pDst, int nDstStep,
685  NppiSize oSizeROI,
686  const Npp8u rThresholds[3], NppStreamContext nppStreamCtx);
687 
688 NppStatus nppiThreshold_GT_8u_C3R(const Npp8u * pSrc, int nSrcStep,
689  Npp8u * pDst, int nDstStep,
690  NppiSize oSizeROI,
691  const Npp8u rThresholds[3]);
692 
701 NppStatus nppiThreshold_GT_8u_C3IR_Ctx(Npp8u * pSrcDst, int nSrcDstStep,
702  NppiSize oSizeROI,
703  const Npp8u rThresholds[3], NppStreamContext nppStreamCtx);
704 
705 NppStatus nppiThreshold_GT_8u_C3IR(Npp8u * pSrcDst, int nSrcDstStep,
706  NppiSize oSizeROI,
707  const Npp8u rThresholds[3]);
708 
717 NppStatus nppiThreshold_GT_16u_C3R_Ctx(const Npp16u * pSrc, int nSrcStep,
718  Npp16u * pDst, int nDstStep,
719  NppiSize oSizeROI,
720  const Npp16u rThresholds[3], NppStreamContext nppStreamCtx);
721 
722 NppStatus nppiThreshold_GT_16u_C3R(const Npp16u * pSrc, int nSrcStep,
723  Npp16u * pDst, int nDstStep,
724  NppiSize oSizeROI,
725  const Npp16u rThresholds[3]);
726 
735 NppStatus nppiThreshold_GT_16u_C3IR_Ctx(Npp16u * pSrcDst, int nSrcDstStep,
736  NppiSize oSizeROI,
737  const Npp16u rThresholds[3], NppStreamContext nppStreamCtx);
738 
739 NppStatus nppiThreshold_GT_16u_C3IR(Npp16u * pSrcDst, int nSrcDstStep,
740  NppiSize oSizeROI,
741  const Npp16u rThresholds[3]);
742 
751 NppStatus nppiThreshold_GT_16s_C3R_Ctx(const Npp16s * pSrc, int nSrcStep,
752  Npp16s * pDst, int nDstStep,
753  NppiSize oSizeROI,
754  const Npp16s rThresholds[3], NppStreamContext nppStreamCtx);
755 
756 NppStatus nppiThreshold_GT_16s_C3R(const Npp16s * pSrc, int nSrcStep,
757  Npp16s * pDst, int nDstStep,
758  NppiSize oSizeROI,
759  const Npp16s rThresholds[3]);
760 
769 NppStatus nppiThreshold_GT_16s_C3IR_Ctx(Npp16s * pSrcDst, int nSrcDstStep,
770  NppiSize oSizeROI,
771  const Npp16s rThresholds[3], NppStreamContext nppStreamCtx);
772 
773 NppStatus nppiThreshold_GT_16s_C3IR(Npp16s * pSrcDst, int nSrcDstStep,
774  NppiSize oSizeROI,
775  const Npp16s rThresholds[3]);
776 
785 NppStatus nppiThreshold_GT_32f_C3R_Ctx(const Npp32f * pSrc, int nSrcStep,
786  Npp32f * pDst, int nDstStep,
787  NppiSize oSizeROI,
788  const Npp32f rThresholds[3], NppStreamContext nppStreamCtx);
789 
790 NppStatus nppiThreshold_GT_32f_C3R(const Npp32f * pSrc, int nSrcStep,
791  Npp32f * pDst, int nDstStep,
792  NppiSize oSizeROI,
793  const Npp32f rThresholds[3]);
794 
803 NppStatus nppiThreshold_GT_32f_C3IR_Ctx(Npp32f * pSrcDst, int nSrcDstStep,
804  NppiSize oSizeROI,
805  const Npp32f rThresholds[3], NppStreamContext nppStreamCtx);
806 
807 NppStatus nppiThreshold_GT_32f_C3IR(Npp32f * pSrcDst, int nSrcDstStep,
808  NppiSize oSizeROI,
809  const Npp32f rThresholds[3]);
810 
819 NppStatus nppiThreshold_GT_8u_AC4R_Ctx(const Npp8u * pSrc, int nSrcStep,
820  Npp8u * pDst, int nDstStep,
821  NppiSize oSizeROI,
822  const Npp8u rThresholds[3], NppStreamContext nppStreamCtx);
823 
824 NppStatus nppiThreshold_GT_8u_AC4R(const Npp8u * pSrc, int nSrcStep,
825  Npp8u * pDst, int nDstStep,
826  NppiSize oSizeROI,
827  const Npp8u rThresholds[3]);
828 
837 NppStatus nppiThreshold_GT_8u_AC4IR_Ctx(Npp8u * pSrcDst, int nSrcDstStep,
838  NppiSize oSizeROI,
839  const Npp8u rThresholds[3], NppStreamContext nppStreamCtx);
840 
841 NppStatus nppiThreshold_GT_8u_AC4IR(Npp8u * pSrcDst, int nSrcDstStep,
842  NppiSize oSizeROI,
843  const Npp8u rThresholds[3]);
844 
853 NppStatus nppiThreshold_GT_16u_AC4R_Ctx(const Npp16u * pSrc, int nSrcStep,
854  Npp16u * pDst, int nDstStep,
855  NppiSize oSizeROI,
856  const Npp16u rThresholds[3], NppStreamContext nppStreamCtx);
857 
858 NppStatus nppiThreshold_GT_16u_AC4R(const Npp16u * pSrc, int nSrcStep,
859  Npp16u * pDst, int nDstStep,
860  NppiSize oSizeROI,
861  const Npp16u rThresholds[3]);
862 
871 NppStatus nppiThreshold_GT_16u_AC4IR_Ctx(Npp16u * pSrcDst, int nSrcDstStep,
872  NppiSize oSizeROI,
873  const Npp16u rThresholds[3], NppStreamContext nppStreamCtx);
874 
875 NppStatus nppiThreshold_GT_16u_AC4IR(Npp16u * pSrcDst, int nSrcDstStep,
876  NppiSize oSizeROI,
877  const Npp16u rThresholds[3]);
878 
887 NppStatus nppiThreshold_GT_16s_AC4R_Ctx(const Npp16s * pSrc, int nSrcStep,
888  Npp16s * pDst, int nDstStep,
889  NppiSize oSizeROI,
890  const Npp16s rThresholds[3], NppStreamContext nppStreamCtx);
891 
892 NppStatus nppiThreshold_GT_16s_AC4R(const Npp16s * pSrc, int nSrcStep,
893  Npp16s * pDst, int nDstStep,
894  NppiSize oSizeROI,
895  const Npp16s rThresholds[3]);
896 
905 NppStatus nppiThreshold_GT_16s_AC4IR_Ctx(Npp16s * pSrcDst, int nSrcDstStep,
906  NppiSize oSizeROI,
907  const Npp16s rThresholds[3], NppStreamContext nppStreamCtx);
908 
909 NppStatus nppiThreshold_GT_16s_AC4IR(Npp16s * pSrcDst, int nSrcDstStep,
910  NppiSize oSizeROI,
911  const Npp16s rThresholds[3]);
912 
921 NppStatus nppiThreshold_GT_32f_AC4R_Ctx(const Npp32f * pSrc, int nSrcStep,
922  Npp32f * pDst, int nDstStep,
923  NppiSize oSizeROI,
924  const Npp32f rThresholds[3], NppStreamContext nppStreamCtx);
925 
926 NppStatus nppiThreshold_GT_32f_AC4R(const Npp32f * pSrc, int nSrcStep,
927  Npp32f * pDst, int nDstStep,
928  NppiSize oSizeROI,
929  const Npp32f rThresholds[3]);
930 
939 NppStatus nppiThreshold_GT_32f_AC4IR_Ctx(Npp32f * pSrcDst, int nSrcDstStep,
940  NppiSize oSizeROI,
941  const Npp32f rThresholds[3], NppStreamContext nppStreamCtx);
942 
943 NppStatus nppiThreshold_GT_32f_AC4IR(Npp32f * pSrcDst, int nSrcDstStep,
944  NppiSize oSizeROI,
945  const Npp32f rThresholds[3]);
946 
978 NppStatus nppiThreshold_LT_8u_C1R_Ctx(const Npp8u * pSrc, int nSrcStep,
979  Npp8u * pDst, int nDstStep,
980  NppiSize oSizeROI,
981  const Npp8u nThreshold, NppStreamContext nppStreamCtx);
982 
983 NppStatus nppiThreshold_LT_8u_C1R(const Npp8u * pSrc, int nSrcStep,
984  Npp8u * pDst, int nDstStep,
985  NppiSize oSizeROI,
986  const Npp8u nThreshold);
987 
996 NppStatus nppiThreshold_LT_8u_C1IR_Ctx(Npp8u * pSrcDst, int nSrcDstStep,
997  NppiSize oSizeROI,
998  const Npp8u nThreshold, NppStreamContext nppStreamCtx);
999 
1000 NppStatus nppiThreshold_LT_8u_C1IR(Npp8u * pSrcDst, int nSrcDstStep,
1001  NppiSize oSizeROI,
1002  const Npp8u nThreshold);
1003 
1012 NppStatus nppiThreshold_LT_16u_C1R_Ctx(const Npp16u * pSrc, int nSrcStep,
1013  Npp16u * pDst, int nDstStep,
1014  NppiSize oSizeROI,
1015  const Npp16u nThreshold, NppStreamContext nppStreamCtx);
1016 
1017 NppStatus nppiThreshold_LT_16u_C1R(const Npp16u * pSrc, int nSrcStep,
1018  Npp16u * pDst, int nDstStep,
1019  NppiSize oSizeROI,
1020  const Npp16u nThreshold);
1021 
1030 NppStatus nppiThreshold_LT_16u_C1IR_Ctx(Npp16u * pSrcDst, int nSrcDstStep,
1031  NppiSize oSizeROI,
1032  const Npp16u nThreshold, NppStreamContext nppStreamCtx);
1033 
1034 NppStatus nppiThreshold_LT_16u_C1IR(Npp16u * pSrcDst, int nSrcDstStep,
1035  NppiSize oSizeROI,
1036  const Npp16u nThreshold);
1037 
1046 NppStatus nppiThreshold_LT_16s_C1R_Ctx(const Npp16s * pSrc, int nSrcStep,
1047  Npp16s * pDst, int nDstStep,
1048  NppiSize oSizeROI,
1049  const Npp16s nThreshold, NppStreamContext nppStreamCtx);
1050 
1051 NppStatus nppiThreshold_LT_16s_C1R(const Npp16s * pSrc, int nSrcStep,
1052  Npp16s * pDst, int nDstStep,
1053  NppiSize oSizeROI,
1054  const Npp16s nThreshold);
1055 
1064 NppStatus nppiThreshold_LT_16s_C1IR_Ctx(Npp16s * pSrcDst, int nSrcDstStep,
1065  NppiSize oSizeROI,
1066  const Npp16s nThreshold, NppStreamContext nppStreamCtx);
1067 
1068 NppStatus nppiThreshold_LT_16s_C1IR(Npp16s * pSrcDst, int nSrcDstStep,
1069  NppiSize oSizeROI,
1070  const Npp16s nThreshold);
1071 
1080 NppStatus nppiThreshold_LT_32f_C1R_Ctx(const Npp32f * pSrc, int nSrcStep,
1081  Npp32f * pDst, int nDstStep,
1082  NppiSize oSizeROI,
1083  const Npp32f nThreshold, NppStreamContext nppStreamCtx);
1084 
1085 NppStatus nppiThreshold_LT_32f_C1R(const Npp32f * pSrc, int nSrcStep,
1086  Npp32f * pDst, int nDstStep,
1087  NppiSize oSizeROI,
1088  const Npp32f nThreshold);
1089 
1098 NppStatus nppiThreshold_LT_32f_C1IR_Ctx(Npp32f * pSrcDst, int nSrcDstStep,
1099  NppiSize oSizeROI,
1100  const Npp32f nThreshold, NppStreamContext nppStreamCtx);
1101 
1102 NppStatus nppiThreshold_LT_32f_C1IR(Npp32f * pSrcDst, int nSrcDstStep,
1103  NppiSize oSizeROI,
1104  const Npp32f nThreshold);
1105 
1114 NppStatus nppiThreshold_LT_8u_C3R_Ctx(const Npp8u * pSrc, int nSrcStep,
1115  Npp8u * pDst, int nDstStep,
1116  NppiSize oSizeROI,
1117  const Npp8u rThresholds[3], NppStreamContext nppStreamCtx);
1118 
1119 NppStatus nppiThreshold_LT_8u_C3R(const Npp8u * pSrc, int nSrcStep,
1120  Npp8u * pDst, int nDstStep,
1121  NppiSize oSizeROI,
1122  const Npp8u rThresholds[3]);
1123 
1132 NppStatus nppiThreshold_LT_8u_C3IR_Ctx(Npp8u * pSrcDst, int nSrcDstStep,
1133  NppiSize oSizeROI,
1134  const Npp8u rThresholds[3], NppStreamContext nppStreamCtx);
1135 
1136 NppStatus nppiThreshold_LT_8u_C3IR(Npp8u * pSrcDst, int nSrcDstStep,
1137  NppiSize oSizeROI,
1138  const Npp8u rThresholds[3]);
1139 
1148 NppStatus nppiThreshold_LT_16u_C3R_Ctx(const Npp16u * pSrc, int nSrcStep,
1149  Npp16u * pDst, int nDstStep,
1150  NppiSize oSizeROI,
1151  const Npp16u rThresholds[3], NppStreamContext nppStreamCtx);
1152 
1153 NppStatus nppiThreshold_LT_16u_C3R(const Npp16u * pSrc, int nSrcStep,
1154  Npp16u * pDst, int nDstStep,
1155  NppiSize oSizeROI,
1156  const Npp16u rThresholds[3]);
1157 
1166 NppStatus nppiThreshold_LT_16u_C3IR_Ctx(Npp16u * pSrcDst, int nSrcDstStep,
1167  NppiSize oSizeROI,
1168  const Npp16u rThresholds[3], NppStreamContext nppStreamCtx);
1169 
1170 NppStatus nppiThreshold_LT_16u_C3IR(Npp16u * pSrcDst, int nSrcDstStep,
1171  NppiSize oSizeROI,
1172  const Npp16u rThresholds[3]);
1173 
1182 NppStatus nppiThreshold_LT_16s_C3R_Ctx(const Npp16s * pSrc, int nSrcStep,
1183  Npp16s * pDst, int nDstStep,
1184  NppiSize oSizeROI,
1185  const Npp16s rThresholds[3], NppStreamContext nppStreamCtx);
1186 
1187 NppStatus nppiThreshold_LT_16s_C3R(const Npp16s * pSrc, int nSrcStep,
1188  Npp16s * pDst, int nDstStep,
1189  NppiSize oSizeROI,
1190  const Npp16s rThresholds[3]);
1191 
1200 NppStatus nppiThreshold_LT_16s_C3IR_Ctx(Npp16s * pSrcDst, int nSrcDstStep,
1201  NppiSize oSizeROI,
1202  const Npp16s rThresholds[3], NppStreamContext nppStreamCtx);
1203 
1204 NppStatus nppiThreshold_LT_16s_C3IR(Npp16s * pSrcDst, int nSrcDstStep,
1205  NppiSize oSizeROI,
1206  const Npp16s rThresholds[3]);
1207 
1216 NppStatus nppiThreshold_LT_32f_C3R_Ctx(const Npp32f * pSrc, int nSrcStep,
1217  Npp32f * pDst, int nDstStep,
1218  NppiSize oSizeROI,
1219  const Npp32f rThresholds[3], NppStreamContext nppStreamCtx);
1220 
1221 NppStatus nppiThreshold_LT_32f_C3R(const Npp32f * pSrc, int nSrcStep,
1222  Npp32f * pDst, int nDstStep,
1223  NppiSize oSizeROI,
1224  const Npp32f rThresholds[3]);
1225 
1234 NppStatus nppiThreshold_LT_32f_C3IR_Ctx(Npp32f * pSrcDst, int nSrcDstStep,
1235  NppiSize oSizeROI,
1236  const Npp32f rThresholds[3], NppStreamContext nppStreamCtx);
1237 
1238 NppStatus nppiThreshold_LT_32f_C3IR(Npp32f * pSrcDst, int nSrcDstStep,
1239  NppiSize oSizeROI,
1240  const Npp32f rThresholds[3]);
1241 
1250 NppStatus nppiThreshold_LT_8u_AC4R_Ctx(const Npp8u * pSrc, int nSrcStep,
1251  Npp8u * pDst, int nDstStep,
1252  NppiSize oSizeROI,
1253  const Npp8u rThresholds[3], NppStreamContext nppStreamCtx);
1254 
1255 NppStatus nppiThreshold_LT_8u_AC4R(const Npp8u * pSrc, int nSrcStep,
1256  Npp8u * pDst, int nDstStep,
1257  NppiSize oSizeROI,
1258  const Npp8u rThresholds[3]);
1259 
1268 NppStatus nppiThreshold_LT_8u_AC4IR_Ctx(Npp8u * pSrcDst, int nSrcDstStep,
1269  NppiSize oSizeROI,
1270  const Npp8u rThresholds[3], NppStreamContext nppStreamCtx);
1271 
1272 NppStatus nppiThreshold_LT_8u_AC4IR(Npp8u * pSrcDst, int nSrcDstStep,
1273  NppiSize oSizeROI,
1274  const Npp8u rThresholds[3]);
1275 
1284 NppStatus nppiThreshold_LT_16u_AC4R_Ctx(const Npp16u * pSrc, int nSrcStep,
1285  Npp16u * pDst, int nDstStep,
1286  NppiSize oSizeROI,
1287  const Npp16u rThresholds[3], NppStreamContext nppStreamCtx);
1288 
1289 NppStatus nppiThreshold_LT_16u_AC4R(const Npp16u * pSrc, int nSrcStep,
1290  Npp16u * pDst, int nDstStep,
1291  NppiSize oSizeROI,
1292  const Npp16u rThresholds[3]);
1293 
1302 NppStatus nppiThreshold_LT_16u_AC4IR_Ctx(Npp16u * pSrcDst, int nSrcDstStep,
1303  NppiSize oSizeROI,
1304  const Npp16u rThresholds[3], NppStreamContext nppStreamCtx);
1305 
1306 NppStatus nppiThreshold_LT_16u_AC4IR(Npp16u * pSrcDst, int nSrcDstStep,
1307  NppiSize oSizeROI,
1308  const Npp16u rThresholds[3]);
1309 
1318 NppStatus nppiThreshold_LT_16s_AC4R_Ctx(const Npp16s * pSrc, int nSrcStep,
1319  Npp16s * pDst, int nDstStep,
1320  NppiSize oSizeROI,
1321  const Npp16s rThresholds[3], NppStreamContext nppStreamCtx);
1322 
1323 NppStatus nppiThreshold_LT_16s_AC4R(const Npp16s * pSrc, int nSrcStep,
1324  Npp16s * pDst, int nDstStep,
1325  NppiSize oSizeROI,
1326  const Npp16s rThresholds[3]);
1327 
1336 NppStatus nppiThreshold_LT_16s_AC4IR_Ctx(Npp16s * pSrcDst, int nSrcDstStep,
1337  NppiSize oSizeROI,
1338  const Npp16s rThresholds[3], NppStreamContext nppStreamCtx);
1339 
1340 NppStatus nppiThreshold_LT_16s_AC4IR(Npp16s * pSrcDst, int nSrcDstStep,
1341  NppiSize oSizeROI,
1342  const Npp16s rThresholds[3]);
1343 
1352 NppStatus nppiThreshold_LT_32f_AC4R_Ctx(const Npp32f * pSrc, int nSrcStep,
1353  Npp32f * pDst, int nDstStep,
1354  NppiSize oSizeROI,
1355  const Npp32f rThresholds[3], NppStreamContext nppStreamCtx);
1356 
1357 NppStatus nppiThreshold_LT_32f_AC4R(const Npp32f * pSrc, int nSrcStep,
1358  Npp32f * pDst, int nDstStep,
1359  NppiSize oSizeROI,
1360  const Npp32f rThresholds[3]);
1361 
1370 NppStatus nppiThreshold_LT_32f_AC4IR_Ctx(Npp32f * pSrcDst, int nSrcDstStep,
1371  NppiSize oSizeROI,
1372  const Npp32f rThresholds[3], NppStreamContext nppStreamCtx);
1373 
1374 NppStatus nppiThreshold_LT_32f_AC4IR(Npp32f * pSrcDst, int nSrcDstStep,
1375  NppiSize oSizeROI,
1376  const Npp32f rThresholds[3]);
1377 
1413 NppStatus nppiThreshold_Val_8u_C1R_Ctx(const Npp8u * pSrc, int nSrcStep,
1414  Npp8u * pDst, int nDstStep,
1415  NppiSize oSizeROI,
1416  const Npp8u nThreshold, const Npp8u nValue, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
1417 
1418 NppStatus nppiThreshold_Val_8u_C1R(const Npp8u * pSrc, int nSrcStep,
1419  Npp8u * pDst, int nDstStep,
1420  NppiSize oSizeROI,
1421  const Npp8u nThreshold, const Npp8u nValue, NppCmpOp eComparisonOperation);
1422 
1431 NppStatus nppiThreshold_Val_8u_C1IR_Ctx(Npp8u * pSrcDst, int nSrcDstStep,
1432  NppiSize oSizeROI,
1433  const Npp8u nThreshold, const Npp8u nValue, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
1434 
1435 NppStatus nppiThreshold_Val_8u_C1IR(Npp8u * pSrcDst, int nSrcDstStep,
1436  NppiSize oSizeROI,
1437  const Npp8u nThreshold, const Npp8u nValue, NppCmpOp eComparisonOperation);
1438 
1447 NppStatus nppiThreshold_Val_16u_C1R_Ctx(const Npp16u * pSrc, int nSrcStep,
1448  Npp16u * pDst, int nDstStep,
1449  NppiSize oSizeROI,
1450  const Npp16u nThreshold, const Npp16u nValue, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
1451 
1452 NppStatus nppiThreshold_Val_16u_C1R(const Npp16u * pSrc, int nSrcStep,
1453  Npp16u * pDst, int nDstStep,
1454  NppiSize oSizeROI,
1455  const Npp16u nThreshold, const Npp16u nValue, NppCmpOp eComparisonOperation);
1456 
1465 NppStatus nppiThreshold_Val_16u_C1IR_Ctx(Npp16u * pSrcDst, int nSrcDstStep,
1466  NppiSize oSizeROI,
1467  const Npp16u nThreshold, const Npp16u nValue, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
1468 
1469 NppStatus nppiThreshold_Val_16u_C1IR(Npp16u * pSrcDst, int nSrcDstStep,
1470  NppiSize oSizeROI,
1471  const Npp16u nThreshold, const Npp16u nValue, NppCmpOp eComparisonOperation);
1472 
1481 NppStatus nppiThreshold_Val_16s_C1R_Ctx(const Npp16s * pSrc, int nSrcStep,
1482  Npp16s * pDst, int nDstStep,
1483  NppiSize oSizeROI,
1484  const Npp16s nThreshold, const Npp16s nValue, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
1485 
1486 NppStatus nppiThreshold_Val_16s_C1R(const Npp16s * pSrc, int nSrcStep,
1487  Npp16s * pDst, int nDstStep,
1488  NppiSize oSizeROI,
1489  const Npp16s nThreshold, const Npp16s nValue, NppCmpOp eComparisonOperation);
1490 
1499 NppStatus nppiThreshold_Val_16s_C1IR_Ctx(Npp16s * pSrcDst, int nSrcDstStep,
1500  NppiSize oSizeROI,
1501  const Npp16s nThreshold, const Npp16s nValue, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
1502 
1503 NppStatus nppiThreshold_Val_16s_C1IR(Npp16s * pSrcDst, int nSrcDstStep,
1504  NppiSize oSizeROI,
1505  const Npp16s nThreshold, const Npp16s nValue, NppCmpOp eComparisonOperation);
1506 
1515 NppStatus nppiThreshold_Val_32f_C1R_Ctx(const Npp32f * pSrc, int nSrcStep,
1516  Npp32f * pDst, int nDstStep,
1517  NppiSize oSizeROI,
1518  const Npp32f nThreshold, const Npp32f nValue, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
1519 
1520 NppStatus nppiThreshold_Val_32f_C1R(const Npp32f * pSrc, int nSrcStep,
1521  Npp32f * pDst, int nDstStep,
1522  NppiSize oSizeROI,
1523  const Npp32f nThreshold, const Npp32f nValue, NppCmpOp eComparisonOperation);
1524 
1533 NppStatus nppiThreshold_Val_32f_C1IR_Ctx(Npp32f * pSrcDst, int nSrcDstStep,
1534  NppiSize oSizeROI,
1535  const Npp32f nThreshold, const Npp32f nValue, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
1536 
1537 NppStatus nppiThreshold_Val_32f_C1IR(Npp32f * pSrcDst, int nSrcDstStep,
1538  NppiSize oSizeROI,
1539  const Npp32f nThreshold, const Npp32f nValue, NppCmpOp eComparisonOperation);
1540 
1549 NppStatus nppiThreshold_Val_8u_C3R_Ctx(const Npp8u * pSrc, int nSrcStep,
1550  Npp8u * pDst, int nDstStep,
1551  NppiSize oSizeROI,
1552  const Npp8u rThresholds[3], const Npp8u rValues[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
1553 
1554 NppStatus nppiThreshold_Val_8u_C3R(const Npp8u * pSrc, int nSrcStep,
1555  Npp8u * pDst, int nDstStep,
1556  NppiSize oSizeROI,
1557  const Npp8u rThresholds[3], const Npp8u rValues[3], NppCmpOp eComparisonOperation);
1558 
1567 NppStatus nppiThreshold_Val_8u_C3IR_Ctx(Npp8u * pSrcDst, int nSrcDstStep,
1568  NppiSize oSizeROI,
1569  const Npp8u rThresholds[3], const Npp8u rValues[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
1570 
1571 NppStatus nppiThreshold_Val_8u_C3IR(Npp8u * pSrcDst, int nSrcDstStep,
1572  NppiSize oSizeROI,
1573  const Npp8u rThresholds[3], const Npp8u rValues[3], NppCmpOp eComparisonOperation);
1574 
1583 NppStatus nppiThreshold_Val_16u_C3R_Ctx(const Npp16u * pSrc, int nSrcStep,
1584  Npp16u * pDst, int nDstStep,
1585  NppiSize oSizeROI,
1586  const Npp16u rThresholds[3], const Npp16u rValues[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
1587 
1588 NppStatus nppiThreshold_Val_16u_C3R(const Npp16u * pSrc, int nSrcStep,
1589  Npp16u * pDst, int nDstStep,
1590  NppiSize oSizeROI,
1591  const Npp16u rThresholds[3], const Npp16u rValues[3], NppCmpOp eComparisonOperation);
1592 
1601 NppStatus nppiThreshold_Val_16u_C3IR_Ctx(Npp16u * pSrcDst, int nSrcDstStep,
1602  NppiSize oSizeROI,
1603  const Npp16u rThresholds[3], const Npp16u rValues[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
1604 
1605 NppStatus nppiThreshold_Val_16u_C3IR(Npp16u * pSrcDst, int nSrcDstStep,
1606  NppiSize oSizeROI,
1607  const Npp16u rThresholds[3], const Npp16u rValues[3], NppCmpOp eComparisonOperation);
1608 
1617 NppStatus nppiThreshold_Val_16s_C3R_Ctx(const Npp16s * pSrc, int nSrcStep,
1618  Npp16s * pDst, int nDstStep,
1619  NppiSize oSizeROI,
1620  const Npp16s rThresholds[3], const Npp16s rValues[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
1621 
1622 NppStatus nppiThreshold_Val_16s_C3R(const Npp16s * pSrc, int nSrcStep,
1623  Npp16s * pDst, int nDstStep,
1624  NppiSize oSizeROI,
1625  const Npp16s rThresholds[3], const Npp16s rValues[3], NppCmpOp eComparisonOperation);
1626 
1635 NppStatus nppiThreshold_Val_16s_C3IR_Ctx(Npp16s * pSrcDst, int nSrcDstStep,
1636  NppiSize oSizeROI,
1637  const Npp16s rThresholds[3], const Npp16s rValues[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
1638 
1639 NppStatus nppiThreshold_Val_16s_C3IR(Npp16s * pSrcDst, int nSrcDstStep,
1640  NppiSize oSizeROI,
1641  const Npp16s rThresholds[3], const Npp16s rValues[3], NppCmpOp eComparisonOperation);
1642 
1651 NppStatus nppiThreshold_Val_32f_C3R_Ctx(const Npp32f * pSrc, int nSrcStep,
1652  Npp32f * pDst, int nDstStep,
1653  NppiSize oSizeROI,
1654  const Npp32f rThresholds[3], const Npp32f rValues[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
1655 
1656 NppStatus nppiThreshold_Val_32f_C3R(const Npp32f * pSrc, int nSrcStep,
1657  Npp32f * pDst, int nDstStep,
1658  NppiSize oSizeROI,
1659  const Npp32f rThresholds[3], const Npp32f rValues[3], NppCmpOp eComparisonOperation);
1660 
1669 NppStatus nppiThreshold_Val_32f_C3IR_Ctx(Npp32f * pSrcDst, int nSrcDstStep,
1670  NppiSize oSizeROI,
1671  const Npp32f rThresholds[3], const Npp32f rValues[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
1672 
1673 NppStatus nppiThreshold_Val_32f_C3IR(Npp32f * pSrcDst, int nSrcDstStep,
1674  NppiSize oSizeROI,
1675  const Npp32f rThresholds[3], const Npp32f rValues[3], NppCmpOp eComparisonOperation);
1676 
1677 
1686 NppStatus nppiThreshold_Val_8u_AC4R_Ctx(const Npp8u * pSrc, int nSrcStep,
1687  Npp8u * pDst, int nDstStep,
1688  NppiSize oSizeROI,
1689  const Npp8u rThresholds[3], const Npp8u rValues[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
1690 
1691 NppStatus nppiThreshold_Val_8u_AC4R(const Npp8u * pSrc, int nSrcStep,
1692  Npp8u * pDst, int nDstStep,
1693  NppiSize oSizeROI,
1694  const Npp8u rThresholds[3], const Npp8u rValues[3], NppCmpOp eComparisonOperation);
1695 
1704 NppStatus nppiThreshold_Val_8u_AC4IR_Ctx(Npp8u * pSrcDst, int nSrcDstStep,
1705  NppiSize oSizeROI,
1706  const Npp8u rThresholds[3], const Npp8u rValues[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
1707 
1708 NppStatus nppiThreshold_Val_8u_AC4IR(Npp8u * pSrcDst, int nSrcDstStep,
1709  NppiSize oSizeROI,
1710  const Npp8u rThresholds[3], const Npp8u rValues[3], NppCmpOp eComparisonOperation);
1711 
1720 NppStatus nppiThreshold_Val_16u_AC4R_Ctx(const Npp16u * pSrc, int nSrcStep,
1721  Npp16u * pDst, int nDstStep,
1722  NppiSize oSizeROI,
1723  const Npp16u rThresholds[3], const Npp16u rValues[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
1724 
1725 NppStatus nppiThreshold_Val_16u_AC4R(const Npp16u * pSrc, int nSrcStep,
1726  Npp16u * pDst, int nDstStep,
1727  NppiSize oSizeROI,
1728  const Npp16u rThresholds[3], const Npp16u rValues[3], NppCmpOp eComparisonOperation);
1729 
1738 NppStatus nppiThreshold_Val_16u_AC4IR_Ctx(Npp16u * pSrcDst, int nSrcDstStep,
1739  NppiSize oSizeROI,
1740  const Npp16u rThresholds[3], const Npp16u rValues[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
1741 
1742 NppStatus nppiThreshold_Val_16u_AC4IR(Npp16u * pSrcDst, int nSrcDstStep,
1743  NppiSize oSizeROI,
1744  const Npp16u rThresholds[3], const Npp16u rValues[3], NppCmpOp eComparisonOperation);
1745 
1754 NppStatus nppiThreshold_Val_16s_AC4R_Ctx(const Npp16s * pSrc, int nSrcStep,
1755  Npp16s * pDst, int nDstStep,
1756  NppiSize oSizeROI,
1757  const Npp16s rThresholds[3], const Npp16s rValues[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
1758 
1759 NppStatus nppiThreshold_Val_16s_AC4R(const Npp16s * pSrc, int nSrcStep,
1760  Npp16s * pDst, int nDstStep,
1761  NppiSize oSizeROI,
1762  const Npp16s rThresholds[3], const Npp16s rValues[3], NppCmpOp eComparisonOperation);
1763 
1772 NppStatus nppiThreshold_Val_16s_AC4IR_Ctx(Npp16s * pSrcDst, int nSrcDstStep,
1773  NppiSize oSizeROI,
1774  const Npp16s rThresholds[3], const Npp16s rValues[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
1775 
1776 NppStatus nppiThreshold_Val_16s_AC4IR(Npp16s * pSrcDst, int nSrcDstStep,
1777  NppiSize oSizeROI,
1778  const Npp16s rThresholds[3], const Npp16s rValues[3], NppCmpOp eComparisonOperation);
1779 
1788 NppStatus nppiThreshold_Val_32f_AC4R_Ctx(const Npp32f * pSrc, int nSrcStep,
1789  Npp32f * pDst, int nDstStep,
1790  NppiSize oSizeROI,
1791  const Npp32f rThresholds[3], const Npp32f rValues[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
1792 
1793 NppStatus nppiThreshold_Val_32f_AC4R(const Npp32f * pSrc, int nSrcStep,
1794  Npp32f * pDst, int nDstStep,
1795  NppiSize oSizeROI,
1796  const Npp32f rThresholds[3], const Npp32f rValues[3], NppCmpOp eComparisonOperation);
1797 
1806 NppStatus nppiThreshold_Val_32f_AC4IR_Ctx(Npp32f * pSrcDst, int nSrcDstStep,
1807  NppiSize oSizeROI,
1808  const Npp32f rThresholds[3], const Npp32f rValues[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
1809 
1810 NppStatus nppiThreshold_Val_32f_AC4IR(Npp32f * pSrcDst, int nSrcDstStep,
1811  NppiSize oSizeROI,
1812  const Npp32f rThresholds[3], const Npp32f rValues[3], NppCmpOp eComparisonOperation);
1813 
1848 NppStatus nppiThreshold_GTVal_8u_C1R_Ctx(const Npp8u * pSrc, int nSrcStep,
1849  Npp8u * pDst, int nDstStep,
1850  NppiSize oSizeROI,
1851  const Npp8u nThreshold, const Npp8u nValue, NppStreamContext nppStreamCtx);
1852 
1853 NppStatus nppiThreshold_GTVal_8u_C1R(const Npp8u * pSrc, int nSrcStep,
1854  Npp8u * pDst, int nDstStep,
1855  NppiSize oSizeROI,
1856  const Npp8u nThreshold, const Npp8u nValue);
1857 
1866 NppStatus nppiThreshold_GTVal_8u_C1IR_Ctx(Npp8u * pSrcDst, int nSrcDstStep,
1867  NppiSize oSizeROI,
1868  const Npp8u nThreshold, const Npp8u nValue, NppStreamContext nppStreamCtx);
1869 
1870 NppStatus nppiThreshold_GTVal_8u_C1IR(Npp8u * pSrcDst, int nSrcDstStep,
1871  NppiSize oSizeROI,
1872  const Npp8u nThreshold, const Npp8u nValue);
1873 
1882 NppStatus nppiThreshold_GTVal_16u_C1R_Ctx(const Npp16u * pSrc, int nSrcStep,
1883  Npp16u * pDst, int nDstStep,
1884  NppiSize oSizeROI,
1885  const Npp16u nThreshold, const Npp16u nValue, NppStreamContext nppStreamCtx);
1886 
1887 NppStatus nppiThreshold_GTVal_16u_C1R(const Npp16u * pSrc, int nSrcStep,
1888  Npp16u * pDst, int nDstStep,
1889  NppiSize oSizeROI,
1890  const Npp16u nThreshold, const Npp16u nValue);
1891 
1900 NppStatus nppiThreshold_GTVal_16u_C1IR_Ctx(Npp16u * pSrcDst, int nSrcDstStep,
1901  NppiSize oSizeROI,
1902  const Npp16u nThreshold, const Npp16u nValue, NppStreamContext nppStreamCtx);
1903 
1904 NppStatus nppiThreshold_GTVal_16u_C1IR(Npp16u * pSrcDst, int nSrcDstStep,
1905  NppiSize oSizeROI,
1906  const Npp16u nThreshold, const Npp16u nValue);
1907 
1916 NppStatus nppiThreshold_GTVal_16s_C1R_Ctx(const Npp16s * pSrc, int nSrcStep,
1917  Npp16s * pDst, int nDstStep,
1918  NppiSize oSizeROI,
1919  const Npp16s nThreshold, const Npp16s nValue, NppStreamContext nppStreamCtx);
1920 
1921 NppStatus nppiThreshold_GTVal_16s_C1R(const Npp16s * pSrc, int nSrcStep,
1922  Npp16s * pDst, int nDstStep,
1923  NppiSize oSizeROI,
1924  const Npp16s nThreshold, const Npp16s nValue);
1925 
1934 NppStatus nppiThreshold_GTVal_16s_C1IR_Ctx(Npp16s * pSrcDst, int nSrcDstStep,
1935  NppiSize oSizeROI,
1936  const Npp16s nThreshold, const Npp16s nValue, NppStreamContext nppStreamCtx);
1937 
1938 NppStatus nppiThreshold_GTVal_16s_C1IR(Npp16s * pSrcDst, int nSrcDstStep,
1939  NppiSize oSizeROI,
1940  const Npp16s nThreshold, const Npp16s nValue);
1941 
1950 NppStatus nppiThreshold_GTVal_32f_C1R_Ctx(const Npp32f * pSrc, int nSrcStep,
1951  Npp32f * pDst, int nDstStep,
1952  NppiSize oSizeROI,
1953  const Npp32f nThreshold, const Npp32f nValue, NppStreamContext nppStreamCtx);
1954 
1955 NppStatus nppiThreshold_GTVal_32f_C1R(const Npp32f * pSrc, int nSrcStep,
1956  Npp32f * pDst, int nDstStep,
1957  NppiSize oSizeROI,
1958  const Npp32f nThreshold, const Npp32f nValue);
1959 
1968 NppStatus nppiThreshold_GTVal_32f_C1IR_Ctx(Npp32f * pSrcDst, int nSrcDstStep,
1969  NppiSize oSizeROI,
1970  const Npp32f nThreshold, const Npp32f nValue, NppStreamContext nppStreamCtx);
1971 
1972 NppStatus nppiThreshold_GTVal_32f_C1IR(Npp32f * pSrcDst, int nSrcDstStep,
1973  NppiSize oSizeROI,
1974  const Npp32f nThreshold, const Npp32f nValue);
1975 
1984 NppStatus nppiThreshold_GTVal_8u_C3R_Ctx(const Npp8u * pSrc, int nSrcStep,
1985  Npp8u * pDst, int nDstStep,
1986  NppiSize oSizeROI,
1987  const Npp8u rThresholds[3], const Npp8u rValues[3], NppStreamContext nppStreamCtx);
1988 
1989 NppStatus nppiThreshold_GTVal_8u_C3R(const Npp8u * pSrc, int nSrcStep,
1990  Npp8u * pDst, int nDstStep,
1991  NppiSize oSizeROI,
1992  const Npp8u rThresholds[3], const Npp8u rValues[3]);
1993 
2002 NppStatus nppiThreshold_GTVal_8u_C3IR_Ctx(Npp8u * pSrcDst, int nSrcDstStep,
2003  NppiSize oSizeROI,
2004  const Npp8u rThresholds[3], const Npp8u rValues[3], NppStreamContext nppStreamCtx);
2005 
2006 NppStatus nppiThreshold_GTVal_8u_C3IR(Npp8u * pSrcDst, int nSrcDstStep,
2007  NppiSize oSizeROI,
2008  const Npp8u rThresholds[3], const Npp8u rValues[3]);
2009 
2018 NppStatus nppiThreshold_GTVal_16u_C3R_Ctx(const Npp16u * pSrc, int nSrcStep,
2019  Npp16u * pDst, int nDstStep,
2020  NppiSize oSizeROI,
2021  const Npp16u rThresholds[3], const Npp16u rValues[3], NppStreamContext nppStreamCtx);
2022 
2023 NppStatus nppiThreshold_GTVal_16u_C3R(const Npp16u * pSrc, int nSrcStep,
2024  Npp16u * pDst, int nDstStep,
2025  NppiSize oSizeROI,
2026  const Npp16u rThresholds[3], const Npp16u rValues[3]);
2027 
2036 NppStatus nppiThreshold_GTVal_16u_C3IR_Ctx(Npp16u * pSrcDst, int nSrcDstStep,
2037  NppiSize oSizeROI,
2038  const Npp16u rThresholds[3], const Npp16u rValues[3], NppStreamContext nppStreamCtx);
2039 
2040 NppStatus nppiThreshold_GTVal_16u_C3IR(Npp16u * pSrcDst, int nSrcDstStep,
2041  NppiSize oSizeROI,
2042  const Npp16u rThresholds[3], const Npp16u rValues[3]);
2043 
2052 NppStatus nppiThreshold_GTVal_16s_C3R_Ctx(const Npp16s * pSrc, int nSrcStep,
2053  Npp16s * pDst, int nDstStep,
2054  NppiSize oSizeROI,
2055  const Npp16s rThresholds[3], const Npp16s rValues[3], NppStreamContext nppStreamCtx);
2056 
2057 NppStatus nppiThreshold_GTVal_16s_C3R(const Npp16s * pSrc, int nSrcStep,
2058  Npp16s * pDst, int nDstStep,
2059  NppiSize oSizeROI,
2060  const Npp16s rThresholds[3], const Npp16s rValues[3]);
2061 
2070 NppStatus nppiThreshold_GTVal_16s_C3IR_Ctx(Npp16s * pSrcDst, int nSrcDstStep,
2071  NppiSize oSizeROI,
2072  const Npp16s rThresholds[3], const Npp16s rValues[3], NppStreamContext nppStreamCtx);
2073 
2074 NppStatus nppiThreshold_GTVal_16s_C3IR(Npp16s * pSrcDst, int nSrcDstStep,
2075  NppiSize oSizeROI,
2076  const Npp16s rThresholds[3], const Npp16s rValues[3]);
2077 
2086 NppStatus nppiThreshold_GTVal_32f_C3R_Ctx(const Npp32f * pSrc, int nSrcStep,
2087  Npp32f * pDst, int nDstStep,
2088  NppiSize oSizeROI,
2089  const Npp32f rThresholds[3], const Npp32f rValues[3], NppStreamContext nppStreamCtx);
2090 
2091 NppStatus nppiThreshold_GTVal_32f_C3R(const Npp32f * pSrc, int nSrcStep,
2092  Npp32f * pDst, int nDstStep,
2093  NppiSize oSizeROI,
2094  const Npp32f rThresholds[3], const Npp32f rValues[3]);
2095 
2104 NppStatus nppiThreshold_GTVal_32f_C3IR_Ctx(Npp32f * pSrcDst, int nSrcDstStep,
2105  NppiSize oSizeROI,
2106  const Npp32f rThresholds[3], const Npp32f rValues[3], NppStreamContext nppStreamCtx);
2107 
2108 NppStatus nppiThreshold_GTVal_32f_C3IR(Npp32f * pSrcDst, int nSrcDstStep,
2109  NppiSize oSizeROI,
2110  const Npp32f rThresholds[3], const Npp32f rValues[3]);
2111 
2120 NppStatus nppiThreshold_GTVal_8u_AC4R_Ctx(const Npp8u * pSrc, int nSrcStep,
2121  Npp8u * pDst, int nDstStep,
2122  NppiSize oSizeROI,
2123  const Npp8u rThresholds[3], const Npp8u rValues[3], NppStreamContext nppStreamCtx);
2124 
2125 NppStatus nppiThreshold_GTVal_8u_AC4R(const Npp8u * pSrc, int nSrcStep,
2126  Npp8u * pDst, int nDstStep,
2127  NppiSize oSizeROI,
2128  const Npp8u rThresholds[3], const Npp8u rValues[3]);
2129 
2138 NppStatus nppiThreshold_GTVal_8u_AC4IR_Ctx(Npp8u * pSrcDst, int nSrcDstStep,
2139  NppiSize oSizeROI,
2140  const Npp8u rThresholds[3], const Npp8u rValues[3], NppStreamContext nppStreamCtx);
2141 
2142 NppStatus nppiThreshold_GTVal_8u_AC4IR(Npp8u * pSrcDst, int nSrcDstStep,
2143  NppiSize oSizeROI,
2144  const Npp8u rThresholds[3], const Npp8u rValues[3]);
2145 
2154 NppStatus nppiThreshold_GTVal_16u_AC4R_Ctx(const Npp16u * pSrc, int nSrcStep,
2155  Npp16u * pDst, int nDstStep,
2156  NppiSize oSizeROI,
2157  const Npp16u rThresholds[3], const Npp16u rValues[3], NppStreamContext nppStreamCtx);
2158 
2159 NppStatus nppiThreshold_GTVal_16u_AC4R(const Npp16u * pSrc, int nSrcStep,
2160  Npp16u * pDst, int nDstStep,
2161  NppiSize oSizeROI,
2162  const Npp16u rThresholds[3], const Npp16u rValues[3]);
2163 
2172 NppStatus nppiThreshold_GTVal_16u_AC4IR_Ctx(Npp16u * pSrcDst, int nSrcDstStep,
2173  NppiSize oSizeROI,
2174  const Npp16u rThresholds[3], const Npp16u rValues[3], NppStreamContext nppStreamCtx);
2175 
2176 NppStatus nppiThreshold_GTVal_16u_AC4IR(Npp16u * pSrcDst, int nSrcDstStep,
2177  NppiSize oSizeROI,
2178  const Npp16u rThresholds[3], const Npp16u rValues[3]);
2179 
2188 NppStatus nppiThreshold_GTVal_16s_AC4R_Ctx(const Npp16s * pSrc, int nSrcStep,
2189  Npp16s * pDst, int nDstStep,
2190  NppiSize oSizeROI,
2191  const Npp16s rThresholds[3], const Npp16s rValues[3], NppStreamContext nppStreamCtx);
2192 
2193 NppStatus nppiThreshold_GTVal_16s_AC4R(const Npp16s * pSrc, int nSrcStep,
2194  Npp16s * pDst, int nDstStep,
2195  NppiSize oSizeROI,
2196  const Npp16s rThresholds[3], const Npp16s rValues[3]);
2197 
2206 NppStatus nppiThreshold_GTVal_16s_AC4IR_Ctx(Npp16s * pSrcDst, int nSrcDstStep,
2207  NppiSize oSizeROI,
2208  const Npp16s rThresholds[3], const Npp16s rValues[3], NppStreamContext nppStreamCtx);
2209 
2210 NppStatus nppiThreshold_GTVal_16s_AC4IR(Npp16s * pSrcDst, int nSrcDstStep,
2211  NppiSize oSizeROI,
2212  const Npp16s rThresholds[3], const Npp16s rValues[3]);
2213 
2222 NppStatus nppiThreshold_GTVal_32f_AC4R_Ctx(const Npp32f * pSrc, int nSrcStep,
2223  Npp32f * pDst, int nDstStep,
2224  NppiSize oSizeROI,
2225  const Npp32f rThresholds[3], const Npp32f rValues[3], NppStreamContext nppStreamCtx);
2226 
2227 NppStatus nppiThreshold_GTVal_32f_AC4R(const Npp32f * pSrc, int nSrcStep,
2228  Npp32f * pDst, int nDstStep,
2229  NppiSize oSizeROI,
2230  const Npp32f rThresholds[3], const Npp32f rValues[3]);
2231 
2240 NppStatus nppiThreshold_GTVal_32f_AC4IR_Ctx(Npp32f * pSrcDst, int nSrcDstStep,
2241  NppiSize oSizeROI,
2242  const Npp32f rThresholds[3], const Npp32f rValues[3], NppStreamContext nppStreamCtx);
2243 
2244 NppStatus nppiThreshold_GTVal_32f_AC4IR(Npp32f * pSrcDst, int nSrcDstStep,
2245  NppiSize oSizeROI,
2246  const Npp32f rThresholds[3], const Npp32f rValues[3]);
2247 
2280 NppStatus nppiThreshold_LTVal_8u_C1R_Ctx(const Npp8u * pSrc, int nSrcStep,
2281  Npp8u * pDst, int nDstStep,
2282  NppiSize oSizeROI,
2283  const Npp8u nThreshold, const Npp8u nValue, NppStreamContext nppStreamCtx);
2284 
2285 NppStatus nppiThreshold_LTVal_8u_C1R(const Npp8u * pSrc, int nSrcStep,
2286  Npp8u * pDst, int nDstStep,
2287  NppiSize oSizeROI,
2288  const Npp8u nThreshold, const Npp8u nValue);
2289 
2298 NppStatus nppiThreshold_LTVal_8u_C1IR_Ctx(Npp8u * pSrcDst, int nSrcDstStep,
2299  NppiSize oSizeROI,
2300  const Npp8u nThreshold, const Npp8u nValue, NppStreamContext nppStreamCtx);
2301 
2302 NppStatus nppiThreshold_LTVal_8u_C1IR(Npp8u * pSrcDst, int nSrcDstStep,
2303  NppiSize oSizeROI,
2304  const Npp8u nThreshold, const Npp8u nValue);
2305 
2314 NppStatus nppiThreshold_LTVal_16u_C1R_Ctx(const Npp16u * pSrc, int nSrcStep,
2315  Npp16u * pDst, int nDstStep,
2316  NppiSize oSizeROI,
2317  const Npp16u nThreshold, const Npp16u nValue, NppStreamContext nppStreamCtx);
2318 
2319 NppStatus nppiThreshold_LTVal_16u_C1R(const Npp16u * pSrc, int nSrcStep,
2320  Npp16u * pDst, int nDstStep,
2321  NppiSize oSizeROI,
2322  const Npp16u nThreshold, const Npp16u nValue);
2323 
2332 NppStatus nppiThreshold_LTVal_16u_C1IR_Ctx(Npp16u * pSrcDst, int nSrcDstStep,
2333  NppiSize oSizeROI,
2334  const Npp16u nThreshold, const Npp16u nValue, NppStreamContext nppStreamCtx);
2335 
2336 NppStatus nppiThreshold_LTVal_16u_C1IR(Npp16u * pSrcDst, int nSrcDstStep,
2337  NppiSize oSizeROI,
2338  const Npp16u nThreshold, const Npp16u nValue);
2339 
2348 NppStatus nppiThreshold_LTVal_16s_C1R_Ctx(const Npp16s * pSrc, int nSrcStep,
2349  Npp16s * pDst, int nDstStep,
2350  NppiSize oSizeROI,
2351  const Npp16s nThreshold, const Npp16s nValue, NppStreamContext nppStreamCtx);
2352 
2353 NppStatus nppiThreshold_LTVal_16s_C1R(const Npp16s * pSrc, int nSrcStep,
2354  Npp16s * pDst, int nDstStep,
2355  NppiSize oSizeROI,
2356  const Npp16s nThreshold, const Npp16s nValue);
2357 
2366 NppStatus nppiThreshold_LTVal_16s_C1IR_Ctx(Npp16s * pSrcDst, int nSrcDstStep,
2367  NppiSize oSizeROI,
2368  const Npp16s nThreshold, const Npp16s nValue, NppStreamContext nppStreamCtx);
2369 
2370 NppStatus nppiThreshold_LTVal_16s_C1IR(Npp16s * pSrcDst, int nSrcDstStep,
2371  NppiSize oSizeROI,
2372  const Npp16s nThreshold, const Npp16s nValue);
2373 
2382 NppStatus nppiThreshold_LTVal_32f_C1R_Ctx(const Npp32f * pSrc, int nSrcStep,
2383  Npp32f * pDst, int nDstStep,
2384  NppiSize oSizeROI,
2385  const Npp32f nThreshold, const Npp32f nValue, NppStreamContext nppStreamCtx);
2386 
2387 NppStatus nppiThreshold_LTVal_32f_C1R(const Npp32f * pSrc, int nSrcStep,
2388  Npp32f * pDst, int nDstStep,
2389  NppiSize oSizeROI,
2390  const Npp32f nThreshold, const Npp32f nValue);
2391 
2400 NppStatus nppiThreshold_LTVal_32f_C1IR_Ctx(Npp32f * pSrcDst, int nSrcDstStep,
2401  NppiSize oSizeROI,
2402  const Npp32f nThreshold, const Npp32f nValue, NppStreamContext nppStreamCtx);
2403 
2404 NppStatus nppiThreshold_LTVal_32f_C1IR(Npp32f * pSrcDst, int nSrcDstStep,
2405  NppiSize oSizeROI,
2406  const Npp32f nThreshold, const Npp32f nValue);
2407 
2416 NppStatus nppiThreshold_LTVal_8u_C3R_Ctx(const Npp8u * pSrc, int nSrcStep,
2417  Npp8u * pDst, int nDstStep,
2418  NppiSize oSizeROI,
2419  const Npp8u rThresholds[3], const Npp8u rValues[3], NppStreamContext nppStreamCtx);
2420 
2421 NppStatus nppiThreshold_LTVal_8u_C3R(const Npp8u * pSrc, int nSrcStep,
2422  Npp8u * pDst, int nDstStep,
2423  NppiSize oSizeROI,
2424  const Npp8u rThresholds[3], const Npp8u rValues[3]);
2425 
2434 NppStatus nppiThreshold_LTVal_8u_C3IR_Ctx(Npp8u * pSrcDst, int nSrcDstStep,
2435  NppiSize oSizeROI,
2436  const Npp8u rThresholds[3], const Npp8u rValues[3], NppStreamContext nppStreamCtx);
2437 
2438 NppStatus nppiThreshold_LTVal_8u_C3IR(Npp8u * pSrcDst, int nSrcDstStep,
2439  NppiSize oSizeROI,
2440  const Npp8u rThresholds[3], const Npp8u rValues[3]);
2441 
2450 NppStatus nppiThreshold_LTVal_16u_C3R_Ctx(const Npp16u * pSrc, int nSrcStep,
2451  Npp16u * pDst, int nDstStep,
2452  NppiSize oSizeROI,
2453  const Npp16u rThresholds[3], const Npp16u rValues[3], NppStreamContext nppStreamCtx);
2454 
2455 NppStatus nppiThreshold_LTVal_16u_C3R(const Npp16u * pSrc, int nSrcStep,
2456  Npp16u * pDst, int nDstStep,
2457  NppiSize oSizeROI,
2458  const Npp16u rThresholds[3], const Npp16u rValues[3]);
2459 
2468 NppStatus nppiThreshold_LTVal_16u_C3IR_Ctx(Npp16u * pSrcDst, int nSrcDstStep,
2469  NppiSize oSizeROI,
2470  const Npp16u rThresholds[3], const Npp16u rValues[3], NppStreamContext nppStreamCtx);
2471 
2472 NppStatus nppiThreshold_LTVal_16u_C3IR(Npp16u * pSrcDst, int nSrcDstStep,
2473  NppiSize oSizeROI,
2474  const Npp16u rThresholds[3], const Npp16u rValues[3]);
2475 
2484 NppStatus nppiThreshold_LTVal_16s_C3R_Ctx(const Npp16s * pSrc, int nSrcStep,
2485  Npp16s * pDst, int nDstStep,
2486  NppiSize oSizeROI,
2487  const Npp16s rThresholds[3], const Npp16s rValues[3], NppStreamContext nppStreamCtx);
2488 
2489 NppStatus nppiThreshold_LTVal_16s_C3R(const Npp16s * pSrc, int nSrcStep,
2490  Npp16s * pDst, int nDstStep,
2491  NppiSize oSizeROI,
2492  const Npp16s rThresholds[3], const Npp16s rValues[3]);
2493 
2502 NppStatus nppiThreshold_LTVal_16s_C3IR_Ctx(Npp16s * pSrcDst, int nSrcDstStep,
2503  NppiSize oSizeROI,
2504  const Npp16s rThresholds[3], const Npp16s rValues[3], NppStreamContext nppStreamCtx);
2505 
2506 NppStatus nppiThreshold_LTVal_16s_C3IR(Npp16s * pSrcDst, int nSrcDstStep,
2507  NppiSize oSizeROI,
2508  const Npp16s rThresholds[3], const Npp16s rValues[3]);
2509 
2518 NppStatus nppiThreshold_LTVal_32f_C3R_Ctx(const Npp32f * pSrc, int nSrcStep,
2519  Npp32f * pDst, int nDstStep,
2520  NppiSize oSizeROI,
2521  const Npp32f rThresholds[3], const Npp32f rValues[3], NppStreamContext nppStreamCtx);
2522 
2523 NppStatus nppiThreshold_LTVal_32f_C3R(const Npp32f * pSrc, int nSrcStep,
2524  Npp32f * pDst, int nDstStep,
2525  NppiSize oSizeROI,
2526  const Npp32f rThresholds[3], const Npp32f rValues[3]);
2527 
2536 NppStatus nppiThreshold_LTVal_32f_C3IR_Ctx(Npp32f * pSrcDst, int nSrcDstStep,
2537  NppiSize oSizeROI,
2538  const Npp32f rThresholds[3], const Npp32f rValues[3], NppStreamContext nppStreamCtx);
2539 
2540 NppStatus nppiThreshold_LTVal_32f_C3IR(Npp32f * pSrcDst, int nSrcDstStep,
2541  NppiSize oSizeROI,
2542  const Npp32f rThresholds[3], const Npp32f rValues[3]);
2543 
2552 NppStatus nppiThreshold_LTVal_8u_AC4R_Ctx(const Npp8u * pSrc, int nSrcStep,
2553  Npp8u * pDst, int nDstStep,
2554  NppiSize oSizeROI,
2555  const Npp8u rThresholds[3], const Npp8u rValues[3], NppStreamContext nppStreamCtx);
2556 
2557 NppStatus nppiThreshold_LTVal_8u_AC4R(const Npp8u * pSrc, int nSrcStep,
2558  Npp8u * pDst, int nDstStep,
2559  NppiSize oSizeROI,
2560  const Npp8u rThresholds[3], const Npp8u rValues[3]);
2561 
2570 NppStatus nppiThreshold_LTVal_8u_AC4IR_Ctx(Npp8u * pSrcDst, int nSrcDstStep,
2571  NppiSize oSizeROI,
2572  const Npp8u rThresholds[3], const Npp8u rValues[3], NppStreamContext nppStreamCtx);
2573 
2574 NppStatus nppiThreshold_LTVal_8u_AC4IR(Npp8u * pSrcDst, int nSrcDstStep,
2575  NppiSize oSizeROI,
2576  const Npp8u rThresholds[3], const Npp8u rValues[3]);
2577 
2586 NppStatus nppiThreshold_LTVal_16u_AC4R_Ctx(const Npp16u * pSrc, int nSrcStep,
2587  Npp16u * pDst, int nDstStep,
2588  NppiSize oSizeROI,
2589  const Npp16u rThresholds[3], const Npp16u rValues[3], NppStreamContext nppStreamCtx);
2590 
2591 NppStatus nppiThreshold_LTVal_16u_AC4R(const Npp16u * pSrc, int nSrcStep,
2592  Npp16u * pDst, int nDstStep,
2593  NppiSize oSizeROI,
2594  const Npp16u rThresholds[3], const Npp16u rValues[3]);
2595 
2604 NppStatus nppiThreshold_LTVal_16u_AC4IR_Ctx(Npp16u * pSrcDst, int nSrcDstStep,
2605  NppiSize oSizeROI,
2606  const Npp16u rThresholds[3], const Npp16u rValues[3], NppStreamContext nppStreamCtx);
2607 
2608 NppStatus nppiThreshold_LTVal_16u_AC4IR(Npp16u * pSrcDst, int nSrcDstStep,
2609  NppiSize oSizeROI,
2610  const Npp16u rThresholds[3], const Npp16u rValues[3]);
2611 
2620 NppStatus nppiThreshold_LTVal_16s_AC4R_Ctx(const Npp16s * pSrc, int nSrcStep,
2621  Npp16s * pDst, int nDstStep,
2622  NppiSize oSizeROI,
2623  const Npp16s rThresholds[3], const Npp16s rValues[3], NppStreamContext nppStreamCtx);
2624 
2625 NppStatus nppiThreshold_LTVal_16s_AC4R(const Npp16s * pSrc, int nSrcStep,
2626  Npp16s * pDst, int nDstStep,
2627  NppiSize oSizeROI,
2628  const Npp16s rThresholds[3], const Npp16s rValues[3]);
2629 
2638 NppStatus nppiThreshold_LTVal_16s_AC4IR_Ctx(Npp16s * pSrcDst, int nSrcDstStep,
2639  NppiSize oSizeROI,
2640  const Npp16s rThresholds[3], const Npp16s rValues[3], NppStreamContext nppStreamCtx);
2641 
2642 NppStatus nppiThreshold_LTVal_16s_AC4IR(Npp16s * pSrcDst, int nSrcDstStep,
2643  NppiSize oSizeROI,
2644  const Npp16s rThresholds[3], const Npp16s rValues[3]);
2645 
2654 NppStatus nppiThreshold_LTVal_32f_AC4R_Ctx(const Npp32f * pSrc, int nSrcStep,
2655  Npp32f * pDst, int nDstStep,
2656  NppiSize oSizeROI,
2657  const Npp32f rThresholds[3], const Npp32f rValues[3], NppStreamContext nppStreamCtx);
2658 
2659 NppStatus nppiThreshold_LTVal_32f_AC4R(const Npp32f * pSrc, int nSrcStep,
2660  Npp32f * pDst, int nDstStep,
2661  NppiSize oSizeROI,
2662  const Npp32f rThresholds[3], const Npp32f rValues[3]);
2663 
2672 NppStatus nppiThreshold_LTVal_32f_AC4IR_Ctx(Npp32f * pSrcDst, int nSrcDstStep,
2673  NppiSize oSizeROI,
2674  const Npp32f rThresholds[3], const Npp32f rValues[3], NppStreamContext nppStreamCtx);
2675 
2676 NppStatus nppiThreshold_LTVal_32f_AC4IR(Npp32f * pSrcDst, int nSrcDstStep,
2677  NppiSize oSizeROI,
2678  const Npp32f rThresholds[3], const Npp32f rValues[3]);
2679 
2715 NppStatus nppiThreshold_LTValGTVal_8u_C1R_Ctx(const Npp8u * pSrc, int nSrcStep,
2716  Npp8u * pDst, int nDstStep,
2717  NppiSize oSizeROI,
2718  const Npp8u nThresholdLT, const Npp8u nValueLT, const Npp8u nThresholdGT, const Npp8u nValueGT, NppStreamContext nppStreamCtx);
2719 
2720 NppStatus nppiThreshold_LTValGTVal_8u_C1R(const Npp8u * pSrc, int nSrcStep,
2721  Npp8u * pDst, int nDstStep,
2722  NppiSize oSizeROI,
2723  const Npp8u nThresholdLT, const Npp8u nValueLT, const Npp8u nThresholdGT, const Npp8u nValueGT);
2724 
2733 NppStatus nppiThreshold_LTValGTVal_8u_C1IR_Ctx(Npp8u * pSrcDst, int nSrcDstStep,
2734  NppiSize oSizeROI,
2735  const Npp8u nThresholdLT, const Npp8u nValueLT, const Npp8u nThresholdGT, const Npp8u nValueGT, NppStreamContext nppStreamCtx);
2736 
2737 NppStatus nppiThreshold_LTValGTVal_8u_C1IR(Npp8u * pSrcDst, int nSrcDstStep,
2738  NppiSize oSizeROI,
2739  const Npp8u nThresholdLT, const Npp8u nValueLT, const Npp8u nThresholdGT, const Npp8u nValueGT);
2740 
2749 NppStatus nppiThreshold_LTValGTVal_16u_C1R_Ctx(const Npp16u * pSrc, int nSrcStep,
2750  Npp16u * pDst, int nDstStep,
2751  NppiSize oSizeROI,
2752  const Npp16u nThresholdLT, const Npp16u nValueLT, const Npp16u nThresholdGT, const Npp16u nValueGT, NppStreamContext nppStreamCtx);
2753 
2754 NppStatus nppiThreshold_LTValGTVal_16u_C1R(const Npp16u * pSrc, int nSrcStep,
2755  Npp16u * pDst, int nDstStep,
2756  NppiSize oSizeROI,
2757  const Npp16u nThresholdLT, const Npp16u nValueLT, const Npp16u nThresholdGT, const Npp16u nValueGT);
2758 
2767 NppStatus nppiThreshold_LTValGTVal_16u_C1IR_Ctx(Npp16u * pSrcDst, int nSrcDstStep,
2768  NppiSize oSizeROI,
2769  const Npp16u nThresholdLT, const Npp16u nValueLT, const Npp16u nThresholdGT, const Npp16u nValueGT, NppStreamContext nppStreamCtx);
2770 
2771 NppStatus nppiThreshold_LTValGTVal_16u_C1IR(Npp16u * pSrcDst, int nSrcDstStep,
2772  NppiSize oSizeROI,
2773  const Npp16u nThresholdLT, const Npp16u nValueLT, const Npp16u nThresholdGT, const Npp16u nValueGT);
2774 
2783 NppStatus nppiThreshold_LTValGTVal_16s_C1R_Ctx(const Npp16s * pSrc, int nSrcStep,
2784  Npp16s * pDst, int nDstStep,
2785  NppiSize oSizeROI,
2786  const Npp16s nThresholdLT, const Npp16s nValueLT, const Npp16s nThresholdGT, const Npp16s nValueGT, NppStreamContext nppStreamCtx);
2787 
2788 NppStatus nppiThreshold_LTValGTVal_16s_C1R(const Npp16s * pSrc, int nSrcStep,
2789  Npp16s * pDst, int nDstStep,
2790  NppiSize oSizeROI,
2791  const Npp16s nThresholdLT, const Npp16s nValueLT, const Npp16s nThresholdGT, const Npp16s nValueGT);
2792 
2801 NppStatus nppiThreshold_LTValGTVal_16s_C1IR_Ctx(Npp16s * pSrcDst, int nSrcDstStep,
2802  NppiSize oSizeROI,
2803  const Npp16s nThresholdLT, const Npp16s nValueLT, const Npp16s nThresholdGT, const Npp16s nValueGT, NppStreamContext nppStreamCtx);
2804 
2805 NppStatus nppiThreshold_LTValGTVal_16s_C1IR(Npp16s * pSrcDst, int nSrcDstStep,
2806  NppiSize oSizeROI,
2807  const Npp16s nThresholdLT, const Npp16s nValueLT, const Npp16s nThresholdGT, const Npp16s nValueGT);
2808 
2817 NppStatus nppiThreshold_LTValGTVal_32f_C1R_Ctx(const Npp32f * pSrc, int nSrcStep,
2818  Npp32f * pDst, int nDstStep,
2819  NppiSize oSizeROI,
2820  const Npp32f nThresholdLT, const Npp32f nValueLT, const Npp32f nThresholdGT, const Npp32f nValueGT, NppStreamContext nppStreamCtx);
2821 
2822 NppStatus nppiThreshold_LTValGTVal_32f_C1R(const Npp32f * pSrc, int nSrcStep,
2823  Npp32f * pDst, int nDstStep,
2824  NppiSize oSizeROI,
2825  const Npp32f nThresholdLT, const Npp32f nValueLT, const Npp32f nThresholdGT, const Npp32f nValueGT);
2826 
2835 NppStatus nppiThreshold_LTValGTVal_32f_C1IR_Ctx(Npp32f * pSrcDst, int nSrcDstStep,
2836  NppiSize oSizeROI,
2837  const Npp32f nThresholdLT, const Npp32f nValueLT, const Npp32f nThresholdGT, const Npp32f nValueGT, NppStreamContext nppStreamCtx);
2838 
2839 NppStatus nppiThreshold_LTValGTVal_32f_C1IR(Npp32f * pSrcDst, int nSrcDstStep,
2840  NppiSize oSizeROI,
2841  const Npp32f nThresholdLT, const Npp32f nValueLT, const Npp32f nThresholdGT, const Npp32f nValueGT);
2842 
2851 NppStatus nppiThreshold_LTValGTVal_8u_C3R_Ctx(const Npp8u * pSrc, int nSrcStep,
2852  Npp8u * pDst, int nDstStep,
2853  NppiSize oSizeROI,
2854  const Npp8u rThresholdsLT[3], const Npp8u rValuesLT[3], const Npp8u rThresholdsGT[3], const Npp8u rValuesGT[3], NppStreamContext nppStreamCtx);
2855 
2856 NppStatus nppiThreshold_LTValGTVal_8u_C3R(const Npp8u * pSrc, int nSrcStep,
2857  Npp8u * pDst, int nDstStep,
2858  NppiSize oSizeROI,
2859  const Npp8u rThresholdsLT[3], const Npp8u rValuesLT[3], const Npp8u rThresholdsGT[3], const Npp8u rValuesGT[3]);
2860 
2869 NppStatus nppiThreshold_LTValGTVal_8u_C3IR_Ctx(Npp8u * pSrcDst, int nSrcDstStep,
2870  NppiSize oSizeROI,
2871  const Npp8u rThresholdsLT[3], const Npp8u rValuesLT[3], const Npp8u rThresholdsGT[3], const Npp8u rValuesGT[3], NppStreamContext nppStreamCtx);
2872 
2873 NppStatus nppiThreshold_LTValGTVal_8u_C3IR(Npp8u * pSrcDst, int nSrcDstStep,
2874  NppiSize oSizeROI,
2875  const Npp8u rThresholdsLT[3], const Npp8u rValuesLT[3], const Npp8u rThresholdsGT[3], const Npp8u rValuesGT[3]);
2876 
2885 NppStatus nppiThreshold_LTValGTVal_16u_C3R_Ctx(const Npp16u * pSrc, int nSrcStep,
2886  Npp16u * pDst, int nDstStep,
2887  NppiSize oSizeROI,
2888  const Npp16u rThresholdsLT[3], const Npp16u rValuesLT[3], const Npp16u rThresholdsGT[3], const Npp16u rValuesGT[3], NppStreamContext nppStreamCtx);
2889 
2890 NppStatus nppiThreshold_LTValGTVal_16u_C3R(const Npp16u * pSrc, int nSrcStep,
2891  Npp16u * pDst, int nDstStep,
2892  NppiSize oSizeROI,
2893  const Npp16u rThresholdsLT[3], const Npp16u rValuesLT[3], const Npp16u rThresholdsGT[3], const Npp16u rValuesGT[3]);
2894 
2903 NppStatus nppiThreshold_LTValGTVal_16u_C3IR_Ctx(Npp16u * pSrcDst, int nSrcDstStep,
2904  NppiSize oSizeROI,
2905  const Npp16u rThresholdsLT[3], const Npp16u rValuesLT[3], const Npp16u rThresholdsGT[3], const Npp16u rValuesGT[3], NppStreamContext nppStreamCtx);
2906 
2907 NppStatus nppiThreshold_LTValGTVal_16u_C3IR(Npp16u * pSrcDst, int nSrcDstStep,
2908  NppiSize oSizeROI,
2909  const Npp16u rThresholdsLT[3], const Npp16u rValuesLT[3], const Npp16u rThresholdsGT[3], const Npp16u rValuesGT[3]);
2910 
2919 NppStatus nppiThreshold_LTValGTVal_16s_C3R_Ctx(const Npp16s * pSrc, int nSrcStep,
2920  Npp16s * pDst, int nDstStep,
2921  NppiSize oSizeROI,
2922  const Npp16s rThresholdsLT[3], const Npp16s rValuesLT[3], const Npp16s rThresholdsGT[3], const Npp16s rValuesGT[3], NppStreamContext nppStreamCtx);
2923 
2924 NppStatus nppiThreshold_LTValGTVal_16s_C3R(const Npp16s * pSrc, int nSrcStep,
2925  Npp16s * pDst, int nDstStep,
2926  NppiSize oSizeROI,
2927  const Npp16s rThresholdsLT[3], const Npp16s rValuesLT[3], const Npp16s rThresholdsGT[3], const Npp16s rValuesGT[3]);
2928 
2937 NppStatus nppiThreshold_LTValGTVal_16s_C3IR_Ctx(Npp16s * pSrcDst, int nSrcDstStep,
2938  NppiSize oSizeROI,
2939  const Npp16s rThresholdsLT[3], const Npp16s rValuesLT[3], const Npp16s rThresholdsGT[3], const Npp16s rValuesGT[3], NppStreamContext nppStreamCtx);
2940 
2941 NppStatus nppiThreshold_LTValGTVal_16s_C3IR(Npp16s * pSrcDst, int nSrcDstStep,
2942  NppiSize oSizeROI,
2943  const Npp16s rThresholdsLT[3], const Npp16s rValuesLT[3], const Npp16s rThresholdsGT[3], const Npp16s rValuesGT[3]);
2944 
2953 NppStatus nppiThreshold_LTValGTVal_32f_C3R_Ctx(const Npp32f * pSrc, int nSrcStep,
2954  Npp32f * pDst, int nDstStep,
2955  NppiSize oSizeROI,
2956  const Npp32f rThresholdsLT[3], const Npp32f rValuesLT[3], const Npp32f rThresholdsGT[3], const Npp32f rValuesGT[3], NppStreamContext nppStreamCtx);
2957 
2958 NppStatus nppiThreshold_LTValGTVal_32f_C3R(const Npp32f * pSrc, int nSrcStep,
2959  Npp32f * pDst, int nDstStep,
2960  NppiSize oSizeROI,
2961  const Npp32f rThresholdsLT[3], const Npp32f rValuesLT[3], const Npp32f rThresholdsGT[3], const Npp32f rValuesGT[3]);
2962 
2971 NppStatus nppiThreshold_LTValGTVal_32f_C3IR_Ctx(Npp32f * pSrcDst, int nSrcDstStep,
2972  NppiSize oSizeROI,
2973  const Npp32f rThresholdsLT[3], const Npp32f rValuesLT[3], const Npp32f rThresholdsGT[3], const Npp32f rValuesGT[3], NppStreamContext nppStreamCtx);
2974 
2975 NppStatus nppiThreshold_LTValGTVal_32f_C3IR(Npp32f * pSrcDst, int nSrcDstStep,
2976  NppiSize oSizeROI,
2977  const Npp32f rThresholdsLT[3], const Npp32f rValuesLT[3], const Npp32f rThresholdsGT[3], const Npp32f rValuesGT[3]);
2978 
2987 NppStatus nppiThreshold_LTValGTVal_8u_AC4R_Ctx(const Npp8u * pSrc, int nSrcStep,
2988  Npp8u * pDst, int nDstStep,
2989  NppiSize oSizeROI,
2990  const Npp8u rThresholdsLT[3], const Npp8u rValuesLT[3], const Npp8u rThresholdsGT[3], const Npp8u rValuesGT[3], NppStreamContext nppStreamCtx);
2991 
2992 NppStatus nppiThreshold_LTValGTVal_8u_AC4R(const Npp8u * pSrc, int nSrcStep,
2993  Npp8u * pDst, int nDstStep,
2994  NppiSize oSizeROI,
2995  const Npp8u rThresholdsLT[3], const Npp8u rValuesLT[3], const Npp8u rThresholdsGT[3], const Npp8u rValuesGT[3]);
2996 
3005 NppStatus nppiThreshold_LTValGTVal_8u_AC4IR_Ctx(Npp8u * pSrcDst, int nSrcDstStep,
3006  NppiSize oSizeROI,
3007  const Npp8u rThresholdsLT[3], const Npp8u rValuesLT[3], const Npp8u rThresholdsGT[3], const Npp8u rValuesGT[3], NppStreamContext nppStreamCtx);
3008 
3009 NppStatus nppiThreshold_LTValGTVal_8u_AC4IR(Npp8u * pSrcDst, int nSrcDstStep,
3010  NppiSize oSizeROI,
3011  const Npp8u rThresholdsLT[3], const Npp8u rValuesLT[3], const Npp8u rThresholdsGT[3], const Npp8u rValuesGT[3]);
3012 
3021 NppStatus nppiThreshold_LTValGTVal_16u_AC4R_Ctx(const Npp16u * pSrc, int nSrcStep,
3022  Npp16u * pDst, int nDstStep,
3023  NppiSize oSizeROI,
3024  const Npp16u rThresholdsLT[3], const Npp16u rValuesLT[3], const Npp16u rThresholdsGT[3], const Npp16u rValuesGT[3], NppStreamContext nppStreamCtx);
3025 
3026 NppStatus nppiThreshold_LTValGTVal_16u_AC4R(const Npp16u * pSrc, int nSrcStep,
3027  Npp16u * pDst, int nDstStep,
3028  NppiSize oSizeROI,
3029  const Npp16u rThresholdsLT[3], const Npp16u rValuesLT[3], const Npp16u rThresholdsGT[3], const Npp16u rValuesGT[3]);
3030 
3039 NppStatus nppiThreshold_LTValGTVal_16u_AC4IR_Ctx(Npp16u * pSrcDst, int nSrcDstStep,
3040  NppiSize oSizeROI,
3041  const Npp16u rThresholdsLT[3], const Npp16u rValuesLT[3], const Npp16u rThresholdsGT[3], const Npp16u rValuesGT[3], NppStreamContext nppStreamCtx);
3042 
3043 NppStatus nppiThreshold_LTValGTVal_16u_AC4IR(Npp16u * pSrcDst, int nSrcDstStep,
3044  NppiSize oSizeROI,
3045  const Npp16u rThresholdsLT[3], const Npp16u rValuesLT[3], const Npp16u rThresholdsGT[3], const Npp16u rValuesGT[3]);
3046 
3055 NppStatus nppiThreshold_LTValGTVal_16s_AC4R_Ctx(const Npp16s * pSrc, int nSrcStep,
3056  Npp16s * pDst, int nDstStep,
3057  NppiSize oSizeROI,
3058  const Npp16s rThresholdsLT[3], const Npp16s rValuesLT[3], const Npp16s rThresholdsGT[3], const Npp16s rValuesGT[3], NppStreamContext nppStreamCtx);
3059 
3060 NppStatus nppiThreshold_LTValGTVal_16s_AC4R(const Npp16s * pSrc, int nSrcStep,
3061  Npp16s * pDst, int nDstStep,
3062  NppiSize oSizeROI,
3063  const Npp16s rThresholdsLT[3], const Npp16s rValuesLT[3], const Npp16s rThresholdsGT[3], const Npp16s rValuesGT[3]);
3064 
3073 NppStatus nppiThreshold_LTValGTVal_16s_AC4IR_Ctx(Npp16s * pSrcDst, int nSrcDstStep,
3074  NppiSize oSizeROI,
3075  const Npp16s rThresholdsLT[3], const Npp16s rValuesLT[3], const Npp16s rThresholdsGT[3], const Npp16s rValuesGT[3], NppStreamContext nppStreamCtx);
3076 
3077 NppStatus nppiThreshold_LTValGTVal_16s_AC4IR(Npp16s * pSrcDst, int nSrcDstStep,
3078  NppiSize oSizeROI,
3079  const Npp16s rThresholdsLT[3], const Npp16s rValuesLT[3], const Npp16s rThresholdsGT[3], const Npp16s rValuesGT[3]);
3080 
3089 NppStatus nppiThreshold_LTValGTVal_32f_AC4R_Ctx(const Npp32f * pSrc, int nSrcStep,
3090  Npp32f * pDst, int nDstStep,
3091  NppiSize oSizeROI,
3092  const Npp32f rThresholdsLT[3], const Npp32f rValuesLT[3], const Npp32f rThresholdsGT[3], const Npp32f rValuesGT[3], NppStreamContext nppStreamCtx);
3093 
3094 NppStatus nppiThreshold_LTValGTVal_32f_AC4R(const Npp32f * pSrc, int nSrcStep,
3095  Npp32f * pDst, int nDstStep,
3096  NppiSize oSizeROI,
3097  const Npp32f rThresholdsLT[3], const Npp32f rValuesLT[3], const Npp32f rThresholdsGT[3], const Npp32f rValuesGT[3]);
3098 
3107 NppStatus nppiThreshold_LTValGTVal_32f_AC4IR_Ctx(Npp32f * pSrcDst, int nSrcDstStep,
3108  NppiSize oSizeROI,
3109  const Npp32f rThresholdsLT[3], const Npp32f rValuesLT[3], const Npp32f rThresholdsGT[3], const Npp32f rValuesGT[3], NppStreamContext nppStreamCtx);
3110 
3111 NppStatus nppiThreshold_LTValGTVal_32f_AC4IR(Npp32f * pSrcDst, int nSrcDstStep,
3112  NppiSize oSizeROI,
3113  const Npp32f rThresholdsLT[3], const Npp32f rValuesLT[3], const Npp32f rThresholdsGT[3], const Npp32f rValuesGT[3]);
3114 
3160 NppStatus nppiCompare_8u_C1R_Ctx(const Npp8u * pSrc1, int nSrc1Step,
3161  const Npp8u * pSrc2, int nSrc2Step,
3162  Npp8u * pDst, int nDstStep,
3163  NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
3164 
3165 NppStatus nppiCompare_8u_C1R(const Npp8u * pSrc1, int nSrc1Step,
3166  const Npp8u * pSrc2, int nSrc2Step,
3167  Npp8u * pDst, int nDstStep,
3168  NppiSize oSizeROI, NppCmpOp eComparisonOperation);
3169 
3177 NppStatus nppiCompare_8u_C3R_Ctx(const Npp8u * pSrc1, int nSrc1Step,
3178  const Npp8u * pSrc2, int nSrc2Step,
3179  Npp8u * pDst, int nDstStep,
3180  NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
3181 
3182 NppStatus nppiCompare_8u_C3R(const Npp8u * pSrc1, int nSrc1Step,
3183  const Npp8u * pSrc2, int nSrc2Step,
3184  Npp8u * pDst, int nDstStep,
3185  NppiSize oSizeROI, NppCmpOp eComparisonOperation);
3186 
3194 NppStatus nppiCompare_8u_C4R_Ctx(const Npp8u * pSrc1, int nSrc1Step,
3195  const Npp8u * pSrc2, int nSrc2Step,
3196  Npp8u * pDst, int nDstStep,
3197  NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
3198 
3199 NppStatus nppiCompare_8u_C4R(const Npp8u * pSrc1, int nSrc1Step,
3200  const Npp8u * pSrc2, int nSrc2Step,
3201  Npp8u * pDst, int nDstStep,
3202  NppiSize oSizeROI, NppCmpOp eComparisonOperation);
3203 
3211 NppStatus nppiCompare_8u_AC4R_Ctx(const Npp8u * pSrc1, int nSrc1Step,
3212  const Npp8u * pSrc2, int nSrc2Step,
3213  Npp8u * pDst, int nDstStep,
3214  NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
3215 
3216 NppStatus nppiCompare_8u_AC4R(const Npp8u * pSrc1, int nSrc1Step,
3217  const Npp8u * pSrc2, int nSrc2Step,
3218  Npp8u * pDst, int nDstStep,
3219  NppiSize oSizeROI, NppCmpOp eComparisonOperation);
3220 
3228 NppStatus nppiCompare_16u_C1R_Ctx(const Npp16u * pSrc1, int nSrc1Step,
3229  const Npp16u * pSrc2, int nSrc2Step,
3230  Npp8u * pDst, int nDstStep,
3231  NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
3232 
3233 NppStatus nppiCompare_16u_C1R(const Npp16u * pSrc1, int nSrc1Step,
3234  const Npp16u * pSrc2, int nSrc2Step,
3235  Npp8u * pDst, int nDstStep,
3236  NppiSize oSizeROI, NppCmpOp eComparisonOperation);
3237 
3245 NppStatus nppiCompare_16u_C3R_Ctx(const Npp16u * pSrc1, int nSrc1Step,
3246  const Npp16u * pSrc2, int nSrc2Step,
3247  Npp8u * pDst, int nDstStep,
3248  NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
3249 
3250 NppStatus nppiCompare_16u_C3R(const Npp16u * pSrc1, int nSrc1Step,
3251  const Npp16u * pSrc2, int nSrc2Step,
3252  Npp8u * pDst, int nDstStep,
3253  NppiSize oSizeROI, NppCmpOp eComparisonOperation);
3254 
3262 NppStatus nppiCompare_16u_C4R_Ctx(const Npp16u * pSrc1, int nSrc1Step,
3263  const Npp16u * pSrc2, int nSrc2Step,
3264  Npp8u * pDst, int nDstStep,
3265  NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
3266 
3267 NppStatus nppiCompare_16u_C4R(const Npp16u * pSrc1, int nSrc1Step,
3268  const Npp16u * pSrc2, int nSrc2Step,
3269  Npp8u * pDst, int nDstStep,
3270  NppiSize oSizeROI, NppCmpOp eComparisonOperation);
3271 
3279 NppStatus nppiCompare_16u_AC4R_Ctx(const Npp16u * pSrc1, int nSrc1Step,
3280  const Npp16u * pSrc2, int nSrc2Step,
3281  Npp8u * pDst, int nDstStep,
3282  NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
3283 
3284 NppStatus nppiCompare_16u_AC4R(const Npp16u * pSrc1, int nSrc1Step,
3285  const Npp16u * pSrc2, int nSrc2Step,
3286  Npp8u * pDst, int nDstStep,
3287  NppiSize oSizeROI, NppCmpOp eComparisonOperation);
3288 
3296 NppStatus nppiCompare_16s_C1R_Ctx(const Npp16s * pSrc1, int nSrc1Step,
3297  const Npp16s * pSrc2, int nSrc2Step,
3298  Npp8u * pDst, int nDstStep,
3299  NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
3300 
3301 NppStatus nppiCompare_16s_C1R(const Npp16s * pSrc1, int nSrc1Step,
3302  const Npp16s * pSrc2, int nSrc2Step,
3303  Npp8u * pDst, int nDstStep,
3304  NppiSize oSizeROI, NppCmpOp eComparisonOperation);
3305 
3313 NppStatus nppiCompare_16s_C3R_Ctx(const Npp16s * pSrc1, int nSrc1Step,
3314  const Npp16s * pSrc2, int nSrc2Step,
3315  Npp8u * pDst, int nDstStep,
3316  NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
3317 
3318 NppStatus nppiCompare_16s_C3R(const Npp16s * pSrc1, int nSrc1Step,
3319  const Npp16s * pSrc2, int nSrc2Step,
3320  Npp8u * pDst, int nDstStep,
3321  NppiSize oSizeROI, NppCmpOp eComparisonOperation);
3322 
3330 NppStatus nppiCompare_16s_C4R_Ctx(const Npp16s * pSrc1, int nSrc1Step,
3331  const Npp16s * pSrc2, int nSrc2Step,
3332  Npp8u * pDst, int nDstStep,
3333  NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
3334 
3335 NppStatus nppiCompare_16s_C4R(const Npp16s * pSrc1, int nSrc1Step,
3336  const Npp16s * pSrc2, int nSrc2Step,
3337  Npp8u * pDst, int nDstStep,
3338  NppiSize oSizeROI, NppCmpOp eComparisonOperation);
3339 
3347 NppStatus nppiCompare_16s_AC4R_Ctx(const Npp16s * pSrc1, int nSrc1Step,
3348  const Npp16s * pSrc2, int nSrc2Step,
3349  Npp8u * pDst, int nDstStep,
3350  NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
3351 
3352 NppStatus nppiCompare_16s_AC4R(const Npp16s * pSrc1, int nSrc1Step,
3353  const Npp16s * pSrc2, int nSrc2Step,
3354  Npp8u * pDst, int nDstStep,
3355  NppiSize oSizeROI, NppCmpOp eComparisonOperation);
3356 
3364 NppStatus nppiCompare_32f_C1R_Ctx(const Npp32f * pSrc1, int nSrc1Step,
3365  const Npp32f * pSrc2, int nSrc2Step,
3366  Npp8u * pDst, int nDstStep,
3367  NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
3368 
3369 NppStatus nppiCompare_32f_C1R(const Npp32f * pSrc1, int nSrc1Step,
3370  const Npp32f * pSrc2, int nSrc2Step,
3371  Npp8u * pDst, int nDstStep,
3372  NppiSize oSizeROI, NppCmpOp eComparisonOperation);
3373 
3381 NppStatus nppiCompare_32f_C3R_Ctx(const Npp32f * pSrc1, int nSrc1Step,
3382  const Npp32f * pSrc2, int nSrc2Step,
3383  Npp8u * pDst, int nDstStep,
3384  NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
3385 
3386 NppStatus nppiCompare_32f_C3R(const Npp32f * pSrc1, int nSrc1Step,
3387  const Npp32f * pSrc2, int nSrc2Step,
3388  Npp8u * pDst, int nDstStep,
3389  NppiSize oSizeROI, NppCmpOp eComparisonOperation);
3390 
3398 NppStatus nppiCompare_32f_C4R_Ctx(const Npp32f * pSrc1, int nSrc1Step,
3399  const Npp32f * pSrc2, int nSrc2Step,
3400  Npp8u * pDst, int nDstStep,
3401  NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
3402 
3403 NppStatus nppiCompare_32f_C4R(const Npp32f * pSrc1, int nSrc1Step,
3404  const Npp32f * pSrc2, int nSrc2Step,
3405  Npp8u * pDst, int nDstStep,
3406  NppiSize oSizeROI, NppCmpOp eComparisonOperation);
3407 
3415 NppStatus nppiCompare_32f_AC4R_Ctx(const Npp32f * pSrc1, int nSrc1Step,
3416  const Npp32f * pSrc2, int nSrc2Step,
3417  Npp8u * pDst, int nDstStep,
3418  NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
3419 
3420 NppStatus nppiCompare_32f_AC4R(const Npp32f * pSrc1, int nSrc1Step,
3421  const Npp32f * pSrc2, int nSrc2Step,
3422  Npp8u * pDst, int nDstStep,
3423  NppiSize oSizeROI, NppCmpOp eComparisonOperation);
3424 
3457 NppStatus nppiCompareC_8u_C1R_Ctx(const Npp8u * pSrc, int nSrcStep,
3458  const Npp8u nConstant,
3459  Npp8u * pDst, int nDstStep,
3460  NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
3461 
3462 NppStatus nppiCompareC_8u_C1R(const Npp8u * pSrc, int nSrcStep,
3463  const Npp8u nConstant,
3464  Npp8u * pDst, int nDstStep,
3465  NppiSize oSizeROI, NppCmpOp eComparisonOperation);
3466 
3474 NppStatus nppiCompareC_8u_C3R_Ctx(const Npp8u * pSrc, int nSrcStep,
3475  const Npp8u * pConstants,
3476  Npp8u * pDst, int nDstStep,
3477  NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
3478 
3479 NppStatus nppiCompareC_8u_C3R(const Npp8u * pSrc, int nSrcStep,
3480  const Npp8u * pConstants,
3481  Npp8u * pDst, int nDstStep,
3482  NppiSize oSizeROI, NppCmpOp eComparisonOperation);
3483 
3491 NppStatus nppiCompareC_8u_C4R_Ctx(const Npp8u * pSrc, int nSrcStep,
3492  const Npp8u * pConstants,
3493  Npp8u * pDst, int nDstStep,
3494  NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
3495 
3496 NppStatus nppiCompareC_8u_C4R(const Npp8u * pSrc, int nSrcStep,
3497  const Npp8u * pConstants,
3498  Npp8u * pDst, int nDstStep,
3499  NppiSize oSizeROI, NppCmpOp eComparisonOperation);
3500 
3508 NppStatus nppiCompareC_8u_AC4R_Ctx(const Npp8u * pSrc, int nSrcStep,
3509  const Npp8u * pConstants,
3510  Npp8u * pDst, int nDstStep,
3511  NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
3512 
3513 NppStatus nppiCompareC_8u_AC4R(const Npp8u * pSrc, int nSrcStep,
3514  const Npp8u * pConstants,
3515  Npp8u * pDst, int nDstStep,
3516  NppiSize oSizeROI, NppCmpOp eComparisonOperation);
3517 
3525 NppStatus nppiCompareC_16u_C1R_Ctx(const Npp16u * pSrc, int nSrcStep,
3526  const Npp16u nConstant,
3527  Npp8u * pDst, int nDstStep,
3528  NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
3529 
3530 NppStatus nppiCompareC_16u_C1R(const Npp16u * pSrc, int nSrcStep,
3531  const Npp16u nConstant,
3532  Npp8u * pDst, int nDstStep,
3533  NppiSize oSizeROI, NppCmpOp eComparisonOperation);
3534 
3542 NppStatus nppiCompareC_16u_C3R_Ctx(const Npp16u * pSrc, int nSrcStep,
3543  const Npp16u * pConstants,
3544  Npp8u * pDst, int nDstStep,
3545  NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
3546 
3547 NppStatus nppiCompareC_16u_C3R(const Npp16u * pSrc, int nSrcStep,
3548  const Npp16u * pConstants,
3549  Npp8u * pDst, int nDstStep,
3550  NppiSize oSizeROI, NppCmpOp eComparisonOperation);
3551 
3559 NppStatus nppiCompareC_16u_C4R_Ctx(const Npp16u * pSrc, int nSrcStep,
3560  const Npp16u * pConstants,
3561  Npp8u * pDst, int nDstStep,
3562  NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
3563 
3564 NppStatus nppiCompareC_16u_C4R(const Npp16u * pSrc, int nSrcStep,
3565  const Npp16u * pConstants,
3566  Npp8u * pDst, int nDstStep,
3567  NppiSize oSizeROI, NppCmpOp eComparisonOperation);
3568 
3576 NppStatus nppiCompareC_16u_AC4R_Ctx(const Npp16u * pSrc, int nSrcStep,
3577  const Npp16u * pConstants,
3578  Npp8u * pDst, int nDstStep,
3579  NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
3580 
3581 NppStatus nppiCompareC_16u_AC4R(const Npp16u * pSrc, int nSrcStep,
3582  const Npp16u * pConstants,
3583  Npp8u * pDst, int nDstStep,
3584  NppiSize oSizeROI, NppCmpOp eComparisonOperation);
3585 
3593 NppStatus nppiCompareC_16s_C1R_Ctx(const Npp16s * pSrc, int nSrcStep,
3594  const Npp16s nConstant,
3595  Npp8u * pDst, int nDstStep,
3596  NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
3597 
3598 NppStatus nppiCompareC_16s_C1R(const Npp16s * pSrc, int nSrcStep,
3599  const Npp16s nConstant,
3600  Npp8u * pDst, int nDstStep,
3601  NppiSize oSizeROI, NppCmpOp eComparisonOperation);
3602 
3610 NppStatus nppiCompareC_16s_C3R_Ctx(const Npp16s * pSrc, int nSrcStep,
3611  const Npp16s * pConstants,
3612  Npp8u * pDst, int nDstStep,
3613  NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
3614 
3615 NppStatus nppiCompareC_16s_C3R(const Npp16s * pSrc, int nSrcStep,
3616  const Npp16s * pConstants,
3617  Npp8u * pDst, int nDstStep,
3618  NppiSize oSizeROI, NppCmpOp eComparisonOperation);
3619 
3627 NppStatus nppiCompareC_16s_C4R_Ctx(const Npp16s * pSrc, int nSrcStep,
3628  const Npp16s * pConstants,
3629  Npp8u * pDst, int nDstStep,
3630  NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
3631 
3632 NppStatus nppiCompareC_16s_C4R(const Npp16s * pSrc, int nSrcStep,
3633  const Npp16s * pConstants,
3634  Npp8u * pDst, int nDstStep,
3635  NppiSize oSizeROI, NppCmpOp eComparisonOperation);
3636 
3644 NppStatus nppiCompareC_16s_AC4R_Ctx(const Npp16s * pSrc, int nSrcStep,
3645  const Npp16s * pConstants,
3646  Npp8u * pDst, int nDstStep,
3647  NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
3648 
3649 NppStatus nppiCompareC_16s_AC4R(const Npp16s * pSrc, int nSrcStep,
3650  const Npp16s * pConstants,
3651  Npp8u * pDst, int nDstStep,
3652  NppiSize oSizeROI, NppCmpOp eComparisonOperation);
3653 
3661 NppStatus nppiCompareC_32f_C1R_Ctx(const Npp32f * pSrc, int nSrcStep,
3662  const Npp32f nConstant,
3663  Npp8u * pDst, int nDstStep,
3664  NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
3665 
3666 NppStatus nppiCompareC_32f_C1R(const Npp32f * pSrc, int nSrcStep,
3667  const Npp32f nConstant,
3668  Npp8u * pDst, int nDstStep,
3669  NppiSize oSizeROI, NppCmpOp eComparisonOperation);
3670 
3678 NppStatus nppiCompareC_32f_C3R_Ctx(const Npp32f * pSrc, int nSrcStep,
3679  const Npp32f * pConstants,
3680  Npp8u * pDst, int nDstStep,
3681  NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
3682 
3683 NppStatus nppiCompareC_32f_C3R(const Npp32f * pSrc, int nSrcStep,
3684  const Npp32f * pConstants,
3685  Npp8u * pDst, int nDstStep,
3686  NppiSize oSizeROI, NppCmpOp eComparisonOperation);
3687 
3695 NppStatus nppiCompareC_32f_C4R_Ctx(const Npp32f * pSrc, int nSrcStep,
3696  const Npp32f * pConstants,
3697  Npp8u * pDst, int nDstStep,
3698  NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
3699 
3700 NppStatus nppiCompareC_32f_C4R(const Npp32f * pSrc, int nSrcStep,
3701  const Npp32f * pConstants,
3702  Npp8u * pDst, int nDstStep,
3703  NppiSize oSizeROI, NppCmpOp eComparisonOperation);
3704 
3712 NppStatus nppiCompareC_32f_AC4R_Ctx(const Npp32f * pSrc, int nSrcStep,
3713  const Npp32f * pConstants,
3714  Npp8u * pDst, int nDstStep,
3715  NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx);
3716 
3717 NppStatus nppiCompareC_32f_AC4R(const Npp32f * pSrc, int nSrcStep,
3718  const Npp32f * pConstants,
3719  Npp8u * pDst, int nDstStep,
3720  NppiSize oSizeROI, NppCmpOp eComparisonOperation);
3721 
3754 NppStatus nppiCompareEqualEps_32f_C1R_Ctx(const Npp32f * pSrc1, int nSrc1Step,
3755  const Npp32f * pSrc2, int nSrc2Step,
3756  Npp8u * pDst, int nDstStep,
3757  NppiSize oSizeROI, Npp32f nEpsilon, NppStreamContext nppStreamCtx);
3758 
3759 NppStatus nppiCompareEqualEps_32f_C1R(const Npp32f * pSrc1, int nSrc1Step,
3760  const Npp32f * pSrc2, int nSrc2Step,
3761  Npp8u * pDst, int nDstStep,
3762  NppiSize oSizeROI, Npp32f nEpsilon);
3763 
3771 NppStatus nppiCompareEqualEps_32f_C3R_Ctx(const Npp32f * pSrc1, int nSrc1Step,
3772  const Npp32f * pSrc2, int nSrc2Step,
3773  Npp8u * pDst, int nDstStep,
3774  NppiSize oSizeROI, Npp32f nEpsilon, NppStreamContext nppStreamCtx);
3775 
3776 NppStatus nppiCompareEqualEps_32f_C3R(const Npp32f * pSrc1, int nSrc1Step,
3777  const Npp32f * pSrc2, int nSrc2Step,
3778  Npp8u * pDst, int nDstStep,
3779  NppiSize oSizeROI, Npp32f nEpsilon);
3780 
3788 NppStatus nppiCompareEqualEps_32f_C4R_Ctx(const Npp32f * pSrc1, int nSrc1Step,
3789  const Npp32f * pSrc2, int nSrc2Step,
3790  Npp8u * pDst, int nDstStep,
3791  NppiSize oSizeROI, Npp32f nEpsilon, NppStreamContext nppStreamCtx);
3792 
3793 NppStatus nppiCompareEqualEps_32f_C4R(const Npp32f * pSrc1, int nSrc1Step,
3794  const Npp32f * pSrc2, int nSrc2Step,
3795  Npp8u * pDst, int nDstStep,
3796  NppiSize oSizeROI, Npp32f nEpsilon);
3797 
3805 NppStatus nppiCompareEqualEps_32f_AC4R_Ctx(const Npp32f * pSrc1, int nSrc1Step,
3806  const Npp32f * pSrc2, int nSrc2Step,
3807  Npp8u * pDst, int nDstStep,
3808  NppiSize oSizeROI, Npp32f nEpsilon, NppStreamContext nppStreamCtx);
3809 
3810 NppStatus nppiCompareEqualEps_32f_AC4R(const Npp32f * pSrc1, int nSrc1Step,
3811  const Npp32f * pSrc2, int nSrc2Step,
3812  Npp8u * pDst, int nDstStep,
3813  NppiSize oSizeROI, Npp32f nEpsilon);
3814 
3848 NppStatus nppiCompareEqualEpsC_32f_C1R_Ctx(const Npp32f * pSrc, int nSrcStep,
3849  const Npp32f nConstant,
3850  Npp8u * pDst, int nDstStep,
3851  NppiSize oSizeROI, Npp32f nEpsilon, NppStreamContext nppStreamCtx);
3852 
3853 NppStatus nppiCompareEqualEpsC_32f_C1R(const Npp32f * pSrc, int nSrcStep,
3854  const Npp32f nConstant,
3855  Npp8u * pDst, int nDstStep,
3856  NppiSize oSizeROI, Npp32f nEpsilon);
3857 
3865 NppStatus nppiCompareEqualEpsC_32f_C3R_Ctx(const Npp32f * pSrc, int nSrcStep,
3866  const Npp32f * pConstants,
3867  Npp8u * pDst, int nDstStep,
3868  NppiSize oSizeROI, Npp32f nEpsilon, NppStreamContext nppStreamCtx);
3869 
3870 NppStatus nppiCompareEqualEpsC_32f_C3R(const Npp32f * pSrc, int nSrcStep,
3871  const Npp32f * pConstants,
3872  Npp8u * pDst, int nDstStep,
3873  NppiSize oSizeROI, Npp32f nEpsilon);
3874 
3882 NppStatus nppiCompareEqualEpsC_32f_C4R_Ctx(const Npp32f * pSrc, int nSrcStep,
3883  const Npp32f * pConstants,
3884  Npp8u * pDst, int nDstStep,
3885  NppiSize oSizeROI, Npp32f nEpsilon, NppStreamContext nppStreamCtx);
3886 
3887 NppStatus nppiCompareEqualEpsC_32f_C4R(const Npp32f * pSrc, int nSrcStep,
3888  const Npp32f * pConstants,
3889  Npp8u * pDst, int nDstStep,
3890  NppiSize oSizeROI, Npp32f nEpsilon);
3891 
3899 NppStatus nppiCompareEqualEpsC_32f_AC4R_Ctx(const Npp32f * pSrc, int nSrcStep,
3900  const Npp32f * pConstants,
3901  Npp8u * pDst, int nDstStep,
3902  NppiSize oSizeROI, Npp32f nEpsilon, NppStreamContext nppStreamCtx);
3903 
3904 NppStatus nppiCompareEqualEpsC_32f_AC4R(const Npp32f * pSrc, int nSrcStep,
3905  const Npp32f * pConstants,
3906  Npp8u * pDst, int nDstStep,
3907  NppiSize oSizeROI, Npp32f nEpsilon);
3908 
3915 #ifdef __cplusplus
3916 } /* extern "C" */
3917 #endif
3918 
3919 #endif /* NV_NPPI_THRESHOLD_AND_COMPARE_OPERATIONS_H */
NppStatus nppiThreshold_GT_8u_C3IR_Ctx(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], NppStreamContext nppStreamCtx)
3 channel 8-bit unsigned char in place threshold.
NppStatus nppiCompare_16u_C1R_Ctx(const Npp16u *pSrc1, int nSrc1Step, const Npp16u *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
1 channel 16-bit unsigned short image compare.
NppStatus nppiCompare_16s_C1R_Ctx(const Npp16s *pSrc1, int nSrc1Step, const Npp16s *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
1 channel 16-bit signed short image compare.
NppStatus nppiThreshold_GTVal_32f_C3IR_Ctx(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], const Npp32f rValues[3], NppStreamContext nppStreamCtx)
3 channel 32-bit floating point in place threshold.
NppStatus nppiThreshold_GTVal_16s_C3IR_Ctx(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], const Npp16s rValues[3], NppStreamContext nppStreamCtx)
3 channel 16-bit signed short in place threshold.
NppStatus nppiThreshold_LTVal_16u_C1R(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u nThreshold, const Npp16u nValue)
NppStatus nppiThreshold_GT_16s_C3IR_Ctx(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], NppStreamContext nppStreamCtx)
3 channel 16-bit signed short in place threshold.
NppStatus nppiThreshold_GTVal_16u_AC4R(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], const Npp16u rValues[3])
NppStatus nppiThreshold_LTValGTVal_16s_C3R(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s rThresholdsLT[3], const Npp16s rValuesLT[3], const Npp16s rThresholdsGT[3], const Npp16s rValuesGT[3])
NppStatus nppiThreshold_LTVal_8u_AC4IR_Ctx(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], const Npp8u rValues[3], NppStreamContext nppStreamCtx)
4 channel 8-bit unsigned char in place image threshold, not affecting Alpha.
NppStatus nppiThreshold_GTVal_16s_C3IR(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], const Npp16s rValues[3])
NppStatus nppiThreshold_GT_16u_AC4IR_Ctx(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], NppStreamContext nppStreamCtx)
4 channel 16-bit unsigned short in place image threshold, not affecting Alpha.
NppStatus nppiThreshold_LTValGTVal_16u_C3R(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u rThresholdsLT[3], const Npp16u rValuesLT[3], const Npp16u rThresholdsGT[3], const Npp16u rValuesGT[3])
NppStatus nppiThreshold_Val_16u_AC4IR(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], const Npp16u rValues[3], NppCmpOp eComparisonOperation)
NppStatus nppiCompare_16u_C3R(const Npp16u *pSrc1, int nSrc1Step, const Npp16u *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation)
NppStatus nppiCompare_8u_C4R_Ctx(const Npp8u *pSrc1, int nSrc1Step, const Npp8u *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
4 channel 8-bit unsigned char image compare.
NppStatus nppiThreshold_LTVal_16s_C3IR(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], const Npp16s rValues[3])
NppStatus nppiThreshold_GT_16s_AC4R(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3])
NppStatus nppiThreshold_LT_32f_C1R(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f nThreshold)
NppStatus nppiCompareC_16s_C4R(const Npp16s *pSrc, int nSrcStep, const Npp16s *pConstants, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation)
NppStatus nppiCompareC_8u_AC4R(const Npp8u *pSrc, int nSrcStep, const Npp8u *pConstants, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_LTVal_16u_C3IR(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], const Npp16u rValues[3])
NppStatus nppiThreshold_GTVal_8u_C3IR(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], const Npp8u rValues[3])
NppStatus nppiThreshold_GTVal_32f_C1R(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f nThreshold, const Npp32f nValue)
NppStatus nppiCompareC_32f_C4R_Ctx(const Npp32f *pSrc, int nSrcStep, const Npp32f *pConstants, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
4 channel 32-bit floating point image compare with constant value.
NppStatus nppiThreshold_LTValGTVal_8u_C1R(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u nThresholdLT, const Npp8u nValueLT, const Npp8u nThresholdGT, const Npp8u nValueGT)
NppStatus nppiThreshold_LTValGTVal_8u_C3R_Ctx(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u rThresholdsLT[3], const Npp8u rValuesLT[3], const Npp8u rThresholdsGT[3], const Npp8u rValuesGT[3], NppStreamContext nppStreamCtx)
3 channel 8-bit unsigned char threshold.
NppStatus nppiThreshold_Val_16s_C3IR_Ctx(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], const Npp16s rValues[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
3 channel 16-bit signed short in place threshold.
NppStatus nppiCompareC_16u_AC4R_Ctx(const Npp16u *pSrc, int nSrcStep, const Npp16u *pConstants, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
4 channel 16-bit unsigned short image compare, not affecting Alpha.
NppStatus nppiThreshold_32f_C1R(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f nThreshold, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_Val_16u_AC4R(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], const Npp16u rValues[3], NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_LTVal_32f_AC4IR(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], const Npp32f rValues[3])
NppStatus nppiCompareEqualEpsC_32f_C3R_Ctx(const Npp32f *pSrc, int nSrcStep, const Npp32f *pConstants, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, Npp32f nEpsilon, NppStreamContext nppStreamCtx)
3 channel 32-bit floating point image compare whether image and constant are equal within epsilon...
NppStatus nppiThreshold_LTValGTVal_32f_C1IR(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f nThresholdLT, const Npp32f nValueLT, const Npp32f nThresholdGT, const Npp32f nValueGT)
NppStatus nppiThreshold_GT_8u_C1IR_Ctx(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u nThreshold, NppStreamContext nppStreamCtx)
1 channel 8-bit unsigned char in place threshold.
NppStatus nppiCompare_32f_AC4R(const Npp32f *pSrc1, int nSrc1Step, const Npp32f *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_GT_16u_C1IR(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u nThreshold)
NppStatus nppiThreshold_16s_AC4IR(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_Val_8u_C1IR_Ctx(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u nThreshold, const Npp8u nValue, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
1 channel 8-bit unsigned char in place threshold.
NppStatus nppiThreshold_LT_16s_C3R_Ctx(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], NppStreamContext nppStreamCtx)
3 channel 16-bit signed short threshold.
NppStatus nppiThreshold_16s_C1R_Ctx(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s nThreshold, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
1 channel 16-bit signed short threshold.
NppStatus nppiCompareEqualEps_32f_C1R_Ctx(const Npp32f *pSrc1, int nSrc1Step, const Npp32f *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, Npp32f nEpsilon, NppStreamContext nppStreamCtx)
1 channel 32-bit floating point image compare whether two images are equal within epsilon...
NppStatus nppiThreshold_LT_16s_C1R(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s nThreshold)
unsigned char Npp8u
8-bit unsigned chars
Definition: nppdefs.h:270
NppStatus nppiThreshold_GT_16s_C3IR(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3])
NppStatus nppiThreshold_16u_C1R_Ctx(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u nThreshold, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
1 channel 16-bit unsigned short threshold.
NppStatus nppiThreshold_GT_16s_C1IR(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s nThreshold)
NppStatus nppiThreshold_16s_C3R(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_LTVal_16u_AC4R(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], const Npp16u rValues[3])
NppStatus nppiCompareC_32f_AC4R_Ctx(const Npp32f *pSrc, int nSrcStep, const Npp32f *pConstants, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
4 channel 32-bit signed floating point compare, not affecting Alpha.
NppStatus nppiThreshold_Val_8u_C3R(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], const Npp8u rValues[3], NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_Val_32f_AC4IR_Ctx(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], const Npp32f rValues[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
4 channel 32-bit floating point in place image threshold, not affecting Alpha.
NppStatus nppiThreshold_32f_C3R_Ctx(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
3 channel 32-bit floating point threshold.
NppStatus nppiThreshold_GTVal_16u_C1IR_Ctx(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u nThreshold, const Npp16u nValue, NppStreamContext nppStreamCtx)
1 channel 16-bit unsigned short in place threshold.
NppStatus nppiThreshold_16s_C3IR_Ctx(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
3 channel 16-bit signed short in place threshold.
NppStatus nppiThreshold_LTValGTVal_16s_AC4R(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s rThresholdsLT[3], const Npp16s rValuesLT[3], const Npp16s rThresholdsGT[3], const Npp16s rValuesGT[3])
NppStatus nppiCompareC_32f_C1R_Ctx(const Npp32f *pSrc, int nSrcStep, const Npp32f nConstant, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
1 channel 32-bit floating point image compare with constant value.
NppStatus nppiThreshold_GTVal_16u_AC4R_Ctx(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], const Npp16u rValues[3], NppStreamContext nppStreamCtx)
4 channel 16-bit unsigned short image threshold, not affecting Alpha.
NppStatus nppiThreshold_Val_16s_AC4R(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], const Npp16s rValues[3], NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_8u_C3IR(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_LTVal_8u_C3IR(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], const Npp8u rValues[3])
NppStatus nppiThreshold_Val_32f_C1R(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f nThreshold, const Npp32f nValue, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_LT_32f_AC4IR_Ctx(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], NppStreamContext nppStreamCtx)
4 channel 32-bit floating point in place image threshold, not affecting Alpha.
NppStatus nppiThreshold_LTVal_8u_C1IR(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u nThreshold, const Npp8u nValue)
NppStatus nppiThreshold_GTVal_16u_C3IR(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], const Npp16u rValues[3])
NppStatus nppiThreshold_GT_16s_C3R_Ctx(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], NppStreamContext nppStreamCtx)
3 channel 16-bit signed short threshold.
NppStatus nppiThreshold_Val_32f_C1R_Ctx(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f nThreshold, const Npp32f nValue, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
1 channel 32-bit floating point threshold.
NppStatus nppiThreshold_Val_8u_AC4IR_Ctx(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], const Npp8u rValues[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
4 channel 8-bit unsigned char in place image threshold, not affecting Alpha.
NppStatus nppiThreshold_LTVal_32f_C3R_Ctx(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], const Npp32f rValues[3], NppStreamContext nppStreamCtx)
3 channel 32-bit floating point threshold.
NppStatus nppiThreshold_Val_16s_C1IR_Ctx(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s nThreshold, const Npp16s nValue, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
1 channel 16-bit signed short in place threshold.
NppStatus nppiThreshold_GTVal_16u_AC4IR_Ctx(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], const Npp16u rValues[3], NppStreamContext nppStreamCtx)
4 channel 16-bit unsigned short in place image threshold, not affecting Alpha.
NppStatus nppiThreshold_LTValGTVal_16u_C1IR(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u nThresholdLT, const Npp16u nValueLT, const Npp16u nThresholdGT, const Npp16u nValueGT)
NppStatus nppiCompare_8u_AC4R(const Npp8u *pSrc1, int nSrc1Step, const Npp8u *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_Val_16s_C1IR(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s nThreshold, const Npp16s nValue, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_GT_8u_AC4IR(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3])
NppStatus nppiThreshold_LTValGTVal_32f_AC4R(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f rThresholdsLT[3], const Npp32f rValuesLT[3], const Npp32f rThresholdsGT[3], const Npp32f rValuesGT[3])
NppStatus nppiThreshold_LTVal_16u_C3R_Ctx(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], const Npp16u rValues[3], NppStreamContext nppStreamCtx)
3 channel 16-bit unsigned short threshold.
NppStatus nppiThreshold_GTVal_16s_AC4R(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], const Npp16s rValues[3])
NppStatus nppiThreshold_8u_C1IR_Ctx(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u nThreshold, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
1 channel 8-bit unsigned char in place threshold.
NppStatus nppiCompareC_16u_C3R(const Npp16u *pSrc, int nSrcStep, const Npp16u *pConstants, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_GT_16s_AC4IR(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3])
NppStatus nppiThreshold_Val_8u_AC4R_Ctx(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], const Npp8u rValues[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
4 channel 8-bit unsigned char image threshold, not affecting Alpha.
NppStatus nppiCompareC_32f_C4R(const Npp32f *pSrc, int nSrcStep, const Npp32f *pConstants, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation)
NppStatus
Error Status Codes.
Definition: nppdefs.h:170
NppStatus nppiThreshold_Val_16u_C3IR_Ctx(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], const Npp16u rValues[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
3 channel 16-bit unsigned short in place threshold.
NppStatus nppiThreshold_32f_AC4R_Ctx(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
4 channel 32-bit floating point image threshold, not affecting Alpha.
NppStatus nppiThreshold_GT_8u_C3R(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3])
NppStatus nppiThreshold_16u_AC4R_Ctx(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
4 channel 16-bit unsigned short image threshold, not affecting Alpha.
NppStatus nppiCompare_32f_C1R_Ctx(const Npp32f *pSrc1, int nSrc1Step, const Npp32f *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
1 channel 32-bit floating point image compare.
NppStatus nppiThreshold_16s_AC4R_Ctx(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
4 channel 16-bit signed short image threshold, not affecting Alpha.
NppStatus nppiThreshold_GTVal_8u_C3R(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], const Npp8u rValues[3])
NppStatus nppiThreshold_LTVal_16u_AC4IR_Ctx(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], const Npp16u rValues[3], NppStreamContext nppStreamCtx)
4 channel 16-bit unsigned short in place image threshold, not affecting Alpha.
NppStatus nppiCompareC_16u_C4R(const Npp16u *pSrc, int nSrcStep, const Npp16u *pConstants, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_LTVal_16s_C1R_Ctx(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s nThreshold, const Npp16s nValue, NppStreamContext nppStreamCtx)
1 channel 16-bit signed short threshold.
NppStatus nppiThreshold_GTVal_32f_AC4IR(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], const Npp32f rValues[3])
NppStatus nppiThreshold_LTVal_32f_C1IR_Ctx(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f nThreshold, const Npp32f nValue, NppStreamContext nppStreamCtx)
1 channel 32-bit floating point in place threshold.
NppStatus nppiThreshold_LT_8u_C3R(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3])
NppStatus nppiThreshold_LT_8u_AC4R(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3])
NppStatus nppiThreshold_GTVal_32f_AC4R(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], const Npp32f rValues[3])
NppStatus nppiThreshold_LT_32f_C1R_Ctx(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f nThreshold, NppStreamContext nppStreamCtx)
1 channel 32-bit floating point threshold.
NppStatus nppiThreshold_LT_16u_C1IR_Ctx(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u nThreshold, NppStreamContext nppStreamCtx)
1 channel 16-bit unsigned short in place threshold.
NppStatus nppiThreshold_GTVal_32f_C3IR(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], const Npp32f rValues[3])
NppStatus nppiThreshold_GTVal_16s_C1IR(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s nThreshold, const Npp16s nValue)
NppStatus nppiThreshold_LT_32f_C3R(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3])
NppStatus nppiThreshold_GTVal_16s_C3R_Ctx(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], const Npp16s rValues[3], NppStreamContext nppStreamCtx)
3 channel 16-bit signed short threshold.
NppStatus nppiThreshold_LTVal_16s_C3R(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], const Npp16s rValues[3])
NppStatus nppiThreshold_GT_32f_C1IR_Ctx(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f nThreshold, NppStreamContext nppStreamCtx)
1 channel 32-bit floating point in place threshold.
NppStatus nppiCompare_16u_AC4R_Ctx(const Npp16u *pSrc1, int nSrc1Step, const Npp16u *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
4 channel 16-bit unsigned short image compare, not affecting Alpha.
NppStatus nppiCompareC_8u_C3R(const Npp8u *pSrc, int nSrcStep, const Npp8u *pConstants, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation)
NppStatus nppiCompareC_8u_C1R_Ctx(const Npp8u *pSrc, int nSrcStep, const Npp8u nConstant, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
1 channel 8-bit unsigned char image compare with constant value.
NppStatus nppiThreshold_GTVal_8u_C1IR(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u nThreshold, const Npp8u nValue)
NppStatus nppiCompareEqualEps_32f_C3R(const Npp32f *pSrc1, int nSrc1Step, const Npp32f *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, Npp32f nEpsilon)
NppStatus nppiCompareEqualEps_32f_C3R_Ctx(const Npp32f *pSrc1, int nSrc1Step, const Npp32f *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, Npp32f nEpsilon, NppStreamContext nppStreamCtx)
3 channel 32-bit floating point image compare whether two images are equal within epsilon...
NppStatus nppiCompareEqualEps_32f_AC4R_Ctx(const Npp32f *pSrc1, int nSrc1Step, const Npp32f *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, Npp32f nEpsilon, NppStreamContext nppStreamCtx)
4 channel 32-bit signed floating point compare whether two images are equal within epsilon...
NppStatus nppiThreshold_LTVal_16u_C1R_Ctx(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u nThreshold, const Npp16u nValue, NppStreamContext nppStreamCtx)
1 channel 16-bit unsigned short threshold.
NppStatus nppiThreshold_Val_16s_AC4IR(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], const Npp16s rValues[3], NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_GT_16u_AC4R_Ctx(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], NppStreamContext nppStreamCtx)
4 channel 16-bit unsigned short image threshold, not affecting Alpha.
NppStatus nppiThreshold_Val_8u_C1R(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u nThreshold, const Npp8u nValue, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_LT_16s_C3IR(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3])
NppStatus nppiThreshold_8u_C1IR(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u nThreshold, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_LT_8u_C1IR(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u nThreshold)
NppStatus nppiThreshold_LT_16s_C3R(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3])
NppStatus nppiThreshold_LT_8u_C3IR_Ctx(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], NppStreamContext nppStreamCtx)
3 channel 8-bit unsigned char in place threshold.
NppStatus nppiThreshold_LTValGTVal_16u_AC4IR(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u rThresholdsLT[3], const Npp16u rValuesLT[3], const Npp16u rThresholdsGT[3], const Npp16u rValuesGT[3])
NppStatus nppiThreshold_LTValGTVal_16s_C1R_Ctx(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s nThresholdLT, const Npp16s nValueLT, const Npp16s nThresholdGT, const Npp16s nValueGT, NppStreamContext nppStreamCtx)
1 channel 16-bit signed short threshold.
NppStatus nppiThreshold_LTVal_16s_AC4R(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], const Npp16s rValues[3])
NppStatus nppiThreshold_16u_AC4R(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], NppCmpOp eComparisonOperation)
NppStatus nppiCompare_16u_C3R_Ctx(const Npp16u *pSrc1, int nSrc1Step, const Npp16u *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
3 channel 16-bit unsigned short image compare.
NppStatus nppiThreshold_16u_AC4IR_Ctx(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
4 channel 16-bit unsigned short in place image threshold, not affecting Alpha.
NppStatus nppiThreshold_LTValGTVal_8u_C3IR_Ctx(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u rThresholdsLT[3], const Npp8u rValuesLT[3], const Npp8u rThresholdsGT[3], const Npp8u rValuesGT[3], NppStreamContext nppStreamCtx)
3 channel 8-bit unsigned char in place threshold.
NppStatus nppiThreshold_32f_C3IR(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], NppCmpOp eComparisonOperation)
NppStatus nppiCompareC_16s_C1R(const Npp16s *pSrc, int nSrcStep, const Npp16s nConstant, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_GT_16u_AC4IR(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3])
NppStatus nppiThreshold_32f_AC4R(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_GT_32f_C1IR(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f nThreshold)
NppStatus nppiThreshold_GT_16u_C1R_Ctx(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u nThreshold, NppStreamContext nppStreamCtx)
1 channel 16-bit unsigned short threshold.
NppStatus nppiThreshold_GTVal_32f_C3R_Ctx(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], const Npp32f rValues[3], NppStreamContext nppStreamCtx)
3 channel 32-bit floating point threshold.
NppStatus nppiCompare_16u_C1R(const Npp16u *pSrc1, int nSrc1Step, const Npp16u *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_GT_8u_AC4R(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3])
2D Size This struct typically represents the size of a a rectangular region in two space...
Definition: nppdefs.h:410
NppStatus nppiThreshold_LTValGTVal_8u_C1R_Ctx(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u nThresholdLT, const Npp8u nValueLT, const Npp8u nThresholdGT, const Npp8u nValueGT, NppStreamContext nppStreamCtx)
1 channel 8-bit unsigned char threshold.
NppStatus nppiCompare_32f_C3R(const Npp32f *pSrc1, int nSrc1Step, const Npp32f *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation)
NppCmpOp
Definition: nppdefs.h:438
NppStatus nppiThreshold_GT_16s_AC4IR_Ctx(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], NppStreamContext nppStreamCtx)
4 channel 16-bit signed short in place image threshold, not affecting Alpha.
NppStatus nppiThreshold_LT_32f_AC4R(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3])
NppStatus nppiThreshold_Val_8u_C1R_Ctx(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u nThreshold, const Npp8u nValue, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
1 channel 8-bit unsigned char threshold.
NppStatus nppiCompareEqualEpsC_32f_C4R(const Npp32f *pSrc, int nSrcStep, const Npp32f *pConstants, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, Npp32f nEpsilon)
NppStatus nppiThreshold_GTVal_16u_C3IR_Ctx(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], const Npp16u rValues[3], NppStreamContext nppStreamCtx)
3 channel 16-bit unsigned short in place threshold.
NppStatus nppiThreshold_LTValGTVal_16u_C3R_Ctx(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u rThresholdsLT[3], const Npp16u rValuesLT[3], const Npp16u rThresholdsGT[3], const Npp16u rValuesGT[3], NppStreamContext nppStreamCtx)
3 channel 16-bit unsigned short threshold.
NppStatus nppiThreshold_LT_16s_AC4IR(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3])
NppStatus nppiThreshold_GT_8u_AC4IR_Ctx(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], NppStreamContext nppStreamCtx)
4 channel 8-bit unsigned char in place image threshold, not affecting Alpha.
NppStatus nppiThreshold_GT_16u_C1R(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u nThreshold)
NppStatus nppiThreshold_GTVal_8u_AC4R(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], const Npp8u rValues[3])
NppStatus nppiThreshold_32f_C3R(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_LT_32f_C1IR(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f nThreshold)
NppStatus nppiThreshold_32f_AC4IR_Ctx(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
4 channel 32-bit floating point in place image threshold, not affecting Alpha.
NppStatus nppiThreshold_GT_8u_C1IR(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u nThreshold)
NppStatus nppiCompareC_16s_C1R_Ctx(const Npp16s *pSrc, int nSrcStep, const Npp16s nConstant, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
1 channel 16-bit signed short image compare with constant value.
NppStatus nppiThreshold_LT_16u_AC4R(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3])
NppStatus nppiThreshold_GT_16s_AC4R_Ctx(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], NppStreamContext nppStreamCtx)
4 channel 16-bit signed short image threshold, not affecting Alpha.
NppStatus nppiThreshold_16s_AC4R(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_32f_C1IR_Ctx(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f nThreshold, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
1 channel 32-bit floating point in place threshold.
NppStatus nppiThreshold_LT_16u_C3R_Ctx(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], NppStreamContext nppStreamCtx)
3 channel 16-bit unsigned short threshold.
NppStatus nppiThreshold_GT_32f_C3IR(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3])
NppStatus nppiThreshold_LT_32f_C3IR(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3])
NppStatus nppiThreshold_LTValGTVal_32f_C1IR_Ctx(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f nThresholdLT, const Npp32f nValueLT, const Npp32f nThresholdGT, const Npp32f nValueGT, NppStreamContext nppStreamCtx)
1 channel 32-bit floating point in place threshold.
NppStatus nppiThreshold_LTVal_8u_C1R_Ctx(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u nThreshold, const Npp8u nValue, NppStreamContext nppStreamCtx)
1 channel 8-bit unsigned char threshold.
NppStatus nppiCompareC_16u_AC4R(const Npp16u *pSrc, int nSrcStep, const Npp16u *pConstants, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_GTVal_16s_AC4R_Ctx(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], const Npp16s rValues[3], NppStreamContext nppStreamCtx)
4 channel 16-bit signed short image threshold, not affecting Alpha.
NppStatus nppiCompare_8u_C4R(const Npp8u *pSrc1, int nSrc1Step, const Npp8u *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_16u_C1IR_Ctx(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u nThreshold, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
1 channel 16-bit unsigned short in place threshold.
NppStatus nppiCompareEqualEps_32f_C4R_Ctx(const Npp32f *pSrc1, int nSrc1Step, const Npp32f *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, Npp32f nEpsilon, NppStreamContext nppStreamCtx)
4 channel 32-bit floating point image compare whether two images are equal within epsilon...
NppStatus nppiThreshold_LT_16u_C3IR_Ctx(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], NppStreamContext nppStreamCtx)
3 channel 16-bit unsigned short in place threshold.
NppStatus nppiThreshold_LTValGTVal_32f_C3R_Ctx(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f rThresholdsLT[3], const Npp32f rValuesLT[3], const Npp32f rThresholdsGT[3], const Npp32f rValuesGT[3], NppStreamContext nppStreamCtx)
3 channel 32-bit floating point threshold.
NppStatus nppiThreshold_8u_C3R(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_Val_32f_AC4R(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], const Npp32f rValues[3], NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_GT_8u_AC4R_Ctx(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], NppStreamContext nppStreamCtx)
4 channel 8-bit unsigned char image threshold, not affecting Alpha.
NppStatus nppiCompareC_16s_C3R(const Npp16s *pSrc, int nSrcStep, const Npp16s *pConstants, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation)
NppStatus nppiCompareC_16s_AC4R_Ctx(const Npp16s *pSrc, int nSrcStep, const Npp16s *pConstants, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
4 channel 16-bit signed short image compare, not affecting Alpha.
NppStatus nppiThreshold_Val_8u_C3R_Ctx(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], const Npp8u rValues[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
3 channel 8-bit unsigned char threshold.
NppStatus nppiThreshold_32f_C3IR_Ctx(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
3 channel 32-bit floating point in place threshold.
NppStatus nppiThreshold_LTVal_32f_C1R(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f nThreshold, const Npp32f nValue)
NppStatus nppiCompare_32f_C3R_Ctx(const Npp32f *pSrc1, int nSrc1Step, const Npp32f *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
3 channel 32-bit floating point image compare.
NppStatus nppiThreshold_GTVal_16u_C3R_Ctx(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], const Npp16u rValues[3], NppStreamContext nppStreamCtx)
3 channel 16-bit unsigned short threshold.
NppStatus nppiCompareC_16u_C1R(const Npp16u *pSrc, int nSrcStep, const Npp16u nConstant, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_Val_32f_C3IR_Ctx(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], const Npp32f rValues[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
3 channel 32-bit floating point in place threshold.
NppStatus nppiThreshold_Val_8u_C3IR(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], const Npp8u rValues[3], NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_Val_8u_C1IR(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u nThreshold, const Npp8u nValue, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_Val_16s_C3IR(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], const Npp16s rValues[3], NppCmpOp eComparisonOperation)
NppStatus nppiCompare_16u_C4R(const Npp16u *pSrc1, int nSrc1Step, const Npp16u *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_8u_AC4R_Ctx(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
4 channel 8-bit unsigned char image threshold, not affecting Alpha.
NppStatus nppiThreshold_LTVal_16s_C3IR_Ctx(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], const Npp16s rValues[3], NppStreamContext nppStreamCtx)
3 channel 16-bit signed short in place threshold.
NppStatus nppiThreshold_Val_32f_C1IR(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f nThreshold, const Npp32f nValue, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_GT_8u_C1R(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u nThreshold)
NppStatus nppiThreshold_LTVal_16u_AC4IR(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], const Npp16u rValues[3])
NppStatus nppiCompareEqualEps_32f_C1R(const Npp32f *pSrc1, int nSrc1Step, const Npp32f *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, Npp32f nEpsilon)
NppStatus nppiCompare_32f_C1R(const Npp32f *pSrc1, int nSrc1Step, const Npp32f *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_LTValGTVal_16u_C1R_Ctx(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u nThresholdLT, const Npp16u nValueLT, const Npp16u nThresholdGT, const Npp16u nValueGT, NppStreamContext nppStreamCtx)
1 channel 16-bit unsigned short threshold.
NppStatus nppiThreshold_Val_32f_C3IR(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], const Npp32f rValues[3], NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_Val_16s_AC4IR_Ctx(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], const Npp16s rValues[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
4 channel 16-bit signed short in place image threshold, not affecting Alpha.
NppStatus nppiThreshold_LTValGTVal_16s_AC4R_Ctx(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s rThresholdsLT[3], const Npp16s rValuesLT[3], const Npp16s rThresholdsGT[3], const Npp16s rValuesGT[3], NppStreamContext nppStreamCtx)
4 channel 16-bit signed short image threshold, not affecting Alpha.
NppStatus nppiThreshold_8u_AC4R(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], NppCmpOp eComparisonOperation)
NppStatus nppiCompareC_8u_C3R_Ctx(const Npp8u *pSrc, int nSrcStep, const Npp8u *pConstants, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
3 channel 8-bit unsigned char image compare with constant value.
NppStatus nppiThreshold_LTValGTVal_16s_C1R(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s nThresholdLT, const Npp16s nValueLT, const Npp16s nThresholdGT, const Npp16s nValueGT)
NppStatus nppiCompare_16s_C3R_Ctx(const Npp16s *pSrc1, int nSrc1Step, const Npp16s *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
3 channel 16-bit signed short image compare.
NppStatus nppiCompareEqualEps_32f_AC4R(const Npp32f *pSrc1, int nSrc1Step, const Npp32f *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, Npp32f nEpsilon)
NppStatus nppiThreshold_LTVal_8u_AC4R(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], const Npp8u rValues[3])
NppStatus nppiThreshold_LTVal_8u_C3R(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], const Npp8u rValues[3])
NppStatus nppiThreshold_GT_8u_C1R_Ctx(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u nThreshold, NppStreamContext nppStreamCtx)
1 channel 8-bit unsigned char threshold.
NppStatus nppiThreshold_LT_32f_AC4IR(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3])
NppStatus nppiThreshold_GTVal_8u_AC4IR_Ctx(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], const Npp8u rValues[3], NppStreamContext nppStreamCtx)
4 channel 8-bit unsigned char in place image threshold, not affecting Alpha.
NppStatus nppiThreshold_LTVal_16u_C3R(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], const Npp16u rValues[3])
NppStatus nppiCompareC_32f_C1R(const Npp32f *pSrc, int nSrcStep, const Npp32f nConstant, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_LTValGTVal_16s_C1IR_Ctx(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s nThresholdLT, const Npp16s nValueLT, const Npp16s nThresholdGT, const Npp16s nValueGT, NppStreamContext nppStreamCtx)
1 channel 16-bit signed short in place threshold.
NppStatus nppiThreshold_LTValGTVal_8u_C3R(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u rThresholdsLT[3], const Npp8u rValuesLT[3], const Npp8u rThresholdsGT[3], const Npp8u rValuesGT[3])
NppStatus nppiThreshold_Val_16u_C1IR(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u nThreshold, const Npp16u nValue, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_Val_16u_C1R(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u nThreshold, const Npp16u nValue, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_32f_C1IR(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f nThreshold, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_8u_C3R_Ctx(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
3 channel 8-bit unsigned char threshold.
NppStatus nppiCompare_8u_C3R(const Npp8u *pSrc1, int nSrc1Step, const Npp8u *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_LT_16s_C1IR_Ctx(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s nThreshold, NppStreamContext nppStreamCtx)
1 channel 16-bit signed short in place threshold.
NppStatus nppiThreshold_LTValGTVal_8u_C3IR(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u rThresholdsLT[3], const Npp8u rValuesLT[3], const Npp8u rThresholdsGT[3], const Npp8u rValuesGT[3])
NppStatus nppiCompare_16u_AC4R(const Npp16u *pSrc1, int nSrc1Step, const Npp16u *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_LT_16u_C1R_Ctx(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u nThreshold, NppStreamContext nppStreamCtx)
1 channel 16-bit unsigned short threshold.
NppStatus nppiThreshold_8u_AC4IR(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_LTValGTVal_8u_C1IR(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u nThresholdLT, const Npp8u nValueLT, const Npp8u nThresholdGT, const Npp8u nValueGT)
NppStatus nppiThreshold_GTVal_8u_C1R(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u nThreshold, const Npp8u nValue)
NppStatus nppiThreshold_LTVal_8u_C3IR_Ctx(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], const Npp8u rValues[3], NppStreamContext nppStreamCtx)
3 channel 8-bit unsigned char in place threshold.
NppStatus nppiThreshold_LTVal_32f_C3IR_Ctx(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], const Npp32f rValues[3], NppStreamContext nppStreamCtx)
3 channel 32-bit floating point in place threshold.
NppStatus nppiThreshold_LT_16u_C1IR(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u nThreshold)
NppStatus nppiThreshold_GTVal_8u_C1R_Ctx(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u nThreshold, const Npp8u nValue, NppStreamContext nppStreamCtx)
1 channel 8-bit unsigned char threshold.
NppStatus nppiCompare_16u_C4R_Ctx(const Npp16u *pSrc1, int nSrc1Step, const Npp16u *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
4 channel 16-bit unsigned short image compare.
NppStatus nppiThreshold_GTVal_16u_C3R(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], const Npp16u rValues[3])
NppStatus nppiCompareEqualEpsC_32f_C1R_Ctx(const Npp32f *pSrc, int nSrcStep, const Npp32f nConstant, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, Npp32f nEpsilon, NppStreamContext nppStreamCtx)
1 channel 32-bit floating point image compare whether image and constant are equal within epsilon...
NppStatus nppiThreshold_LTValGTVal_16s_AC4IR_Ctx(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s rThresholdsLT[3], const Npp16s rValuesLT[3], const Npp16s rThresholdsGT[3], const Npp16s rValuesGT[3], NppStreamContext nppStreamCtx)
4 channel 16-bit signed short in place image threshold, not affecting Alpha.
NppStatus nppiThreshold_LTValGTVal_32f_AC4IR(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f rThresholdsLT[3], const Npp32f rValuesLT[3], const Npp32f rThresholdsGT[3], const Npp32f rValuesGT[3])
NppStatus nppiThreshold_GTVal_8u_AC4R_Ctx(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], const Npp8u rValues[3], NppStreamContext nppStreamCtx)
4 channel 8-bit unsigned char image threshold, not affecting Alpha.
NppStatus nppiThreshold_Val_16s_C1R(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s nThreshold, const Npp16s nValue, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_LTValGTVal_32f_AC4R_Ctx(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f rThresholdsLT[3], const Npp32f rValuesLT[3], const Npp32f rThresholdsGT[3], const Npp32f rValuesGT[3], NppStreamContext nppStreamCtx)
4 channel 32-bit floating point image threshold, not affecting Alpha.
NppStatus nppiThreshold_LTVal_16s_C1R(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s nThreshold, const Npp16s nValue)
NppStatus nppiThreshold_LTVal_8u_C1IR_Ctx(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u nThreshold, const Npp8u nValue, NppStreamContext nppStreamCtx)
1 channel 8-bit unsigned char in place threshold.
NppStatus nppiCompare_32f_C4R(const Npp32f *pSrc1, int nSrc1Step, const Npp32f *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_LTValGTVal_16u_C3IR(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u rThresholdsLT[3], const Npp16u rValuesLT[3], const Npp16u rThresholdsGT[3], const Npp16u rValuesGT[3])
NppStatus nppiThreshold_LTValGTVal_16s_AC4IR(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s rThresholdsLT[3], const Npp16s rValuesLT[3], const Npp16s rThresholdsGT[3], const Npp16s rValuesGT[3])
NppStatus nppiThreshold_LTVal_8u_AC4R_Ctx(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], const Npp8u rValues[3], NppStreamContext nppStreamCtx)
4 channel 8-bit unsigned char image threshold, not affecting Alpha.
NppStatus nppiCompareEqualEpsC_32f_C4R_Ctx(const Npp32f *pSrc, int nSrcStep, const Npp32f *pConstants, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, Npp32f nEpsilon, NppStreamContext nppStreamCtx)
4 channel 32-bit floating point image compare whether image and constant are equal within epsilon...
NppStatus nppiThreshold_GTVal_16s_C3R(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], const Npp16s rValues[3])
NppStatus nppiThreshold_LT_16u_AC4IR(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3])
NppStatus nppiThreshold_GT_16s_C1IR_Ctx(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s nThreshold, NppStreamContext nppStreamCtx)
1 channel 16-bit signed short in place threshold.
NppStatus nppiThreshold_GT_16s_C1R(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s nThreshold)
NppStatus nppiThreshold_Val_8u_AC4R(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], const Npp8u rValues[3], NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_LT_16u_C3IR(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3])
NppStatus nppiThreshold_16s_C1IR_Ctx(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s nThreshold, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
1 channel 16-bit signed short in place threshold.
NppStatus nppiThreshold_Val_16u_C3R_Ctx(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], const Npp16u rValues[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
3 channel 16-bit unsigned short threshold.
NppStatus nppiThreshold_Val_32f_C1IR_Ctx(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f nThreshold, const Npp32f nValue, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
1 channel 32-bit floating point in place threshold.
NppStatus nppiThreshold_8u_C1R(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u nThreshold, NppCmpOp eComparisonOperation)
NppStatus nppiCompare_8u_C3R_Ctx(const Npp8u *pSrc1, int nSrc1Step, const Npp8u *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
3 channel 8-bit unsigned char image compare.
NppStatus nppiThreshold_8u_C3IR_Ctx(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
3 channel 8-bit unsigned char in place threshold.
NppStatus nppiThreshold_LT_16s_AC4R_Ctx(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], NppStreamContext nppStreamCtx)
4 channel 16-bit signed short image threshold, not affecting Alpha.
NppStatus nppiCompareC_16s_C3R_Ctx(const Npp16s *pSrc, int nSrcStep, const Npp16s *pConstants, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
3 channel 16-bit signed short image compare with constant value.
NppStatus nppiThreshold_LT_32f_C3IR_Ctx(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], NppStreamContext nppStreamCtx)
3 channel 32-bit floating point in place threshold.
NppStatus nppiThreshold_LTVal_16u_AC4R_Ctx(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], const Npp16u rValues[3], NppStreamContext nppStreamCtx)
4 channel 16-bit unsigned short image threshold, not affecting Alpha.
NppStatus nppiThreshold_LTValGTVal_32f_C3R(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f rThresholdsLT[3], const Npp32f rValuesLT[3], const Npp32f rThresholdsGT[3], const Npp32f rValuesGT[3])
NppStatus nppiThreshold_LTVal_16s_C1IR(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s nThreshold, const Npp16s nValue)
unsigned short Npp16u
16-bit unsigned integers
Definition: nppdefs.h:272
NppStatus nppiThreshold_GTVal_8u_AC4IR(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], const Npp8u rValues[3])
NppStatus nppiThreshold_GTVal_32f_C1IR_Ctx(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f nThreshold, const Npp32f nValue, NppStreamContext nppStreamCtx)
1 channel 32-bit floating point in place threshold.
NppStatus nppiThreshold_LT_16s_C3IR_Ctx(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], NppStreamContext nppStreamCtx)
3 channel 16-bit signed short in place threshold.
NppStatus nppiThreshold_LTVal_32f_C1IR(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f nThreshold, const Npp32f nValue)
NppStatus nppiThreshold_LTValGTVal_32f_C3IR_Ctx(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f rThresholdsLT[3], const Npp32f rValuesLT[3], const Npp32f rThresholdsGT[3], const Npp32f rValuesGT[3], NppStreamContext nppStreamCtx)
3 channel 32-bit floating point in place threshold.
NppStatus nppiThreshold_GT_8u_C3IR(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3])
NppStatus nppiThreshold_GTVal_32f_AC4R_Ctx(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], const Npp32f rValues[3], NppStreamContext nppStreamCtx)
4 channel 32-bit floating point image threshold, not affecting Alpha.
NppStatus nppiThreshold_LT_16s_AC4IR_Ctx(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], NppStreamContext nppStreamCtx)
4 channel 16-bit signed short in place image threshold, not affecting Alpha.
NPP stream context structure must be filled in by application.
Definition: nppdefs.h:702
NppStatus nppiThreshold_LT_8u_C1R_Ctx(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u nThreshold, NppStreamContext nppStreamCtx)
1 channel 8-bit unsigned char threshold.
NppStatus nppiThreshold_GT_16u_C3IR_Ctx(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], NppStreamContext nppStreamCtx)
3 channel 16-bit unsigned short in place threshold.
NppStatus nppiThreshold_GTVal_16s_C1R_Ctx(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s nThreshold, const Npp16s nValue, NppStreamContext nppStreamCtx)
1 channel 16-bit signed short threshold.
NppStatus nppiCompareEqualEpsC_32f_C1R(const Npp32f *pSrc, int nSrcStep, const Npp32f nConstant, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, Npp32f nEpsilon)
NppStatus nppiThreshold_LTValGTVal_16u_AC4R(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u rThresholdsLT[3], const Npp16u rValuesLT[3], const Npp16u rThresholdsGT[3], const Npp16u rValuesGT[3])
NppStatus nppiCompareC_8u_C1R(const Npp8u *pSrc, int nSrcStep, const Npp8u nConstant, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_GTVal_16s_C1R(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s nThreshold, const Npp16s nValue)
NppStatus nppiThreshold_16s_C3IR(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_16s_AC4IR_Ctx(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
4 channel 16-bit signed short in place image threshold, not affecting Alpha.
NppStatus nppiThreshold_GT_16s_C3R(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3])
NppStatus nppiCompareEqualEps_32f_C4R(const Npp32f *pSrc1, int nSrc1Step, const Npp32f *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, Npp32f nEpsilon)
NppStatus nppiThreshold_LTVal_32f_AC4R_Ctx(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], const Npp32f rValues[3], NppStreamContext nppStreamCtx)
4 channel 32-bit floating point image threshold, not affecting Alpha.
NppStatus nppiThreshold_Val_8u_C3IR_Ctx(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], const Npp8u rValues[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
3 channel 8-bit unsigned char in place threshold.
NppStatus nppiThreshold_LTValGTVal_16s_C3R_Ctx(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s rThresholdsLT[3], const Npp16s rValuesLT[3], const Npp16s rThresholdsGT[3], const Npp16s rValuesGT[3], NppStreamContext nppStreamCtx)
3 channel 16-bit signed short threshold.
NppStatus nppiThreshold_GT_16u_C3R(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3])
NppStatus nppiThreshold_32f_AC4IR(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], NppCmpOp eComparisonOperation)
NppStatus nppiCompareEqualEpsC_32f_C3R(const Npp32f *pSrc, int nSrcStep, const Npp32f *pConstants, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, Npp32f nEpsilon)
NppStatus nppiThreshold_Val_16u_C1IR_Ctx(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u nThreshold, const Npp16u nValue, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
1 channel 16-bit unsigned short in place threshold.
NppStatus nppiThreshold_LT_16s_C1IR(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s nThreshold)
NppStatus nppiThreshold_LTValGTVal_8u_AC4IR(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u rThresholdsLT[3], const Npp8u rValuesLT[3], const Npp8u rThresholdsGT[3], const Npp8u rValuesGT[3])
NppStatus nppiCompareEqualEpsC_32f_AC4R_Ctx(const Npp32f *pSrc, int nSrcStep, const Npp32f *pConstants, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, Npp32f nEpsilon, NppStreamContext nppStreamCtx)
4 channel 32-bit signed floating point compare whether image and constant are equal within epsilon...
NppStatus nppiThreshold_Val_8u_AC4IR(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], const Npp8u rValues[3], NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_GTVal_32f_AC4IR_Ctx(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], const Npp32f rValues[3], NppStreamContext nppStreamCtx)
4 channel 32-bit floating point in place image threshold, not affecting Alpha.
NppStatus nppiThreshold_16s_C3R_Ctx(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
3 channel 16-bit signed short threshold.
NppStatus nppiThreshold_LTVal_32f_C3R(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], const Npp32f rValues[3])
NppStatus nppiThreshold_Val_16s_C1R_Ctx(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s nThreshold, const Npp16s nValue, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
1 channel 16-bit signed short threshold.
NppStatus nppiThreshold_LTVal_16s_AC4IR(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], const Npp16s rValues[3])
NppStatus nppiThreshold_Val_16s_C3R(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], const Npp16s rValues[3], NppCmpOp eComparisonOperation)
short Npp16s
16-bit signed integers
Definition: nppdefs.h:273
NppStatus nppiCompareC_32f_AC4R(const Npp32f *pSrc, int nSrcStep, const Npp32f *pConstants, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_GTVal_8u_C3IR_Ctx(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], const Npp8u rValues[3], NppStreamContext nppStreamCtx)
3 channel 8-bit unsigned char in place threshold.
NppStatus nppiThreshold_LT_8u_C3R_Ctx(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], NppStreamContext nppStreamCtx)
3 channel 8-bit unsigned char threshold.
NppStatus nppiThreshold_LTValGTVal_32f_C1R(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f nThresholdLT, const Npp32f nValueLT, const Npp32f nThresholdGT, const Npp32f nValueGT)
NppStatus nppiThreshold_GT_32f_AC4IR_Ctx(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], NppStreamContext nppStreamCtx)
4 channel 32-bit floating point in place image threshold, not affecting Alpha.
NppStatus nppiCompareC_16u_C3R_Ctx(const Npp16u *pSrc, int nSrcStep, const Npp16u *pConstants, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
3 channel 16-bit unsigned short image compare with constant value.
NppStatus nppiThreshold_LTValGTVal_8u_AC4R_Ctx(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u rThresholdsLT[3], const Npp8u rValuesLT[3], const Npp8u rThresholdsGT[3], const Npp8u rValuesGT[3], NppStreamContext nppStreamCtx)
4 channel 8-bit unsigned char image threshold, not affecting Alpha.
NppStatus nppiThreshold_16s_C1IR(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s nThreshold, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_GTVal_16u_AC4IR(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], const Npp16u rValues[3])
NppStatus nppiThreshold_LTVal_32f_AC4IR_Ctx(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], const Npp32f rValues[3], NppStreamContext nppStreamCtx)
4 channel 32-bit floating point in place image threshold, not affecting Alpha.
NppStatus nppiThreshold_LT_16s_AC4R(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3])
NppStatus nppiThreshold_LTVal_16u_C1IR_Ctx(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u nThreshold, const Npp16u nValue, NppStreamContext nppStreamCtx)
1 channel 16-bit unsigned short in place threshold.
NppStatus nppiCompareC_16s_C4R_Ctx(const Npp16s *pSrc, int nSrcStep, const Npp16s *pConstants, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
4 channel 16-bit signed short image compare with constant value.
NppStatus nppiThreshold_LT_16u_C1R(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u nThreshold)
NppStatus nppiThreshold_LTValGTVal_16s_C3IR(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s rThresholdsLT[3], const Npp16s rValuesLT[3], const Npp16s rThresholdsGT[3], const Npp16s rValuesGT[3])
NppStatus nppiThreshold_Val_16s_AC4R_Ctx(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], const Npp16s rValues[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
4 channel 16-bit signed short image threshold, not affecting Alpha.
NppStatus nppiThreshold_LTVal_16u_C1IR(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u nThreshold, const Npp16u nValue)
NppStatus nppiCompareC_32f_C3R_Ctx(const Npp32f *pSrc, int nSrcStep, const Npp32f *pConstants, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
3 channel 32-bit floating point image compare with constant value.
NppStatus nppiThreshold_LTVal_32f_AC4R(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], const Npp32f rValues[3])
NppStatus nppiThreshold_8u_AC4IR_Ctx(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
4 channel 8-bit unsigned char in place image threshold, not affecting Alpha.
NppStatus nppiThreshold_LT_16s_C1R_Ctx(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s nThreshold, NppStreamContext nppStreamCtx)
1 channel 16-bit signed short threshold.
NppStatus nppiCompareC_8u_C4R_Ctx(const Npp8u *pSrc, int nSrcStep, const Npp8u *pConstants, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
4 channel 8-bit unsigned char image compare with constant value.
NppStatus nppiThreshold_LTVal_8u_C3R_Ctx(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], const Npp8u rValues[3], NppStreamContext nppStreamCtx)
3 channel 8-bit unsigned char threshold.
NppStatus nppiCompare_32f_AC4R_Ctx(const Npp32f *pSrc1, int nSrc1Step, const Npp32f *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
4 channel 32-bit signed floating point compare, not affecting Alpha.
NppStatus nppiThreshold_LTValGTVal_32f_AC4IR_Ctx(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f rThresholdsLT[3], const Npp32f rValuesLT[3], const Npp32f rThresholdsGT[3], const Npp32f rValuesGT[3], NppStreamContext nppStreamCtx)
4 channel 32-bit floating point in place image threshold, not affecting Alpha.
NppStatus nppiThreshold_GTVal_32f_C1R_Ctx(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f nThreshold, const Npp32f nValue, NppStreamContext nppStreamCtx)
1 channel 32-bit floating point threshold.
NppStatus nppiThreshold_GTVal_8u_C1IR_Ctx(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u nThreshold, const Npp8u nValue, NppStreamContext nppStreamCtx)
1 channel 8-bit unsigned char in place threshold.
NppStatus nppiThreshold_LT_16u_C3R(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3])
NppStatus nppiThreshold_GT_16s_C1R_Ctx(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s nThreshold, NppStreamContext nppStreamCtx)
1 channel 16-bit signed short threshold.
NppStatus nppiThreshold_16u_C1R(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u nThreshold, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_LT_32f_AC4R_Ctx(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], NppStreamContext nppStreamCtx)
4 channel 32-bit floating point image threshold, not affecting Alpha.
NppStatus nppiThreshold_LTValGTVal_16s_C3IR_Ctx(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s rThresholdsLT[3], const Npp16s rValuesLT[3], const Npp16s rThresholdsGT[3], const Npp16s rValuesGT[3], NppStreamContext nppStreamCtx)
3 channel 16-bit signed short in place threshold.
NppStatus nppiThreshold_LTValGTVal_16u_AC4R_Ctx(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u rThresholdsLT[3], const Npp16u rValuesLT[3], const Npp16u rThresholdsGT[3], const Npp16u rValuesGT[3], NppStreamContext nppStreamCtx)
4 channel 16-bit unsigned short image threshold, not affecting Alpha.
NppStatus nppiThreshold_LTValGTVal_16u_C1R(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u nThresholdLT, const Npp16u nValueLT, const Npp16u nThresholdGT, const Npp16u nValueGT)
float Npp32f
32-bit (IEEE) floating-point numbers
Definition: nppdefs.h:278
NppStatus nppiThreshold_GT_32f_AC4R(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3])
NppStatus nppiThreshold_LTVal_32f_C1R_Ctx(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f nThreshold, const Npp32f nValue, NppStreamContext nppStreamCtx)
1 channel 32-bit floating point threshold.
NppStatus nppiCompare_16s_AC4R(const Npp16s *pSrc1, int nSrc1Step, const Npp16s *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_GT_16u_C3R_Ctx(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], NppStreamContext nppStreamCtx)
3 channel 16-bit unsigned short threshold.
NppStatus nppiThreshold_LTValGTVal_16u_AC4IR_Ctx(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u rThresholdsLT[3], const Npp16u rValuesLT[3], const Npp16u rThresholdsGT[3], const Npp16u rValuesGT[3], NppStreamContext nppStreamCtx)
4 channel 16-bit unsigned short in place image threshold, not affecting Alpha.
NppStatus nppiCompare_16s_C4R_Ctx(const Npp16s *pSrc1, int nSrc1Step, const Npp16s *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
4 channel 16-bit signed short image compare.
NppStatus nppiCompare_32f_C4R_Ctx(const Npp32f *pSrc1, int nSrc1Step, const Npp32f *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
4 channel 32-bit floating point image compare.
NppStatus nppiThreshold_GT_32f_AC4R_Ctx(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], NppStreamContext nppStreamCtx)
4 channel 32-bit floating point image threshold, not affecting Alpha.
NppStatus nppiCompare_16s_C3R(const Npp16s *pSrc1, int nSrc1Step, const Npp16s *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_Val_32f_AC4R_Ctx(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], const Npp32f rValues[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
4 channel 32-bit floating point image threshold, not affecting Alpha.
NppStatus nppiCompareC_16u_C1R_Ctx(const Npp16u *pSrc, int nSrcStep, const Npp16u nConstant, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
1 channel 16-bit unsigned short image compare with constant value.
NppStatus nppiThreshold_LTValGTVal_32f_C3IR(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f rThresholdsLT[3], const Npp32f rValuesLT[3], const Npp32f rThresholdsGT[3], const Npp32f rValuesGT[3])
NppStatus nppiThreshold_LTVal_16s_C3R_Ctx(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], const Npp16s rValues[3], NppStreamContext nppStreamCtx)
3 channel 16-bit signed short threshold.
NppStatus nppiCompare_16s_AC4R_Ctx(const Npp16s *pSrc1, int nSrc1Step, const Npp16s *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
4 channel 16-bit signed short image compare, not affecting Alpha.
NppStatus nppiThreshold_LT_8u_AC4IR(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3])
NppStatus nppiThreshold_16u_C3IR_Ctx(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
3 channel 16-bit unsigned short in place threshold.
NppStatus nppiCompareC_16s_AC4R(const Npp16s *pSrc, int nSrcStep, const Npp16s *pConstants, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_16u_C1IR(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u nThreshold, NppCmpOp eComparisonOperation)
NppStatus nppiCompareC_32f_C3R(const Npp32f *pSrc, int nSrcStep, const Npp32f *pConstants, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_Val_16u_AC4R_Ctx(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], const Npp16u rValues[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
4 channel 16-bit unsigned short image threshold, not affecting Alpha.
NppStatus nppiThreshold_LT_8u_AC4IR_Ctx(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], NppStreamContext nppStreamCtx)
4 channel 8-bit unsigned char in place image threshold, not affecting Alpha.
NppStatus nppiCompare_16s_C4R(const Npp16s *pSrc1, int nSrc1Step, const Npp16s *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_GT_16u_C3IR(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3])
NppStatus nppiThreshold_GT_32f_C1R_Ctx(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f nThreshold, NppStreamContext nppStreamCtx)
1 channel 32-bit floating point threshold.
NppStatus nppiCompareC_8u_AC4R_Ctx(const Npp8u *pSrc, int nSrcStep, const Npp8u *pConstants, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
4 channel 8-bit unsigned char image compare, not affecting Alpha.
NppStatus nppiThreshold_Val_16u_C1R_Ctx(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u nThreshold, const Npp16u nValue, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
1 channel 16-bit unsigned short threshold.
NppStatus nppiThreshold_LT_32f_C3R_Ctx(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], NppStreamContext nppStreamCtx)
3 channel 32-bit floating point threshold.
NppStatus nppiThreshold_GTVal_16s_C1IR_Ctx(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s nThreshold, const Npp16s nValue, NppStreamContext nppStreamCtx)
1 channel 16-bit signed short in place threshold.
NppStatus nppiThreshold_GT_16u_AC4R(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3])
NppStatus nppiThreshold_LTValGTVal_32f_C1R_Ctx(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f nThresholdLT, const Npp32f nValueLT, const Npp32f nThresholdGT, const Npp32f nValueGT, NppStreamContext nppStreamCtx)
1 channel 32-bit floating point threshold.
NppStatus nppiThreshold_Val_16u_C3R(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], const Npp16u rValues[3], NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_LTVal_16s_C1IR_Ctx(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s nThreshold, const Npp16s nValue, NppStreamContext nppStreamCtx)
1 channel 16-bit signed short in place threshold.
NppStatus nppiThreshold_GTVal_8u_C3R_Ctx(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], const Npp8u rValues[3], NppStreamContext nppStreamCtx)
3 channel 8-bit unsigned char threshold.
NppStatus nppiThreshold_LT_16u_AC4IR_Ctx(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], NppStreamContext nppStreamCtx)
4 channel 16-bit unsigned short in place image threshold, not affecting Alpha.
NppStatus nppiThreshold_GTVal_16s_AC4IR_Ctx(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], const Npp16s rValues[3], NppStreamContext nppStreamCtx)
4 channel 16-bit signed short in place image threshold, not affecting Alpha.
NppStatus nppiThreshold_LT_8u_C1IR_Ctx(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u nThreshold, NppStreamContext nppStreamCtx)
1 channel 8-bit unsigned char in place threshold.
NppStatus nppiThreshold_16s_C1R(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s nThreshold, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_GT_32f_C3R_Ctx(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], NppStreamContext nppStreamCtx)
3 channel 32-bit floating point threshold.
NppStatus nppiThreshold_LTVal_16u_C3IR_Ctx(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], const Npp16u rValues[3], NppStreamContext nppStreamCtx)
3 channel 16-bit unsigned short in place threshold.
NppStatus nppiThreshold_16u_C3IR(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_LT_8u_C3IR(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3])
NppStatus nppiCompareC_16u_C4R_Ctx(const Npp16u *pSrc, int nSrcStep, const Npp16u *pConstants, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
4 channel 16-bit unsigned short image compare with constant value.
NppStatus nppiThreshold_GT_8u_C3R_Ctx(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], NppStreamContext nppStreamCtx)
3 channel 8-bit unsigned char threshold.
NppStatus nppiThreshold_LTValGTVal_16u_C3IR_Ctx(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u rThresholdsLT[3], const Npp16u rValuesLT[3], const Npp16u rThresholdsGT[3], const Npp16u rValuesGT[3], NppStreamContext nppStreamCtx)
3 channel 16-bit unsigned short in place threshold.
NppStatus nppiCompare_8u_C1R_Ctx(const Npp8u *pSrc1, int nSrc1Step, const Npp8u *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
1 channel 8-bit unsigned char image compare.
NppStatus nppiThreshold_LTValGTVal_16s_C1IR(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s nThresholdLT, const Npp16s nValueLT, const Npp16s nThresholdGT, const Npp16s nValueGT)
NppStatus nppiThreshold_GTVal_16u_C1R(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u nThreshold, const Npp16u nValue)
NppStatus nppiThreshold_GT_32f_AC4IR(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3])
NppStatus nppiThreshold_LTVal_8u_C1R(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u nThreshold, const Npp8u nValue)
NppStatus nppiThreshold_8u_C1R_Ctx(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u nThreshold, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
1 channel 8-bit unsigned char threshold.
NppStatus nppiCompare_8u_C1R(const Npp8u *pSrc1, int nSrc1Step, const Npp8u *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_GTVal_16u_C1R_Ctx(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u nThreshold, const Npp16u nValue, NppStreamContext nppStreamCtx)
1 channel 16-bit unsigned short threshold.
NppStatus nppiThreshold_LTValGTVal_16u_C1IR_Ctx(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u nThresholdLT, const Npp16u nValueLT, const Npp16u nThresholdGT, const Npp16u nValueGT, NppStreamContext nppStreamCtx)
1 channel 16-bit unsigned short in place threshold.
NppStatus nppiThreshold_GT_32f_C3R(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3])
NppStatus nppiThreshold_LTValGTVal_8u_AC4R(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u rThresholdsLT[3], const Npp8u rValuesLT[3], const Npp8u rThresholdsGT[3], const Npp8u rValuesGT[3])
NppStatus nppiThreshold_Val_32f_C3R_Ctx(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], const Npp32f rValues[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
3 channel 32-bit floating point threshold.
NppStatus nppiThreshold_LTVal_16s_AC4R_Ctx(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], const Npp16s rValues[3], NppStreamContext nppStreamCtx)
4 channel 16-bit signed short image threshold, not affecting Alpha.
NppStatus nppiThreshold_Val_16s_C3R_Ctx(const Npp16s *pSrc, int nSrcStep, Npp16s *pDst, int nDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], const Npp16s rValues[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
3 channel 16-bit signed short threshold.
NppStatus nppiThreshold_Val_16u_C3IR(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], const Npp16u rValues[3], NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_LT_8u_C1R(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u nThreshold)
NppStatus nppiThreshold_Val_32f_AC4IR(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], const Npp32f rValues[3], NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_Val_32f_C3R(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], const Npp32f rValues[3], NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_GTVal_32f_C3R(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], const Npp32f rValues[3])
NppStatus nppiThreshold_16u_C3R(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_LTVal_8u_AC4IR(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], const Npp8u rValues[3])
NppStatus nppiCompareEqualEpsC_32f_AC4R(const Npp32f *pSrc, int nSrcStep, const Npp32f *pConstants, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, Npp32f nEpsilon)
NppStatus nppiThreshold_LT_16u_AC4R_Ctx(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], NppStreamContext nppStreamCtx)
4 channel 16-bit unsigned short image threshold, not affecting Alpha.
NppStatus nppiThreshold_GTVal_16u_C1IR(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u nThreshold, const Npp16u nValue)
NppStatus nppiThreshold_GTVal_16s_AC4IR(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], const Npp16s rValues[3])
NppStatus nppiThreshold_LT_8u_AC4R_Ctx(const Npp8u *pSrc, int nSrcStep, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, const Npp8u rThresholds[3], NppStreamContext nppStreamCtx)
4 channel 8-bit unsigned char image threshold, not affecting Alpha.
NppStatus nppiThreshold_LTValGTVal_8u_C1IR_Ctx(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u nThresholdLT, const Npp8u nValueLT, const Npp8u nThresholdGT, const Npp8u nValueGT, NppStreamContext nppStreamCtx)
1 channel 8-bit unsigned char in place threshold.
NppStatus nppiThreshold_GT_32f_C3IR_Ctx(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], NppStreamContext nppStreamCtx)
3 channel 32-bit floating point in place threshold.
NppStatus nppiThreshold_16u_AC4IR(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_GT_16u_C1IR_Ctx(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u nThreshold, NppStreamContext nppStreamCtx)
1 channel 16-bit unsigned short in place threshold.
NppStatus nppiThreshold_16u_C3R_Ctx(const Npp16u *pSrc, int nSrcStep, Npp16u *pDst, int nDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
3 channel 16-bit unsigned short threshold.
NppStatus nppiThreshold_LTVal_32f_C3IR(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f rThresholds[3], const Npp32f rValues[3])
NppStatus nppiThreshold_GTVal_32f_C1IR(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f nThreshold, const Npp32f nValue)
NppStatus nppiThreshold_Val_16u_AC4IR_Ctx(Npp16u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16u rThresholds[3], const Npp16u rValues[3], NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
4 channel 16-bit unsigned short in place image threshold, not affecting Alpha.
NppStatus nppiCompareC_8u_C4R(const Npp8u *pSrc, int nSrcStep, const Npp8u *pConstants, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation)
NppStatus nppiThreshold_LTValGTVal_8u_AC4IR_Ctx(Npp8u *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp8u rThresholdsLT[3], const Npp8u rValuesLT[3], const Npp8u rThresholdsGT[3], const Npp8u rValuesGT[3], NppStreamContext nppStreamCtx)
4 channel 8-bit unsigned char in place image threshold, not affecting Alpha.
NppStatus nppiThreshold_GT_32f_C1R(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f nThreshold)
NppStatus nppiThreshold_32f_C1R_Ctx(const Npp32f *pSrc, int nSrcStep, Npp32f *pDst, int nDstStep, NppiSize oSizeROI, const Npp32f nThreshold, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
1 channel 32-bit floating point threshold.
NppStatus nppiThreshold_LTVal_16s_AC4IR_Ctx(Npp16s *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp16s rThresholds[3], const Npp16s rValues[3], NppStreamContext nppStreamCtx)
4 channel 16-bit signed short in place image threshold, not affecting Alpha.
NppStatus nppiThreshold_LT_32f_C1IR_Ctx(Npp32f *pSrcDst, int nSrcDstStep, NppiSize oSizeROI, const Npp32f nThreshold, NppStreamContext nppStreamCtx)
1 channel 32-bit floating point in place threshold.
NppStatus nppiCompare_8u_AC4R_Ctx(const Npp8u *pSrc1, int nSrc1Step, const Npp8u *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation, NppStreamContext nppStreamCtx)
4 channel 8-bit unsigned char image compare, not affecting Alpha.
NppStatus nppiCompare_16s_C1R(const Npp16s *pSrc1, int nSrc1Step, const Npp16s *pSrc2, int nSrc2Step, Npp8u *pDst, int nDstStep, NppiSize oSizeROI, NppCmpOp eComparisonOperation)

Copyright © 2009-2020 NVIDIA Corporation