Home
last modified time | relevance | path

Searched refs:IPL_DEPTH_32F (Results 1 – 16 of 16) sorted by relevance

/dports/science/InsightToolkit/ITK-5.0.1/Modules/Video/BridgeOpenCV/include/
H A DitkOpenCVImageBridge.hxx75 CONVERSION_CASE(IPL_DEPTH_32F, float) in IplImageToITKImage()
193 out = cvCreateImage(cvSize(w,h), IPL_DEPTH_32F, outChannels); in ITKImageToIplImage()
194 typeSize = IPL_DEPTH_32F/8; in ITKImageToIplImage()
/dports/math/saga/saga-8.1.3/saga-gis/src/tools/imagery/imagery_opencv/
H A Dopencv.cpp224 case SG_DATATYPE_Float : return( IPL_DEPTH_32F ); // Single-precision floating point in Get_CVImage_Type()
259 case IPL_DEPTH_32F: Row.data.fl [x] = pGrid->asFloat (x, y); break; in Copy_Grid_To_CVImage()
295 case IPL_DEPTH_32F: pGrid->Set_Value(x, y, Row.data.fl [x]); break; in Copy_CVImage_To_Grid()
/dports/graphics/cimg/CImg-v.2.9.7/plugins/
H A Dipl.h169 ((unsigned int)img->depth == IPL_DEPTH_32F && typeid(T) != typeid(float)) || in not_pixel_type_of()
181 if (typeid(T) == typeid(float)) return IPL_DEPTH_32F; in get_ipl_bit_depth()
H A Dipl_alt.h85 case IPL_DEPTH_32F: // 32-bit float. in assign()
/dports/graphics/gmic-qt/CImg-v.2.9.8/plugins/
H A Dipl.h169 ((unsigned int)img->depth == IPL_DEPTH_32F && typeid(T) != typeid(float)) || in not_pixel_type_of()
181 if (typeid(T) == typeid(float)) return IPL_DEPTH_32F; in get_ipl_bit_depth()
H A Dipl_alt.h85 case IPL_DEPTH_32F: // 32-bit float. in assign()
/dports/graphics/openimageio/oiio-Release-2.2.16.0/src/libOpenImageIO/
H A Dimagebufalgo_opencv.cpp72 case int(IPL_DEPTH_32F): srcformat = TypeDesc::FLOAT; break; in from_IplImage()
159 dstFormat = IPL_DEPTH_32F; in to_IplImage()
163 dstFormat = IPL_DEPTH_32F; in to_IplImage()
/dports/graphics/py-openimageio/oiio-Release-2.2.16.0/src/libOpenImageIO/
H A Dimagebufalgo_opencv.cpp72 case int(IPL_DEPTH_32F): srcformat = TypeDesc::FLOAT; break; in from_IplImage()
159 dstFormat = IPL_DEPTH_32F; in to_IplImage()
163 dstFormat = IPL_DEPTH_32F; in to_IplImage()
/dports/science/libgeodecomp/libgeodecomp-0.4.0/src/examples/latticegas/
H A Dframegrabber.cpp76 << " IPL_DEPTH_32F: " << IPL_DEPTH_32F << "\n" in grab()
/dports/graphics/cimg/CImg-v.2.9.7/examples/
H A Duse_cimgIPL.cpp87 ipl32 = cvCreateImage(cvGetSize(ipl), IPL_DEPTH_32F, ipl->nChannels); in main()
/dports/graphics/gmic-qt/CImg-v.2.9.8/examples/
H A Duse_cimgIPL.cpp87 ipl32 = cvCreateImage(cvGetSize(ipl), IPL_DEPTH_32F, ipl->nChannels); in main()
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Video/BridgeOpenCV/test/
H A DitkOpenCVImageBridgeGrayScaleTest.cxx62 depth = IPL_DEPTH_32F; in ConvertIplImageDataType()
H A DitkOpenCVImageBridgeRGBTest.cxx122 depth = IPL_DEPTH_32F; in ConvertIplImageDataType()
/dports/graphics/opencv/opencv-4.5.3/modules/ts/src/
H A Dts_arrtest.cpp129 IPL_DEPTH_32S, IPL_DEPTH_32F, IPL_DEPTH_64F
/dports/graphics/opencv/opencv-4.5.3/modules/core/src/
H A Darray.cpp841 if( img->depth == IPL_DEPTH_32F || img->depth == IPL_DEPTH_64F ) in cvCreateData()
843 img->width *= img->depth == IPL_DEPTH_32F ? sizeof(float) : sizeof(double); in cvCreateData()
2943 depth != (int)IPL_DEPTH_32F && depth != (int)IPL_DEPTH_64F) || in cvInitImageHeader()
/dports/graphics/opencv/opencv-4.5.3/modules/core/include/opencv2/core/
H A Dtypes_c.h288 #define IPL_DEPTH_32F 32 macro