NVIDIA Performance Primitives (NPP)  Version 10.0
npps_conversion_functions.h
1  /* Copyright 2010-2016 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_NPPS_CONVERSION_FUNCTIONS_H
49 #define NV_NPPS_CONVERSION_FUNCTIONS_H
50 
56 #include "nppdefs.h"
57 
58 
59 #ifdef __cplusplus
60 extern "C" {
61 #endif
62 
63 
84 NppStatus
85 nppsConvert_8s16s(const Npp8s * pSrc, Npp16s * pDst, int nLength);
86 
87 NppStatus
88 nppsConvert_8s32f(const Npp8s * pSrc, Npp32f * pDst, int nLength);
89 
90 NppStatus
91 nppsConvert_8u32f(const Npp8u * pSrc, Npp32f * pDst, int nLength);
92 
93 NppStatus
94 nppsConvert_16s8s_Sfs(const Npp16s * pSrc, Npp8s * pDst, Npp32u nLength, NppRoundMode eRoundMode, int nScaleFactor);
95 
96 NppStatus
97 nppsConvert_16s32s(const Npp16s * pSrc, Npp32s * pDst, int nLength);
98 
99 NppStatus
100 nppsConvert_16s32f(const Npp16s * pSrc, Npp32f * pDst, int nLength);
101 
102 NppStatus
103 nppsConvert_16u32f(const Npp16u * pSrc, Npp32f * pDst, int nLength);
104 
105 NppStatus
106 nppsConvert_32s16s(const Npp32s * pSrc, Npp16s * pDst, int nLength);
107 
108 NppStatus
109 nppsConvert_32s32f(const Npp32s * pSrc, Npp32f * pDst, int nLength);
110 
111 NppStatus
112 nppsConvert_32s64f(const Npp32s * pSrc, Npp64f * pDst, int nLength);
113 
114 NppStatus
115 nppsConvert_32f64f(const Npp32f * pSrc, Npp64f * pDst, int nLength);
116 
117 NppStatus
118 nppsConvert_64s64f(const Npp64s * pSrc, Npp64f * pDst, int nLength);
119 
120 NppStatus
121 nppsConvert_64f32f(const Npp64f * pSrc, Npp32f * pDst, int nLength);
122 
123 NppStatus
124 nppsConvert_16s32f_Sfs(const Npp16s * pSrc, Npp32f * pDst, int nLength, int nScaleFactor);
125 
126 NppStatus
127 nppsConvert_16s64f_Sfs(const Npp16s * pSrc, Npp64f * pDst, int nLength, int nScaleFactor);
128 
129 NppStatus
130 nppsConvert_32s16s_Sfs(const Npp32s * pSrc, Npp16s * pDst, int nLength, int nScaleFactor);
131 
132 NppStatus
133 nppsConvert_32s32f_Sfs(const Npp32s * pSrc, Npp32f * pDst, int nLength, int nScaleFactor);
134 
135 NppStatus
136 nppsConvert_32s64f_Sfs(const Npp32s * pSrc, Npp64f * pDst, int nLength, int nScaleFactor);
137 
138 NppStatus
139 nppsConvert_32f8s_Sfs(const Npp32f * pSrc, Npp8s * pDst, int nLength, NppRoundMode eRoundMode, int nScaleFactor);
140 
141 NppStatus
142 nppsConvert_32f8u_Sfs(const Npp32f * pSrc, Npp8u * pDst, int nLength, NppRoundMode eRoundMode, int nScaleFactor);
143 
144 NppStatus
145 nppsConvert_32f16s_Sfs(const Npp32f * pSrc, Npp16s * pDst, int nLength, NppRoundMode eRoundMode, int nScaleFactor);
146 
147 NppStatus
148 nppsConvert_32f16u_Sfs(const Npp32f * pSrc, Npp16u * pDst, int nLength, NppRoundMode eRoundMode, int nScaleFactor);
149 
150 NppStatus
151 nppsConvert_32f32s_Sfs(const Npp32f * pSrc, Npp32s * pDst, int nLength, NppRoundMode eRoundMode, int nScaleFactor);
152 
153 NppStatus
154 nppsConvert_64s32s_Sfs(const Npp64s * pSrc, Npp32s * pDst, int nLength, NppRoundMode eRoundMode, int nScaleFactor);
155 
156 NppStatus
157 nppsConvert_64f16s_Sfs(const Npp64f * pSrc, Npp16s * pDst, int nLength, NppRoundMode eRoundMode, int nScaleFactor);
158 
159 NppStatus
160 nppsConvert_64f32s_Sfs(const Npp64f * pSrc, Npp32s * pDst, int nLength, NppRoundMode eRoundMode, int nScaleFactor);
161 
162 NppStatus
163 nppsConvert_64f64s_Sfs(const Npp64f * pSrc, Npp64s * pDst, int nLength, NppRoundMode eRoundMode, int nScaleFactor);
164 
191 NppStatus
192 nppsThreshold_16s(const Npp16s * pSrc, Npp16s * pDst, int nLength, Npp16s nLevel, NppCmpOp nRelOp);
193 
202 NppStatus
203 nppsThreshold_16s_I(Npp16s * pSrcDst, int nLength, Npp16s nLevel, NppCmpOp nRelOp);
204 
214 NppStatus
215 nppsThreshold_16sc(const Npp16sc * pSrc, Npp16sc * pDst, int nLength, Npp16s nLevel, NppCmpOp nRelOp);
216 
225 NppStatus
226 nppsThreshold_16sc_I(Npp16sc * pSrcDst, int nLength, Npp16s nLevel, NppCmpOp nRelOp);
227 
237 NppStatus
238 nppsThreshold_32f(const Npp32f * pSrc, Npp32f * pDst, int nLength, Npp32f nLevel, NppCmpOp nRelOp);
239 
248 NppStatus
249 nppsThreshold_32f_I(Npp32f * pSrcDst, int nLength, Npp32f nLevel, NppCmpOp nRelOp);
250 
260 NppStatus
261 nppsThreshold_32fc(const Npp32fc * pSrc, Npp32fc * pDst, int nLength, Npp32f nLevel, NppCmpOp nRelOp);
262 
271 NppStatus
272 nppsThreshold_32fc_I(Npp32fc * pSrcDst, int nLength, Npp32f nLevel, NppCmpOp nRelOp);
273 
283 NppStatus
284 nppsThreshold_64f(const Npp64f * pSrc, Npp64f * pDst, int nLength, Npp64f nLevel, NppCmpOp nRelOp);
285 
294 NppStatus
295 nppsThreshold_64f_I(Npp64f * pSrcDst, int nLength, Npp64f nLevel, NppCmpOp nRelOp);
296 
306 NppStatus
307 nppsThreshold_64fc(const Npp64fc * pSrc, Npp64fc * pDst, int nLength, Npp64f nLevel, NppCmpOp nRelOp);
308 
317 NppStatus
318 nppsThreshold_64fc_I(Npp64fc * pSrcDst, int nLength, Npp64f nLevel, NppCmpOp nRelOp);
319 
328 NppStatus
329 nppsThreshold_LT_16s(const Npp16s * pSrc, Npp16s * pDst, int nLength, Npp16s nLevel);
330 
338 NppStatus
339 nppsThreshold_LT_16s_I(Npp16s * pSrcDst, int nLength, Npp16s nLevel);
340 
349 NppStatus
350 nppsThreshold_LT_16sc(const Npp16sc * pSrc, Npp16sc * pDst, int nLength, Npp16s nLevel);
351 
359 NppStatus
360 nppsThreshold_LT_16sc_I(Npp16sc * pSrcDst, int nLength, Npp16s nLevel);
361 
370 NppStatus
371 nppsThreshold_LT_32f(const Npp32f * pSrc, Npp32f * pDst, int nLength, Npp32f nLevel);
372 
380 NppStatus
381 nppsThreshold_LT_32f_I(Npp32f * pSrcDst, int nLength, Npp32f nLevel);
382 
391 NppStatus
392 nppsThreshold_LT_32fc(const Npp32fc * pSrc, Npp32fc * pDst, int nLength, Npp32f nLevel);
393 
401 NppStatus
402 nppsThreshold_LT_32fc_I(Npp32fc * pSrcDst, int nLength, Npp32f nLevel);
403 
412 NppStatus
413 nppsThreshold_LT_64f(const Npp64f * pSrc, Npp64f * pDst, int nLength, Npp64f nLevel);
414 
422 NppStatus
423 nppsThreshold_LT_64f_I(Npp64f * pSrcDst, int nLength, Npp64f nLevel);
424 
433 NppStatus
434 nppsThreshold_LT_64fc(const Npp64fc * pSrc, Npp64fc * pDst, int nLength, Npp64f nLevel);
435 
443 NppStatus
444 nppsThreshold_LT_64fc_I(Npp64fc * pSrcDst, int nLength, Npp64f nLevel);
445 
454 NppStatus
455 nppsThreshold_GT_16s(const Npp16s * pSrc, Npp16s * pDst, int nLength, Npp16s nLevel);
456 
464 NppStatus
465 nppsThreshold_GT_16s_I(Npp16s * pSrcDst, int nLength, Npp16s nLevel);
466 
475 NppStatus
476 nppsThreshold_GT_16sc(const Npp16sc * pSrc, Npp16sc * pDst, int nLength, Npp16s nLevel);
477 
485 NppStatus
486 nppsThreshold_GT_16sc_I(Npp16sc * pSrcDst, int nLength, Npp16s nLevel);
487 
496 NppStatus
497 nppsThreshold_GT_32f(const Npp32f * pSrc, Npp32f * pDst, int nLength, Npp32f nLevel);
498 
506 NppStatus
507 nppsThreshold_GT_32f_I(Npp32f * pSrcDst, int nLength, Npp32f nLevel);
508 
517 NppStatus
518 nppsThreshold_GT_32fc(const Npp32fc * pSrc, Npp32fc * pDst, int nLength, Npp32f nLevel);
519 
527 NppStatus
528 nppsThreshold_GT_32fc_I(Npp32fc * pSrcDst, int nLength, Npp32f nLevel);
529 
538 NppStatus
539 nppsThreshold_GT_64f(const Npp64f * pSrc, Npp64f * pDst, int nLength, Npp64f nLevel);
540 
548 NppStatus
549 nppsThreshold_GT_64f_I(Npp64f * pSrcDst, int nLength, Npp64f nLevel);
550 
559 NppStatus
560 nppsThreshold_GT_64fc(const Npp64fc * pSrc, Npp64fc * pDst, int nLength, Npp64f nLevel);
561 
569 NppStatus
570 nppsThreshold_GT_64fc_I(Npp64fc * pSrcDst, int nLength, Npp64f nLevel);
571 
581 NppStatus
582 nppsThreshold_LTVal_16s(const Npp16s * pSrc, Npp16s * pDst, int nLength, Npp16s nLevel, Npp16s nValue);
583 
592 NppStatus
593 nppsThreshold_LTVal_16s_I(Npp16s * pSrcDst, int nLength, Npp16s nLevel, Npp16s nValue);
594 
604 NppStatus
605 nppsThreshold_LTVal_16sc(const Npp16sc * pSrc, Npp16sc * pDst, int nLength, Npp16s nLevel, Npp16sc nValue);
606 
615 NppStatus
616 nppsThreshold_LTVal_16sc_I(Npp16sc * pSrcDst, int nLength, Npp16s nLevel, Npp16sc nValue);
617 
627 NppStatus
628 nppsThreshold_LTVal_32f(const Npp32f * pSrc, Npp32f * pDst, int nLength, Npp32f nLevel, Npp32f nValue);
629 
638 NppStatus
639 nppsThreshold_LTVal_32f_I(Npp32f * pSrcDst, int nLength, Npp32f nLevel, Npp32f nValue);
640 
650 NppStatus
651 nppsThreshold_LTVal_32fc(const Npp32fc * pSrc, Npp32fc * pDst, int nLength, Npp32f nLevel, Npp32fc nValue);
652 
661 NppStatus
662 nppsThreshold_LTVal_32fc_I(Npp32fc * pSrcDst, int nLength, Npp32f nLevel, Npp32fc nValue);
663 
673 NppStatus
674 nppsThreshold_LTVal_64f(const Npp64f * pSrc, Npp64f * pDst, int nLength, Npp64f nLevel, Npp64f nValue);
675 
684 NppStatus
685 nppsThreshold_LTVal_64f_I(Npp64f * pSrcDst, int nLength, Npp64f nLevel, Npp64f nValue);
686 
696 NppStatus
697 nppsThreshold_LTVal_64fc(const Npp64fc * pSrc, Npp64fc * pDst, int nLength, Npp64f nLevel, Npp64fc nValue);
698 
707 NppStatus
708 nppsThreshold_LTVal_64fc_I(Npp64fc * pSrcDst, int nLength, Npp64f nLevel, Npp64fc nValue);
709 
719 NppStatus
720 nppsThreshold_GTVal_16s(const Npp16s * pSrc, Npp16s * pDst, int nLength, Npp16s nLevel, Npp16s nValue);
721 
730 NppStatus
731 nppsThreshold_GTVal_16s_I(Npp16s * pSrcDst, int nLength, Npp16s nLevel, Npp16s nValue);
732 
742 NppStatus
743 nppsThreshold_GTVal_16sc(const Npp16sc * pSrc, Npp16sc * pDst, int nLength, Npp16s nLevel, Npp16sc nValue);
744 
753 NppStatus
754 nppsThreshold_GTVal_16sc_I(Npp16sc * pSrcDst, int nLength, Npp16s nLevel, Npp16sc nValue);
755 
765 NppStatus
766 nppsThreshold_GTVal_32f(const Npp32f * pSrc, Npp32f * pDst, int nLength, Npp32f nLevel, Npp32f nValue);
767 
776 NppStatus
777 nppsThreshold_GTVal_32f_I(Npp32f * pSrcDst, int nLength, Npp32f nLevel, Npp32f nValue);
778 
788 NppStatus
789 nppsThreshold_GTVal_32fc(const Npp32fc * pSrc, Npp32fc * pDst, int nLength, Npp32f nLevel, Npp32fc nValue);
790 
799 NppStatus
800 nppsThreshold_GTVal_32fc_I(Npp32fc * pSrcDst, int nLength, Npp32f nLevel, Npp32fc nValue);
801 
811 NppStatus
812 nppsThreshold_GTVal_64f(const Npp64f * pSrc, Npp64f * pDst, int nLength, Npp64f nLevel, Npp64f nValue);
813 
822 NppStatus
823 nppsThreshold_GTVal_64f_I(Npp64f * pSrcDst, int nLength, Npp64f nLevel, Npp64f nValue);
824 
834 NppStatus
835 nppsThreshold_GTVal_64fc(const Npp64fc * pSrc, Npp64fc * pDst, int nLength, Npp64f nLevel, Npp64fc nValue);
836 
845 NppStatus
846 nppsThreshold_GTVal_64fc_I(Npp64fc * pSrcDst, int nLength, Npp64f nLevel, Npp64fc nValue);
847 
854 #ifdef __cplusplus
855 } /* extern "C" */
856 #endif
857 
858 #endif /* NV_NPPS_CONVERSION_FUNCTIONS_H */
NppStatus nppsThreshold_GTVal_16s(const Npp16s *pSrc, Npp16s *pDst, int nLength, Npp16s nLevel, Npp16s nValue)
16-bit signed short signal NPP_CMP_GREATER threshold with constant level.
NppStatus nppsConvert_32f64f(const Npp32f *pSrc, Npp64f *pDst, int nLength)
NppStatus nppsThreshold_64fc(const Npp64fc *pSrc, Npp64fc *pDst, int nLength, Npp64f nLevel, NppCmpOp nRelOp)
64-bit floating point complex number signal threshold with constant level.
NppStatus nppsThreshold_LT_32fc_I(Npp32fc *pSrcDst, int nLength, Npp32f nLevel)
32-bit in place floating point complex number signal NPP_CMP_LESS threshold with constant level...
NppStatus nppsThreshold_GTVal_64f_I(Npp64f *pSrcDst, int nLength, Npp64f nLevel, Npp64f nValue)
64-bit in place floating point signal NPP_CMP_GREATER threshold with constant level.
NppStatus nppsConvert_32s16s_Sfs(const Npp32s *pSrc, Npp16s *pDst, int nLength, int nScaleFactor)
unsigned char Npp8u
8-bit unsigned chars
Definition: nppdefs.h:278
NppStatus nppsThreshold_GTVal_64f(const Npp64f *pSrc, Npp64f *pDst, int nLength, Npp64f nLevel, Npp64f nValue)
64-bit floating point signal NPP_CMP_GREATER threshold with constant level.
Complex Number This struct represents an unsigned int complex number.
Definition: nppdefs.h:324
NppStatus nppsConvert_32s64f(const Npp32s *pSrc, Npp64f *pDst, int nLength)
NppStatus nppsThreshold_GT_16sc(const Npp16sc *pSrc, Npp16sc *pDst, int nLength, Npp16s nLevel)
16-bit signed short complex number signal NPP_CMP_GREATER threshold with constant level...
NppStatus nppsThreshold_LT_16s(const Npp16s *pSrc, Npp16s *pDst, int nLength, Npp16s nLevel)
16-bit signed short signal NPP_CMP_LESS threshold with constant level.
NppStatus nppsThreshold_LTVal_32fc_I(Npp32fc *pSrcDst, int nLength, Npp32f nLevel, Npp32fc nValue)
32-bit in place floating point complex number signal NPP_CMP_LESS threshold with constant level...
NppStatus
Error Status Codes.
Definition: nppdefs.h:152
NppStatus nppsConvert_16s32s(const Npp16s *pSrc, Npp32s *pDst, int nLength)
NppStatus nppsThreshold_GT_32f_I(Npp32f *pSrcDst, int nLength, Npp32f nLevel)
32-bit in place floating point signal NPP_CMP_GREATER threshold with constant level.
NppStatus nppsConvert_64f16s_Sfs(const Npp64f *pSrc, Npp16s *pDst, int nLength, NppRoundMode eRoundMode, int nScaleFactor)
NppStatus nppsThreshold_GTVal_32f_I(Npp32f *pSrcDst, int nLength, Npp32f nLevel, Npp32f nValue)
32-bit in place floating point signal NPP_CMP_GREATER threshold with constant level.
NppStatus nppsThreshold_LTVal_64fc_I(Npp64fc *pSrcDst, int nLength, Npp64f nLevel, Npp64fc nValue)
64-bit in place floating point complex number signal NPP_CMP_LESS threshold with constant level...
Complex Number This struct represents a long long complex number.
Definition: nppdefs.h:354
NppStatus nppsThreshold_GTVal_16sc_I(Npp16sc *pSrcDst, int nLength, Npp16s nLevel, Npp16sc nValue)
16-bit in place signed short complex number signal NPP_CMP_GREATER threshold with constant level...
NppStatus nppsThreshold_32fc_I(Npp32fc *pSrcDst, int nLength, Npp32f nLevel, NppCmpOp nRelOp)
32-bit in place floating point complex number signal threshold with constant level.
NppStatus nppsThreshold_LT_64fc_I(Npp64fc *pSrcDst, int nLength, Npp64f nLevel)
64-bit in place floating point complex number signal NPP_CMP_LESS threshold with constant level...
NppStatus nppsThreshold_LTVal_64f_I(Npp64f *pSrcDst, int nLength, Npp64f nLevel, Npp64f nValue)
64-bit in place floating point signal NPP_CMP_LESS threshold with constant level. ...
NppStatus nppsConvert_32s32f(const Npp32s *pSrc, Npp32f *pDst, int nLength)
NppStatus nppsThreshold_GT_64f(const Npp64f *pSrc, Npp64f *pDst, int nLength, Npp64f nLevel)
64-bit floating point signal NPP_CMP_GREATER threshold with constant level.
NppCmpOp
Definition: nppdefs.h:446
NppStatus nppsThreshold_64fc_I(Npp64fc *pSrcDst, int nLength, Npp64f nLevel, NppCmpOp nRelOp)
64-bit in place floating point complex number signal threshold with constant level.
NppStatus nppsConvert_64f64s_Sfs(const Npp64f *pSrc, Npp64s *pDst, int nLength, NppRoundMode eRoundMode, int nScaleFactor)
NppStatus nppsThreshold_LT_16sc(const Npp16sc *pSrc, Npp16sc *pDst, int nLength, Npp16s nLevel)
16-bit signed short complex number signal NPP_CMP_LESS threshold with constant level.
NppStatus nppsThreshold_LTVal_32fc(const Npp32fc *pSrc, Npp32fc *pDst, int nLength, Npp32f nLevel, Npp32fc nValue)
32-bit floating point complex number signal NPP_CMP_LESS threshold with constant level.
NppStatus nppsThreshold_GTVal_16s_I(Npp16s *pSrcDst, int nLength, Npp16s nLevel, Npp16s nValue)
16-bit in place signed short signal NPP_CMP_GREATER threshold with constant level.
NppStatus nppsThreshold_32f(const Npp32f *pSrc, Npp32f *pDst, int nLength, Npp32f nLevel, NppCmpOp nRelOp)
32-bit floating point signal threshold with constant level.
NppStatus nppsThreshold_GT_32f(const Npp32f *pSrc, Npp32f *pDst, int nLength, Npp32f nLevel)
32-bit floating point signal NPP_CMP_GREATER threshold with constant level.
NppStatus nppsConvert_16s8s_Sfs(const Npp16s *pSrc, Npp8s *pDst, Npp32u nLength, NppRoundMode eRoundMode, int nScaleFactor)
NppStatus nppsThreshold_GTVal_32fc(const Npp32fc *pSrc, Npp32fc *pDst, int nLength, Npp32f nLevel, Npp32fc nValue)
32-bit floating point complex number signal NPP_CMP_GREATER threshold with constant level...
NppStatus nppsThreshold_LT_64f_I(Npp64f *pSrcDst, int nLength, Npp64f nLevel)
64-bit in place floating point signal NPP_CMP_LESS threshold with constant level. ...
NppStatus nppsConvert_16u32f(const Npp16u *pSrc, Npp32f *pDst, int nLength)
NppStatus nppsConvert_32f32s_Sfs(const Npp32f *pSrc, Npp32s *pDst, int nLength, NppRoundMode eRoundMode, int nScaleFactor)
NppStatus nppsThreshold_GTVal_32f(const Npp32f *pSrc, Npp32f *pDst, int nLength, Npp32f nLevel, Npp32f nValue)
32-bit floating point signal NPP_CMP_GREATER threshold with constant level.
NppStatus nppsThreshold_16sc(const Npp16sc *pSrc, Npp16sc *pDst, int nLength, Npp16s nLevel, NppCmpOp nRelOp)
16-bit signed short complex number signal threshold with constant level.
NppStatus nppsThreshold_GTVal_64fc(const Npp64fc *pSrc, Npp64fc *pDst, int nLength, Npp64f nLevel, Npp64fc nValue)
64-bit floating point complex number signal NPP_CMP_GREATER threshold with constant level...
NppStatus nppsConvert_64f32s_Sfs(const Npp64f *pSrc, Npp32s *pDst, int nLength, NppRoundMode eRoundMode, int nScaleFactor)
NppStatus nppsThreshold_GT_16sc_I(Npp16sc *pSrcDst, int nLength, Npp16s nLevel)
16-bit in place signed short complex number signal NPP_CMP_GREATER threshold with constant level...
long long Npp64s
64-bit signed integers
Definition: nppdefs.h:285
NppStatus nppsThreshold_LTVal_16s(const Npp16s *pSrc, Npp16s *pDst, int nLength, Npp16s nLevel, Npp16s nValue)
16-bit signed short signal NPP_CMP_LESS threshold with constant level.
NppStatus nppsThreshold_LTVal_32f_I(Npp32f *pSrcDst, int nLength, Npp32f nLevel, Npp32f nValue)
32-bit in place floating point signal NPP_CMP_LESS threshold with constant level. ...
int Npp32s
32-bit signed integers
Definition: nppdefs.h:283
NppStatus nppsThreshold_LT_32f_I(Npp32f *pSrcDst, int nLength, Npp32f nLevel)
32-bit in place floating point signal NPP_CMP_LESS threshold with constant level. ...
NppStatus nppsThreshold_LT_32f(const Npp32f *pSrc, Npp32f *pDst, int nLength, Npp32f nLevel)
32-bit floating point signal NPP_CMP_LESS threshold with constant level.
NppStatus nppsConvert_16s64f_Sfs(const Npp16s *pSrc, Npp64f *pDst, int nLength, int nScaleFactor)
NppStatus nppsThreshold_32fc(const Npp32fc *pSrc, Npp32fc *pDst, int nLength, Npp32f nLevel, NppCmpOp nRelOp)
32-bit floating point complex number signal threshold with constant level.
NppStatus nppsConvert_32s32f_Sfs(const Npp32s *pSrc, Npp32f *pDst, int nLength, int nScaleFactor)
NppStatus nppsConvert_32f16u_Sfs(const Npp32f *pSrc, Npp16u *pDst, int nLength, NppRoundMode eRoundMode, int nScaleFactor)
NppStatus nppsThreshold_GT_16s(const Npp16s *pSrc, Npp16s *pDst, int nLength, Npp16s nLevel)
16-bit signed short signal NPP_CMP_GREATER threshold with constant level.
NppStatus nppsThreshold_GT_32fc_I(Npp32fc *pSrcDst, int nLength, Npp32f nLevel)
32-bit in place floating point complex number signal NPP_CMP_GREATER threshold with constant level...
Npp16sc
Definition: nppdefs.h:318
NppStatus nppsThreshold_16sc_I(Npp16sc *pSrcDst, int nLength, Npp16s nLevel, NppCmpOp nRelOp)
16-bit in place signed short complex number signal threshold with constant level. ...
NppStatus nppsThreshold_64f(const Npp64f *pSrc, Npp64f *pDst, int nLength, Npp64f nLevel, NppCmpOp nRelOp)
64-bit floating point signal threshold with constant level.
NppStatus nppsThreshold_LTVal_16sc_I(Npp16sc *pSrcDst, int nLength, Npp16s nLevel, Npp16sc nValue)
16-bit in place signed short complex number signal NPP_CMP_LESS threshold with constant level...
unsigned short Npp16u
16-bit unsigned integers
Definition: nppdefs.h:280
NppStatus nppsThreshold_LTVal_64f(const Npp64f *pSrc, Npp64f *pDst, int nLength, Npp64f nLevel, Npp64f nValue)
64-bit floating point signal NPP_CMP_LESS threshold with constant level.
NppStatus nppsThreshold_GT_64fc_I(Npp64fc *pSrcDst, int nLength, Npp64f nLevel)
64-bit in place floating point complex number signal NPP_CMP_GREATER threshold with constant level...
NppRoundMode
Rounding Modes.
Definition: nppdefs.h:468
NppStatus nppsThreshold_16s_I(Npp16s *pSrcDst, int nLength, Npp16s nLevel, NppCmpOp nRelOp)
16-bit in place signed short signal threshold with constant level.
NppStatus nppsConvert_16s32f(const Npp16s *pSrc, Npp32f *pDst, int nLength)
NppStatus nppsThreshold_LT_64fc(const Npp64fc *pSrc, Npp64fc *pDst, int nLength, Npp64f nLevel)
64-bit floating point complex number signal NPP_CMP_LESS threshold with constant level.
NppStatus nppsThreshold_64f_I(Npp64f *pSrcDst, int nLength, Npp64f nLevel, NppCmpOp nRelOp)
64-bit in place floating point signal threshold with constant level.
NppStatus nppsThreshold_LTVal_16s_I(Npp16s *pSrcDst, int nLength, Npp16s nLevel, Npp16s nValue)
16-bit in place signed short signal NPP_CMP_LESS threshold with constant level.
NppStatus nppsConvert_8s32f(const Npp8s *pSrc, Npp32f *pDst, int nLength)
short Npp16s
16-bit signed integers
Definition: nppdefs.h:281
NppStatus nppsConvert_64f32f(const Npp64f *pSrc, Npp32f *pDst, int nLength)
unsigned int Npp32u
32-bit unsigned integers
Definition: nppdefs.h:282
signed char Npp8s
8-bit signed chars
Definition: nppdefs.h:279
NppStatus nppsThreshold_GT_64fc(const Npp64fc *pSrc, Npp64fc *pDst, int nLength, Npp64f nLevel)
64-bit floating point complex number signal NPP_CMP_GREATER threshold with constant level...
double Npp64f
64-bit floating-point numbers
Definition: nppdefs.h:287
NppStatus nppsConvert_16s32f_Sfs(const Npp16s *pSrc, Npp32f *pDst, int nLength, int nScaleFactor)
NppStatus nppsConvert_32f8u_Sfs(const Npp32f *pSrc, Npp8u *pDst, int nLength, NppRoundMode eRoundMode, int nScaleFactor)
NppStatus nppsThreshold_GTVal_32fc_I(Npp32fc *pSrcDst, int nLength, Npp32f nLevel, Npp32fc nValue)
32-bit in place floating point complex number signal NPP_CMP_GREATER threshold with constant level...
NppStatus nppsThreshold_LT_32fc(const Npp32fc *pSrc, Npp32fc *pDst, int nLength, Npp32f nLevel)
32-bit floating point complex number signal NPP_CMP_LESS threshold with constant level.
NppStatus nppsThreshold_LTVal_64fc(const Npp64fc *pSrc, Npp64fc *pDst, int nLength, Npp64f nLevel, Npp64fc nValue)
64-bit floating point complex number signal NPP_CMP_LESS threshold with constant level.
NppStatus nppsConvert_64s64f(const Npp64s *pSrc, Npp64f *pDst, int nLength)
NppStatus nppsThreshold_LT_16s_I(Npp16s *pSrcDst, int nLength, Npp16s nLevel)
16-bit in place signed short signal NPP_CMP_LESS threshold with constant level.
NppStatus nppsThreshold_32f_I(Npp32f *pSrcDst, int nLength, Npp32f nLevel, NppCmpOp nRelOp)
32-bit in place floating point signal threshold with constant level.
NppStatus nppsThreshold_GTVal_64fc_I(Npp64fc *pSrcDst, int nLength, Npp64f nLevel, Npp64fc nValue)
64-bit in place floating point complex number signal NPP_CMP_GREATER threshold with constant level...
NppStatus nppsThreshold_GT_16s_I(Npp16s *pSrcDst, int nLength, Npp16s nLevel)
16-bit in place signed short signal NPP_CMP_GREATER threshold with constant level.
NppStatus nppsThreshold_GT_64f_I(Npp64f *pSrcDst, int nLength, Npp64f nLevel)
64-bit in place floating point signal NPP_CMP_GREATER threshold with constant level.
NppStatus nppsThreshold_GTVal_16sc(const Npp16sc *pSrc, Npp16sc *pDst, int nLength, Npp16s nLevel, Npp16sc nValue)
16-bit signed short complex number signal NPP_CMP_GREATER threshold with constant level...
NppStatus nppsThreshold_LT_64f(const Npp64f *pSrc, Npp64f *pDst, int nLength, Npp64f nLevel)
64-bit floating point signal NPP_CMP_LESS threshold with constant level.
float Npp32f
32-bit (IEEE) floating-point numbers
Definition: nppdefs.h:286
NppStatus nppsConvert_32s16s(const Npp32s *pSrc, Npp16s *pDst, int nLength)
NppStatus nppsThreshold_GT_32fc(const Npp32fc *pSrc, Npp32fc *pDst, int nLength, Npp32f nLevel)
32-bit floating point complex number signal NPP_CMP_GREATER threshold with constant level...
NppStatus nppsConvert_32f16s_Sfs(const Npp32f *pSrc, Npp16s *pDst, int nLength, NppRoundMode eRoundMode, int nScaleFactor)
NppStatus nppsThreshold_LTVal_32f(const Npp32f *pSrc, Npp32f *pDst, int nLength, Npp32f nLevel, Npp32f nValue)
32-bit floating point signal NPP_CMP_LESS threshold with constant level.
NppStatus nppsThreshold_16s(const Npp16s *pSrc, Npp16s *pDst, int nLength, Npp16s nLevel, NppCmpOp nRelOp)
16-bit signed short signal threshold with constant level.
NppStatus nppsThreshold_LT_16sc_I(Npp16sc *pSrcDst, int nLength, Npp16s nLevel)
16-bit in place signed short complex number signal NPP_CMP_LESS threshold with constant level...
NppStatus nppsConvert_32f8s_Sfs(const Npp32f *pSrc, Npp8s *pDst, int nLength, NppRoundMode eRoundMode, int nScaleFactor)
NppStatus nppsConvert_8s16s(const Npp8s *pSrc, Npp16s *pDst, int nLength)
NppStatus nppsConvert_64s32s_Sfs(const Npp64s *pSrc, Npp32s *pDst, int nLength, NppRoundMode eRoundMode, int nScaleFactor)
NppStatus nppsConvert_8u32f(const Npp8u *pSrc, Npp32f *pDst, int nLength)
NppStatus nppsConvert_32s64f_Sfs(const Npp32s *pSrc, Npp64f *pDst, int nLength, int nScaleFactor)
NppStatus nppsThreshold_LTVal_16sc(const Npp16sc *pSrc, Npp16sc *pDst, int nLength, Npp16s nLevel, Npp16sc nValue)
16-bit signed short complex number signal NPP_CMP_LESS threshold with constant level.

Copyright © 2009-2017 NVIDIA Corporation