OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:gdalType
(Results
1 - 2
of
2
) sorted by null
/external/opencv3/modules/imgcodecs/src/
grfmt_gdal.hpp
66
double range_cast( const GDALDataType&
gdalType
,
74
GDALDataType const&
gdalType
);
79
int gdal2opencv( const GDALDataType&
gdalType
, const int& channels );
85
GDALDataType const&
gdalType
,
96
const GDALDataType&
gdalType
,
grfmt_gdal.cpp
64
int gdalPaletteInterpretation2OpenCV( GDALPaletteInterp const& paletteInterp, GDALDataType const&
gdalType
){
70
if(
gdalType
== GDT_Byte ){ return CV_8UC1; }
71
if(
gdalType
== GDT_UInt16 ){ return CV_16UC1; }
72
if(
gdalType
== GDT_Int16 ){ return CV_16SC1; }
73
if(
gdalType
== GDT_UInt32 ){ return CV_32SC1; }
74
if(
gdalType
== GDT_Int32 ){ return CV_32SC1; }
75
if(
gdalType
== GDT_Float32 ){ return CV_32FC1; }
76
if(
gdalType
== GDT_Float64 ){ return CV_64FC1; }
81
if(
gdalType
== GDT_Byte ){ return CV_8UC1; }
82
if(
gdalType
== GDT_UInt16 ){ return CV_16UC3;
[
all
...]
Completed in 761 milliseconds