diff --git a/modules/imgcodecs/src/grfmt_gdal.cpp b/modules/imgcodecs/src/grfmt_gdal.cpp index 8865ae4948..4bb8dd02bc 100644 --- a/modules/imgcodecs/src/grfmt_gdal.cpp +++ b/modules/imgcodecs/src/grfmt_gdal.cpp @@ -308,6 +308,11 @@ void write_pixel( const double& pixelValue, // input: 4 channel, output: 4 channel else if( gdalChannels == 4 && image.channels() == 4 ){ if( image.depth() == CV_8U ){ image.at(row,col)[channel] = newValue; } + else if( image.depth() == CV_16U ){ image.at(row,col)[channel] = newValue; } + else if( image.depth() == CV_16S ){ image.at(row,col)[channel] = newValue; } + else if( image.depth() == CV_32S ){ image.at(row,col)[channel] = newValue; } + else if( image.depth() == CV_32F ){ image.at(row,col)[channel] = newValue; } + else if( image.depth() == CV_64F ){ image.at(row,col)[channel] = newValue; } else{ throw std::runtime_error("Unknown image depth, gdal: 4, image: 4"); } } @@ -574,4 +579,4 @@ bool GdalDecoder::checkSignature( const String& signature )const{ } /// End of cv Namespace -#endif /**< End of HAVE_GDAL Definition */ \ No newline at end of file +#endif /**< End of HAVE_GDAL Definition */